diff --git a/src/Az.BootStrapper/Module/Az.BootStrapper.psd1 b/src/Az.BootStrapper/Module/Az.BootStrapper.psd1 index 9d75b34b..12b46d17 100644 --- a/src/Az.BootStrapper/Module/Az.BootStrapper.psd1 +++ b/src/Az.BootStrapper/Module/Az.BootStrapper.psd1 @@ -10,7 +10,7 @@ RootModule = 'Az.Bootstrapper.psm1' # Version number of this module. -ModuleVersion = '1.0.1' +ModuleVersion = '1.0.2' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/src/Az.BootStrapper/Module/azprofilemap.json b/src/Az.BootStrapper/Module/azprofilemap.json index e6d74693..bc2a3c92 100644 --- a/src/Az.BootStrapper/Module/azprofilemap.json +++ b/src/Az.BootStrapper/Module/azprofilemap.json @@ -45,7 +45,7 @@ }, "2020-09-01-hybrid": { "Az": [ - "1.10.0" + "2.0.1" ], "Az.Accounts": [ "2.2.8" @@ -78,7 +78,7 @@ "1.2.0" ], "Az.Resources": [ - "0.11.0" + "0.12.0" ], "Az.Storage": [ "2.6.2" diff --git a/src/Azs.AzureBridge.Admin/readme.md b/src/Azs.AzureBridge.Admin/readme.md index fcb673eb..a98fd79d 100644 --- a/src/Azs.AzureBridge.Admin/readme.md +++ b/src/Azs.AzureBridge.Admin/readme.md @@ -51,7 +51,7 @@ metadata: description: 'Microsoft AzureStack PowerShell: AzureBridge Admin cmdlets' subject-prefix: AzureBridge -module-version: 1.0.1 +module-version: 1.0.2 identity-correction-for-post: true service-name: BridgeAdmin @@ -127,12 +127,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Azurebridge.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Azurebridge.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Azurebridge.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Backup.Admin/.gitignore b/src/Azs.Backup.Admin/.gitignore index aa1432ba..3c3d5733 100644 --- a/src/Azs.Backup.Admin/.gitignore +++ b/src/Azs.Backup.Admin/.gitignore @@ -6,6 +6,7 @@ internal exports tools custom/*.psm1 +custom/autogen-model-cmdlets test/*-TestResults.xml /*.ps1 /*.ps1xml diff --git a/src/Azs.Backup.Admin/custom/Clear-AzsBackupConfiguration.ps1 b/src/Azs.Backup.Admin/custom/Clear-AzsBackupConfiguration.ps1 new file mode 100644 index 00000000..7b520607 --- /dev/null +++ b/src/Azs.Backup.Admin/custom/Clear-AzsBackupConfiguration.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 +Clear a backup location. +.Description +Clear a backup location. +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation +.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. + +.Link +https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/clear-azsbackupconfiguration +#> +function Clear-AzsBackupConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation])] +[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='(Get-AzLocation)[0].Location')] + [System.String] + # Name of the backup location. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='"system.$((Get-AzLocation)[0].Location)"')] + [System.String] + # Name of the resource group. + ${ResourceGroupName}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # Subscription credentials that uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + # Restrict the cmdlet to being a blank PUT operation to clear the backup configuration + $PSBoundParameters.Add('Location1', $Location) + $PSBoundParameters.Add('UserName', $null) + + Azs.Backup.Admin.internal\Clear-AzsBackupConfiguration @PSBoundParameters +} +} diff --git a/src/Azs.Backup.Admin/custom/Get-AzsBackup.ps1 b/src/Azs.Backup.Admin/custom/Get-AzsBackup.ps1 index a242c953..bebe3bae 100644 --- a/src/Azs.Backup.Admin/custom/Get-AzsBackup.ps1 +++ b/src/Azs.Backup.Admin/custom/Get-AzsBackup.ps1 @@ -1,3 +1,18 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 Returns a backup from a location based on name. @@ -8,9 +23,10 @@ To view examples, please use the -Online parameter with Get-Help or navigate to: .Inputs Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.IBackupAdminIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackup +Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackup .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 @@ -23,7 +39,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/get-azsbackup #> function Get-AzsBackup { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackup])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackup])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get')] diff --git a/src/Azs.Backup.Admin/custom/Restore-AzsBackup.ps1 b/src/Azs.Backup.Admin/custom/Restore-AzsBackup.ps1 index f24240df..b15bef5e 100644 --- a/src/Azs.Backup.Admin/custom/Restore-AzsBackup.ps1 +++ b/src/Azs.Backup.Admin/custom/Restore-AzsBackup.ps1 @@ -1,18 +1,41 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 Restore a backup. .Description Restore a backup. .Example -To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/restore-azsbackup +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + .Inputs -Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IRestoreOptions +Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IRestoreOptions .Inputs Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.IBackupAdminIdentity .Outputs 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 @@ -33,13 +56,6 @@ function Restore-AzsBackup { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='RestoreExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter(ParameterSetName='Restore', Mandatory)] - [Parameter(ParameterSetName='RestoreExpanded', Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] - [System.String] - # Name of the backup. - ${Name}, - [Parameter(ParameterSetName='Restore')] [Parameter(ParameterSetName='RestoreExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] @@ -48,6 +64,13 @@ param( # Name of the backup location. ${Location}, + [Parameter(ParameterSetName='Restore', Mandatory)] + [Parameter(ParameterSetName='RestoreExpanded', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] + [System.String] + # Name of the backup. + ${Name}, + [Parameter(ParameterSetName='Restore')] [Parameter(ParameterSetName='RestoreExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] @@ -76,7 +99,7 @@ param( [Parameter(ParameterSetName='Restore', Mandatory)] [Parameter(ParameterSetName='RestoreViaIdentity', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IRestoreOptions] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IRestoreOptions] # Properties for restore options. # To construct, see NOTES section for RESTOREOPTION properties and create a hash table. ${RestoreOption}, diff --git a/src/Azs.Backup.Admin/custom/Set-AzsBackupConfiguration.ps1 b/src/Azs.Backup.Admin/custom/Update-AzsBackupConfiguration.ps1 similarity index 53% rename from src/Azs.Backup.Admin/custom/Set-AzsBackupConfiguration.ps1 rename to src/Azs.Backup.Admin/custom/Update-AzsBackupConfiguration.ps1 index ee9225f2..9086daf6 100644 --- a/src/Azs.Backup.Admin/custom/Set-AzsBackupConfiguration.ps1 +++ b/src/Azs.Backup.Admin/custom/Update-AzsBackupConfiguration.ps1 @@ -1,16 +1,41 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 -Update a backup location. +Patch update a backup location. .Description -Update a backup location. +Patch update a backup location. .Example -To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/set-azsbackupconfiguration +PS C:\> {{ Add code here }} + +{{ Add output here }} +.Example +PS C:\> {{ Add code here }} + +{{ Add output here }} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation .Inputs -Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation +Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.IBackupAdminIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation +Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation .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. BACKUP : Information about the backup location. @@ -19,33 +44,50 @@ BACKUP : Information about the backup location. [(Any) ]: This indicates any property can be added to this object. [BackupFrequencyInHours ]: The interval, in hours, for the frequency that the scheduler takes a backup. [BackupRetentionPeriodInDays ]: The retention period, in days, for backs in the storage location. + [BlobStorageKey ]: Key to access the blob location. + [BlobStorageUrl ]: Url to the update blob location [EncryptionCertBase64 ]: The base64 raw data for the backup encryption certificate. [IsBackupSchedulerEnabled ]: True if the backup scheduler is enabled. - [Password ]: Password to access the location. - [Path ]: Path to the update location - [UserName ]: Username to access the location. + [Password ]: Password to access the fileshare location. + [Path ]: Path to the update fileshare location + [UserName ]: Username to access the fileshare location. + +INPUTOBJECT : Identity Parameter + [Backup ]: Name of the backup. + [Id ]: Resource identity path + [Location ]: Name of the backup location. + [ResourceGroupName ]: Name of the resource group. + [SubscriptionId ]: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. .Link -https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/set-azsbackupconfiguration +https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/update-azsbackupconfiguration #> -function Set-AzsBackupConfiguration { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation])] -[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +function Update-AzsBackupConfiguration { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation])] +[CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( - [Parameter()] + [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='(Get-AzLocation)[0].Location')] [System.String] # Name of the backup location. ${Location}, - [Parameter()] + [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='"system.$((Get-AzLocation)[0].Location)"')] [System.String] # Name of the resource group. ${ResourceGroupName}, - [Parameter()] + [Parameter(ParameterSetName='Update')] + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] @@ -53,60 +95,102 @@ param( # The subscription ID forms part of the URI for every service call. ${SubscriptionId}, + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.IBackupAdminIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation] # Information about the backup location. # To construct, see NOTES section for BACKUP properties and create a hash table. ${Backup}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] [System.Int32] # The interval, in hours, for the frequency that the scheduler takes a backup. ${BackupFrequencyInHours}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] [System.Int32] # The retention period, in days, for backs in the storage location. ${BackupRetentionPeriodInDays}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] + [System.String] + # Key to access the blob location. + ${BlobStorageKey}, + + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] + [System.String] + # Url to the update blob location + ${BlobStorageUrl}, + + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] [System.String] # Path to the encryption cert file with public key (.cer). ${EncryptionCertPath}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] [System.Management.Automation.SwitchParameter] # True if the backup scheduler is enabled. ${IsBackupSchedulerEnabled}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] [SecureString] - # Password to access the location. + # Password to access the fileshare location. ${Password}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] [System.String] - # Path to the update location + # Path to the update fileshare location ${Path}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateBlobExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateBlobViaIdentityExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IResourceTags]))] [System.Collections.Hashtable] # List of key value pairs. ${Tag}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName='UpdateFileshareExpanded')] + [Parameter(ParameterSetName='UpdateFileshareViaIdentityExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Category('Body')] [System.String] - # Username to access the location. + # Username to access the fileshare location. ${UserName}, [Parameter()] @@ -170,9 +254,9 @@ param( ) process { - if ($PSCmdlet.ParameterSetName -eq 'UpdateExpanded') + if ($PSCmdlet.ParameterSetName -eq 'UpdateBlobExpanded' -or $PSCmdlet.ParameterSetName -eq 'UpdateFileshareExpanded') { - $PSBoundParameters.Add('Location1', $Location) + $PSBoundParameters.Add('Location1', $PSBoundParameters['Location']) } if ($PSBoundParameters.ContainsKey(('Password'))) @@ -196,6 +280,6 @@ process { $PSBoundParameters.Add('EncryptionCertBase64', $EncryptionCertBase64) } - Azs.Backup.Admin.internal\Set-AzsBackupConfiguration @PSBoundParameters + Azs.Backup.Admin.internal\Update-AzsBackupConfiguration @PSBoundParameters } } diff --git a/src/Azs.Backup.Admin/custom/readme.md b/src/Azs.Backup.Admin/custom/readme.md new file mode 100644 index 00000000..8c92d860 --- /dev/null +++ b/src/Azs.Backup.Admin/custom/readme.md @@ -0,0 +1,41 @@ +# Custom +This directory contains custom implementation for non-generated cmdlets for the `Azs.Backup.Admin` 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 `Azs.Backup.Admin.custom.psm1`. This file should not be modified. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: yes + +## Details +For `Azs.Backup.Admin` to use custom cmdlets, it does this two different ways. We **highly recommend** creating script cmdlets, as they are easier to write and allow access to the other exported cmdlets. C# cmdlets *cannot access exported cmdlets*. + +For C# cmdlets, they are compiled with the rest of the generated low-level cmdlets into the `./bin/Azs.Backup.Admin.private.dll`. The names of the cmdlets (methods) and files must follow the `[cmdletName]_[variantName]` syntax used for generated cmdlets. The `variantName` is used as the `ParameterSetName`, so use something appropriate that doesn't clash with already created variant or parameter set names. You cannot use the `ParameterSetName` property in the `Parameter` attribute on C# cmdlets. Each cmdlet must be separated into variants using the same pattern as seen in the `generated/cmdlets` folder. + +For script cmdlets, these are loaded via the `Azs.Backup.Admin.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. + +## 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: +- Break +- DefaultProfile +- HttpPipelineAppend +- HttpPipelinePrepend +- Proxy +- ProxyCredential +- ProxyUseDefaultCredentials + +These provide functionality to our HTTP pipeline and other useful features. In script, you can forward these parameters using `$PSBoundParameters` to the other cmdlets you're calling within `Azs.Backup.Admin`. For C#, follow the usage seen in the `ProcessRecordAsync` method. + +### Attributes +For processing the cmdlets, we've created some additional attributes: +- `Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.DescriptionAttribute` + - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propegated to reference documentation via [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. +- `Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.DoNotExportAttribute` + - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Azs.Backup.Admin`. +- `Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.InternalExportAttribute` + - Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Azs.Backup.Admin`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder. +- `Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.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/Azs.Backup.Admin/docs/Azs.Backup.Admin.md b/src/Azs.Backup.Admin/docs/Azs.Backup.Admin.md index 15e60170..3a4d796f 100644 --- a/src/Azs.Backup.Admin/docs/Azs.Backup.Admin.md +++ b/src/Azs.Backup.Admin/docs/Azs.Backup.Admin.md @@ -1,6 +1,6 @@ --- Module Name: Azs.Backup.Admin -Module Guid: af181060-8c4d-4143-9bb9-2145377fd72c +Module Guid: 8aa3e34d-0ec9-4787-accb-9eb57f3ff7fe Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin Help Version: 1.0.0.0 Locale: en-US @@ -11,6 +11,9 @@ Locale: en-US Microsoft AzureStack PowerShell: Backup Admin cmdlets ## Azs.Backup.Admin Cmdlets +### [Clear-AzsBackupConfiguration](Clear-AzsBackupConfiguration.md) +Clear a backup location. + ### [Get-AzsBackup](Get-AzsBackup.md) Returns a backup from a location based on name. @@ -23,9 +26,9 @@ Prune the external backup store. ### [Restore-AzsBackup](Restore-AzsBackup.md) Restore a backup. -### [Set-AzsBackupConfiguration](Set-AzsBackupConfiguration.md) -Update a backup location. - ### [Start-AzsBackup](Start-AzsBackup.md) Back up a specific location. +### [Update-AzsBackupConfiguration](Update-AzsBackupConfiguration.md) +Patch update a backup location. + diff --git a/src/Azs.Backup.Admin/docs/Clear-AzsBackupConfiguration.md b/src/Azs.Backup.Admin/docs/Clear-AzsBackupConfiguration.md new file mode 100644 index 00000000..25d2f6d6 --- /dev/null +++ b/src/Azs.Backup.Admin/docs/Clear-AzsBackupConfiguration.md @@ -0,0 +1,173 @@ +--- +external help file: +Module Name: Azs.Backup.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/clear-azsbackupconfiguration +schema: 2.0.0 +--- + +# Clear-AzsBackupConfiguration + +## SYNOPSIS +Clear a backup location. + +## SYNTAX + +``` +Clear-AzsBackupConfiguration [-Location ] [-ResourceGroupName ] [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Clear a backup location. + +## EXAMPLES + +### Example 1: Clear backup configuration +```powershell +PS C:\> Clear-AzsBackupConfiguration + +``` + +Clear Azure Stack backup configuration. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```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: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +Name of the backup location. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```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 +Name of the resource group. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: "system.$((Get-AzLocation)[0].Location)" +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +Subscription credentials that uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/Azs.Backup.Admin/docs/Get-AzsBackup.md b/src/Azs.Backup.Admin/docs/Get-AzsBackup.md index b879d958..b1a6d5ba 100644 --- a/src/Azs.Backup.Admin/docs/Get-AzsBackup.md +++ b/src/Azs.Backup.Admin/docs/Get-AzsBackup.md @@ -183,7 +183,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackup +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackup ## NOTES diff --git a/src/Azs.Backup.Admin/docs/Get-AzsBackupConfiguration.md b/src/Azs.Backup.Admin/docs/Get-AzsBackupConfiguration.md index 0fb3856d..e0d3880d 100644 --- a/src/Azs.Backup.Admin/docs/Get-AzsBackupConfiguration.md +++ b/src/Azs.Backup.Admin/docs/Get-AzsBackupConfiguration.md @@ -161,7 +161,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation ## NOTES diff --git a/src/Azs.Backup.Admin/docs/Invoke-AzsPruneBackupLocationExternalStore.md b/src/Azs.Backup.Admin/docs/Invoke-AzsPruneBackupLocationExternalStore.md index 57f80931..3627398a 100644 --- a/src/Azs.Backup.Admin/docs/Invoke-AzsPruneBackupLocationExternalStore.md +++ b/src/Azs.Backup.Admin/docs/Invoke-AzsPruneBackupLocationExternalStore.md @@ -16,28 +16,28 @@ Prune the external backup store. ``` Invoke-AzsPruneBackupLocationExternalStore [-Location ] [-ResourceGroupName ] [-SubscriptionId ] [-OperationType ] [-DefaultProfile ] - [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### Prune ``` Invoke-AzsPruneBackupLocationExternalStore -Option [-Location ] [-ResourceGroupName ] [-SubscriptionId ] [-DefaultProfile ] - [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### PruneViaIdentity ``` Invoke-AzsPruneBackupLocationExternalStore -InputObject - -Option [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] - [-Confirm] [-WhatIf] [] + -Option [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] ``` ### PruneViaIdentityExpanded ``` Invoke-AzsPruneBackupLocationExternalStore -InputObject - [-OperationType ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] - [-Confirm] [-WhatIf] [] + [-OperationType ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] + [-WhatIf] [] ``` ## DESCRIPTION @@ -162,7 +162,7 @@ Prune backup store operation model. To construct, see NOTES section for OPTION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IPruneBackupStoreOperationOptionModel +Type: Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IPruneBackupStoreOperationOptionModel Parameter Sets: Prune, PruneViaIdentity Aliases: @@ -173,21 +173,6 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` -### -PassThru -Returns true when the command succeeds - -```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 Name of the resource group. @@ -255,13 +240,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IPruneBackupStoreOperationOptionModel +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IPruneBackupStoreOperationOptionModel ### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.IBackupAdminIdentity ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IPruneModel +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IPruneModel ## NOTES diff --git a/src/Azs.Backup.Admin/docs/Restore-AzsBackup.md b/src/Azs.Backup.Admin/docs/Restore-AzsBackup.md index f9278f77..ce32651e 100644 --- a/src/Azs.Backup.Admin/docs/Restore-AzsBackup.md +++ b/src/Azs.Backup.Admin/docs/Restore-AzsBackup.md @@ -227,7 +227,7 @@ Properties for restore options. To construct, see NOTES section for RESTOREOPTION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IRestoreOptions +Type: Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IRestoreOptions Parameter Sets: Restore, RestoreViaIdentity Aliases: diff --git a/src/Azs.Backup.Admin/docs/Start-AzsBackup.md b/src/Azs.Backup.Admin/docs/Start-AzsBackup.md index 4753d602..ce9c7777 100644 --- a/src/Azs.Backup.Admin/docs/Start-AzsBackup.md +++ b/src/Azs.Backup.Admin/docs/Start-AzsBackup.md @@ -186,7 +186,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackup +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackup ## NOTES diff --git a/src/Azs.Backup.Admin/docs/Set-AzsBackupConfiguration.md b/src/Azs.Backup.Admin/docs/Update-AzsBackupConfiguration.md similarity index 51% rename from src/Azs.Backup.Admin/docs/Set-AzsBackupConfiguration.md rename to src/Azs.Backup.Admin/docs/Update-AzsBackupConfiguration.md index faf0e954..533b9186 100644 --- a/src/Azs.Backup.Admin/docs/Set-AzsBackupConfiguration.md +++ b/src/Azs.Backup.Admin/docs/Update-AzsBackupConfiguration.md @@ -1,20 +1,20 @@ --- external help file: Module Name: Azs.Backup.Admin -online version: https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/set-azsbackupconfiguration +online version: https://docs.microsoft.com/en-us/powershell/module/azs.backup.admin/update-azsbackupconfiguration schema: 2.0.0 --- -# Set-AzsBackupConfiguration +# Update-AzsBackupConfiguration ## SYNOPSIS -Update a backup location. +Patch update a backup location. ## SYNTAX -### UpdateExpanded (Default) +### UpdateFileshareViaIdentityExpanded (Default) ``` -Set-AzsBackupConfiguration [-Location ] [-ResourceGroupName ] [-SubscriptionId ] +Update-AzsBackupConfiguration [-InputObject ] [-Location ] [-BackupFrequencyInHours ] [-BackupRetentionPeriodInDays ] [-EncryptionCertPath ] [-IsBackupSchedulerEnabled] [-Password ] [-Path ] [-Tag ] [-UserName ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] @@ -23,23 +23,62 @@ Set-AzsBackupConfiguration [-Location ] [-ResourceGroupName ] [- ### Update ``` -Set-AzsBackupConfiguration -Backup [-Location ] [-ResourceGroupName ] +Update-AzsBackupConfiguration -Backup [-Location ] [-ResourceGroupName ] [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` +### UpdateBlobExpanded +``` +Update-AzsBackupConfiguration [-Location ] [-ResourceGroupName ] [-SubscriptionId ] + [-BackupFrequencyInHours ] [-BackupRetentionPeriodInDays ] [-BlobStorageKey ] + [-BlobStorageUrl ] [-EncryptionCertPath ] [-IsBackupSchedulerEnabled] [-Tag ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateBlobViaIdentityExpanded +``` +Update-AzsBackupConfiguration [-InputObject ] [-Location ] + [-BackupFrequencyInHours ] [-BackupRetentionPeriodInDays ] [-BlobStorageKey ] + [-BlobStorageUrl ] [-EncryptionCertPath ] [-IsBackupSchedulerEnabled] [-Tag ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### UpdateFileshareExpanded +``` +Update-AzsBackupConfiguration [-Location ] [-ResourceGroupName ] [-SubscriptionId ] + [-BackupFrequencyInHours ] [-BackupRetentionPeriodInDays ] [-EncryptionCertPath ] + [-IsBackupSchedulerEnabled] [-Password ] [-Path ] [-Tag ] + [-UserName ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaIdentity +``` +Update-AzsBackupConfiguration -InputObject -Backup + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Update a backup location. +Patch update a backup location. ## EXAMPLES -### Example 1: Set backup configuration +### Example 1: Update backup configuration which uses fileshare as backup location +```powershell +PS C:\> Update-AzsBackupConfiguration -Path "\\***.***.***.***\Share" -Username "asdomain1\azurestackadmin" -Password $password -EncryptionCertPath $encryptionCertPath + +``` + +Set Azure Stack backup configuration to use fileshare as backup location. + +### Example 2: Update backup configuration which uses blob as backup location ```powershell -PS C:\> Set-AzsBackupConfiguration -Path "\\***.***.***.***\Share" -Username "asdomain1\azurestackadmin" -Password $password -EncryptionCertPath $encryptionCertPath +PS C:\> Update-AzsBackupConfiguration -BlobStorageUrl $blobStorageUrl -BlobStorageKey $blobStorageKey -EncryptionCertPath $encryptionCertPath ``` -Set Azure Stack backup configuration. +Set Azure Stack backup configuration to use blob storage as backup location. ## PARAMETERS @@ -63,8 +102,8 @@ Information about the backup location. To construct, see NOTES section for BACKUP properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation -Parameter Sets: Update +Type: Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation +Parameter Sets: Update, UpdateViaIdentity Aliases: Required: True @@ -79,7 +118,7 @@ The interval, in hours, for the frequency that the scheduler takes a backup. ```yaml Type: System.Int32 -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateBlobExpanded, UpdateBlobViaIdentityExpanded, UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded Aliases: Required: False @@ -94,7 +133,37 @@ The retention period, in days, for backs in the storage location. ```yaml Type: System.Int32 -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateBlobExpanded, UpdateBlobViaIdentityExpanded, UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BlobStorageKey +Key to access the blob location. + +```yaml +Type: System.String +Parameter Sets: UpdateBlobExpanded, UpdateBlobViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BlobStorageUrl +Url to the update blob location + +```yaml +Type: System.String +Parameter Sets: UpdateBlobExpanded, UpdateBlobViaIdentityExpanded Aliases: Required: False @@ -124,7 +193,7 @@ Path to the encryption cert file with public key (.cer). ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateBlobExpanded, UpdateBlobViaIdentityExpanded, UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded Aliases: Required: False @@ -134,12 +203,28 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -InputObject +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.IBackupAdminIdentity +Parameter Sets: UpdateBlobViaIdentityExpanded, UpdateFileshareViaIdentityExpanded, UpdateViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -IsBackupSchedulerEnabled True if the backup scheduler is enabled. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateBlobExpanded, UpdateBlobViaIdentityExpanded, UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded Aliases: Required: False @@ -154,7 +239,7 @@ Name of the backup location. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: Update, UpdateBlobExpanded, UpdateBlobViaIdentityExpanded, UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded Aliases: Required: False @@ -180,11 +265,11 @@ Accept wildcard characters: False ``` ### -Password -Password to access the location. +Password to access the fileshare location. ```yaml Type: System.Security.SecureString -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded Aliases: Required: False @@ -195,11 +280,11 @@ Accept wildcard characters: False ``` ### -Path -Path to the update location +Path to the update fileshare location ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded Aliases: Required: False @@ -214,7 +299,7 @@ Name of the resource group. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: Update, UpdateBlobExpanded, UpdateFileshareExpanded Aliases: Required: False @@ -230,7 +315,7 @@ The subscription ID forms part of the URI for every service call. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: Update, UpdateBlobExpanded, UpdateFileshareExpanded Aliases: Required: False @@ -245,7 +330,7 @@ List of key value pairs. ```yaml Type: System.Collections.Hashtable -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateBlobExpanded, UpdateBlobViaIdentityExpanded, UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded Aliases: Required: False @@ -256,11 +341,11 @@ Accept wildcard characters: False ``` ### -UserName -Username to access the location. +Username to access the fileshare location. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateFileshareExpanded, UpdateFileshareViaIdentityExpanded Aliases: Required: False @@ -306,11 +391,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation + +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.IBackupAdminIdentity ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20180901.IBackupLocation +### Microsoft.Azure.PowerShell.Cmdlets.BackupAdmin.Models.Api20210901.IBackupLocation ## NOTES @@ -327,11 +414,20 @@ BACKUP : Information about the backup location. - `[(Any) ]`: This indicates any property can be added to this object. - `[BackupFrequencyInHours ]`: The interval, in hours, for the frequency that the scheduler takes a backup. - `[BackupRetentionPeriodInDays ]`: The retention period, in days, for backs in the storage location. + - `[BlobStorageKey ]`: Key to access the blob location. + - `[BlobStorageUrl ]`: Url to the update blob location - `[EncryptionCertBase64 ]`: The base64 raw data for the backup encryption certificate. - `[IsBackupSchedulerEnabled ]`: True if the backup scheduler is enabled. - - `[Password ]`: Password to access the location. - - `[Path ]`: Path to the update location - - `[UserName ]`: Username to access the location. + - `[Password ]`: Password to access the fileshare location. + - `[Path ]`: Path to the update fileshare location + - `[UserName ]`: Username to access the fileshare location. + +INPUTOBJECT : Identity Parameter + - `[Backup ]`: Name of the backup. + - `[Id ]`: Resource identity path + - `[Location ]`: Name of the backup location. + - `[ResourceGroupName ]`: Name of the resource group. + - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. ## RELATED LINKS diff --git a/src/Azs.Backup.Admin/docs/readme.md b/src/Azs.Backup.Admin/docs/readme.md index 57b94936..8ff7a9e4 100644 --- a/src/Azs.Backup.Admin/docs/readme.md +++ b/src/Azs.Backup.Admin/docs/readme.md @@ -8,4 +8,4 @@ This directory contains the documentation of the cmdlets for the `Azs.Backup.Adm - Packaged: yes ## Details -The process of documentation generation loads `Azs.Backup.Admin` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file +The process of documentation generation loads `Azs.Backup.Admin` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file diff --git a/src/Azs.Backup.Admin/examples/Clear-AzsBackupConfiguration.md b/src/Azs.Backup.Admin/examples/Clear-AzsBackupConfiguration.md new file mode 100644 index 00000000..2e8f36c4 --- /dev/null +++ b/src/Azs.Backup.Admin/examples/Clear-AzsBackupConfiguration.md @@ -0,0 +1,8 @@ +### Example 1: Clear backup configuration +```powershell +PS C:\> Clear-AzsBackupConfiguration + +``` + +Clear Azure Stack backup configuration. + diff --git a/src/Azs.Backup.Admin/examples/Invoke-AzsPruneBackupLocationExternalStore.md b/src/Azs.Backup.Admin/examples/Invoke-AzsPruneBackupLocationExternalStore.md index 6d04620a..ba859a88 100644 --- a/src/Azs.Backup.Admin/examples/Invoke-AzsPruneBackupLocationExternalStore.md +++ b/src/Azs.Backup.Admin/examples/Invoke-AzsPruneBackupLocationExternalStore.md @@ -16,4 +16,5 @@ masbackup/progressivebackup/garbage ``` -Perform a dry run that does not actually remove the garbage \ No newline at end of file +Perform a dry run that does not actually remove the garbage + diff --git a/src/Azs.Backup.Admin/examples/Restore-AzsBackup.md b/src/Azs.Backup.Admin/examples/Restore-AzsBackup.md index 12258297..125dcd40 100644 --- a/src/Azs.Backup.Admin/examples/Restore-AzsBackup.md +++ b/src/Azs.Backup.Admin/examples/Restore-AzsBackup.md @@ -5,3 +5,4 @@ PS C:\> Restore-AzsBackup -Name $backupResourceName -DecryptionCertPath $decrypt ``` Restore from an Azure Stack backup. + diff --git a/src/Azs.Backup.Admin/examples/Set-AzsBackupConfiguration.md b/src/Azs.Backup.Admin/examples/Set-AzsBackupConfiguration.md deleted file mode 100644 index e0443d37..00000000 --- a/src/Azs.Backup.Admin/examples/Set-AzsBackupConfiguration.md +++ /dev/null @@ -1,7 +0,0 @@ -### Example 1: Set backup configuration -```powershell -PS C:\> Set-AzsBackupConfiguration -Path "\\***.***.***.***\Share" -Username "asdomain1\azurestackadmin" -Password $password -EncryptionCertPath $encryptionCertPath - -``` - -Set Azure Stack backup configuration. diff --git a/src/Azs.Backup.Admin/examples/Start-AzsBackup.md b/src/Azs.Backup.Admin/examples/Start-AzsBackup.md index 6f72b82b..08c887d9 100644 --- a/src/Azs.Backup.Admin/examples/Start-AzsBackup.md +++ b/src/Azs.Backup.Admin/examples/Start-AzsBackup.md @@ -5,3 +5,4 @@ PS C:\>Start-AzsBackup ``` Start an Azure Stack backup. + diff --git a/src/Azs.Backup.Admin/examples/Update-AzsBackupConfiguration.md b/src/Azs.Backup.Admin/examples/Update-AzsBackupConfiguration.md new file mode 100644 index 00000000..69bf81b3 --- /dev/null +++ b/src/Azs.Backup.Admin/examples/Update-AzsBackupConfiguration.md @@ -0,0 +1,17 @@ +### Example 1: Update backup configuration which uses fileshare as backup location +```powershell +PS C:\> Update-AzsBackupConfiguration -Path "\\***.***.***.***\Share" -Username "asdomain1\azurestackadmin" -Password $password -EncryptionCertPath $encryptionCertPath + +``` + +Set Azure Stack backup configuration to use fileshare as backup location. + + +### Example 2: Update backup configuration which uses blob as backup location +```powershell +PS C:\> Update-AzsBackupConfiguration -BlobStorageUrl $blobStorageUrl -BlobStorageKey $blobStorageKey -EncryptionCertPath $encryptionCertPath + +``` + +Set Azure Stack backup configuration to use blob storage as backup location. + diff --git a/src/Azs.Backup.Admin/readme.md b/src/Azs.Backup.Admin/readme.md index 8ce2fdcb..0009b168 100644 --- a/src/Azs.Backup.Admin/readme.md +++ b/src/Azs.Backup.Admin/readme.md @@ -16,6 +16,9 @@ This directory contains the PowerShell module for the BackupAdmin service. ## Detail This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. +## Module Requirements +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 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,7 +54,7 @@ metadata: description: 'Microsoft AzureStack PowerShell: Backup Admin cmdlets' subject-prefix: '' -module-version: 1.0.1 +module-version: 2.0.0 service-name: BackupAdmin ### File Renames @@ -143,6 +146,24 @@ directive: parameter-name: BackupRetentionPeriodInDay set: parameter-name: BackupRetentionPeriodInDays + - where: + verb: Update + subject: BackupConfiguration + parameter-name: ^ExternalStoreDefault(.+) + set: + parameter-name: $1 + - where: + verb: Update + subject: BackupConfiguration + parameter-name: BackupFrequencyInHour + set: + parameter-name: BackupFrequencyInHours + - where: + verb: Update + subject: BackupConfiguration + parameter-name: BackupRetentionPeriodInDay + set: + parameter-name: BackupRetentionPeriodInDays # Hide the auto-generated Set-AzsBackupConfiguration and expose it through customized one - where: @@ -150,6 +171,12 @@ directive: subject: BackupConfiguration hide: true + # Hide the auto-generated Update-AzsBackupConfiguration and expose it through customized one + - where: + verb: Update + subject: BackupConfiguration + hide: true + # Hide the auto-generated Restore-AzsBackup and expose it through customized one - where: verb: Restore @@ -170,6 +197,14 @@ directive: verb: Start subject: Backup + # Rename Set-AzsBackupConfiguration to Clear-AzsBackupConfiguration + - where: + verb: Set + subject: BackupConfiguration + set: + verb: Clear + subject: BackupConfiguration + # Add release notes - from: Azs.Backup.Admin.nuspec where: $ @@ -178,12 +213,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Backup.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 Changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.AzureBridge.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.AzureBridge.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 Changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Backup.Admin/test/Clear-AzsBackupConfiguration.Recording.json b/src/Azs.Backup.Admin/test/Clear-AzsBackupConfiguration.Recording.json new file mode 100644 index 00000000..45e33106 --- /dev/null +++ b/src/Azs.Backup.Admin/test/Clear-AzsBackupConfiguration.Recording.json @@ -0,0 +1,125 @@ +{ + "Clear-AzsBackupConfiguration+[NoContext]+TestClearBackupLocation+$PUT+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", + "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"externalStoreDefault\": {\r\n \"userName\": \"\"\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "114" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/a9837eaf-5199-4440-be05-cdc56ae91f6f?api-version=2021-09-01" ], + "Retry-After": [ "60" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/a9837eaf-5199-4440-be05-cdc56ae91f6f?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "5ff48514-d156-4988-81c4-6f80919ef7b6" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ6ZH1da+b8hU34AvZVdgMHmxcUrko5D8PC08IFZILEJkwEEG7TLD9p00mV9W2VTkjAOkDj0tBR55C8TX7OjLFknzxDMeZezv1FTZnOzaFUBkV8o8aOoHLSC5Aw7cIk4sjjHTT8DDiHHC/8CK/NkL" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "5ff48514-d156-4988-81c4-6f80919ef7b6" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T022321Z:5ff48514-d156-4988-81c4-6f80919ef7b6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 02:23:21 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Clear-AzsBackupConfiguration+[NoContext]+TestClearBackupLocation+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/a9837eaf-5199-4440-be05-cdc56ae91f6f?api-version=2021-09-01\u0026IsAsyncOperation=1+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/a9837eaf-5199-4440-be05-cdc56ae91f6f?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "ab7c5d55-4a5d-41ab-a248-4d2993353569" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Clear-AzsBackupConfiguration" ], + "FullCommandName": [ "Clear-AzsBackupConfiguration_SetExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "44bf0b9d-3455-4459-8b05-1e04afab9d84" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuuT62NyGvXX0uAnpF4D3EW5liXZo2djGsyX9mWNOsPK87Oi8/RYGC8+TC19MiaPVNVDzgIDfzzxnaGODipNrBfdADjQrk/oryGomhskchJzqR3aK4ooe9z7TR7iIv0S2h136n1ui6xlTDsPlJyb8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14993" ], + "x-ms-request-id": [ "44bf0b9d-3455-4459-8b05-1e04afab9d84" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T022421Z:44bf0b9d-3455-4459-8b05-1e04afab9d84" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 02:24:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "588" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"externalStoreDefault\":{\"path\":\"\",\"userName\":\"\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":null,\"backupFrequencyInHours\":12,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":null,\"nextBackupTime\":null,\"lastBackupTime\":\"2021-10-31T13:29:51.5309543Z\",\"backupRetentionPeriodInDays\":7,\"blobStorageUrl\":null,\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Clear-AzsBackupConfiguration+[NoContext]+TestClearBackupLocation+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/a9837eaf-5199-4440-be05-cdc56ae91f6f?api-version=2021-09-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/a9837eaf-5199-4440-be05-cdc56ae91f6f?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "ab7c5d55-4a5d-41ab-a248-4d2993353569" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Clear-AzsBackupConfiguration" ], + "FullCommandName": [ "Clear-AzsBackupConfiguration_SetExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "8d0024c1-fb0e-44fb-a122-e64abf83cab8" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvt4JRQs/tN7yOFlsDsxvfsjmv3Y21PrYx2HAtyrm/WDdbZaCk6AgMHzI/nx6Mz17E3yk2ODDvn2WGEZJAMaRHyIVaFNEUBo3AVLXilkzQlL7A7mxqvI5drAbZ+roEybx7iMgbvxHpEiF6X/okHt7F" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14992" ], + "x-ms-request-id": [ "8d0024c1-fb0e-44fb-a122-e64abf83cab8" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T022422Z:8d0024c1-fb0e-44fb-a122-e64abf83cab8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 02:24:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "646" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\",\"userName\":\"\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":null,\"backupFrequencyInHours\":12,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":null,\"nextBackupTime\":null,\"lastBackupTime\":\"2021-10-31T13:29:51.5309543Z\",\"backupRetentionPeriodInDays\":7,\"blobStorageUrl\":null,\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Clear-AzsBackupConfiguration.Tests.ps1 b/src/Azs.Backup.Admin/test/Clear-AzsBackupConfiguration.Tests.ps1 new file mode 100644 index 00000000..71c4aea9 --- /dev/null +++ b/src/Azs.Backup.Admin/test/Clear-AzsBackupConfiguration.Tests.ps1 @@ -0,0 +1,35 @@ +. (Join-Path $PSScriptRoot 'loadEnvJson.ps1') + +$TestRecordingFile = Join-Path $PSScriptRoot 'Clear-AzsBackupConfiguration.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Clear-AzsBackupConfiguration' { + . $PSScriptRoot\Common.ps1 + + AfterEach { + $global:Client = $null + } + + It "TestClearBackupLocation" -Skip:$('TestClearBackupLocation' -in $global:SkippedTests) { + $global:TestName = 'TestClearBackupLocation' + + $location = Clear-AzsBackupConfiguration + ValidateBackupLocation -BackupLocation $location + + $location | Should Not Be $Null + $location.Path | Should -BeNullOrEmpty + $location.Username | Should -BeNullOrEmpty + $location.Password | Should -BeNullOrEmpty + $location.BlobStorageKey | Should -BeNullOrEmpty + $location.BlobStorageUrl | Should -BeNullOrEmpty + $location.EncryptionCertBase64 | Should -BeNullOrEmpty + $location.IsBackupSchedulerEnabled | Should -BeNullOrEmpty + $location.BackupFrequencyInHours | Should be $global:backupFrequencyInHoursDefaultValue + $location.BackupRetentionPeriodInDays | Should be $global:backupRetentionPeriodInDaysDefaultValue + } +} diff --git a/src/Azs.Backup.Admin/test/Common.ps1 b/src/Azs.Backup.Admin/test/Common.ps1 index 7ff009cb..ee84382f 100644 --- a/src/Azs.Backup.Admin/test/Common.ps1 +++ b/src/Azs.Backup.Admin/test/Common.ps1 @@ -6,11 +6,15 @@ $global:username = "AzureStackAdmin" $global:passwordStr = "password" [SecureString]$global:password = ConvertTo-SecureString -String $global:passwordStr -AsPlainText -Force $global:path = "\\su1fileserver\SU1_Infrastructure_1\BackupStore" +$global:blobStorageUrl = "https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32" +$global:blobStorageKey = "hJW2t+LDs2JuF2uw==" $global:encryptionCertBase64 = "ZW5jcnlwdGlvbkNlcnQ=" $global:encryptionCertPath = "$env:temp\encryptionCert.cer" $global:isBackupSchedulerEnabled = $false $global:backupFrequencyInHours = 10 $global:backupRetentionPeriodInDays = 6 +$global:backupFrequencyInHoursDefaultValue = 12 +$global:backupRetentionPeriodInDaysDefaultValue = 7 $global:decryptionCertBase64 = "ZGVjcnlwdGlvbkNlcnQ=" $global:decryptionCertPath = "$env:temp\decryptionCert.pfx" $global:decryptionCertPassword = ConvertTo-SecureString -String "decryptionCertPassword" -AsPlainText -Force @@ -99,9 +103,11 @@ function AssertBackupLocationsAreEqual { $expected.IsBackupSchedulerEnabled | Should Be $found.IsBackupSchedulerEnabled $expected.LastBackupTime | Should Be $found.LastBackupTime $expected.NextBackupTime | Should Be $found.NextBackupTime - $expected.LastBackupTime | Should Be $found.LastBackupTime + $expected.BackupRetentionPeriodInDays | Should Be $found.BackupRetentionPeriodInDays $expected.Password | Should Be $found.Password $expected.Path | Should Be $found.Path $expected.UserName | Should Be $found.UserName + $expected.BlobStorageKey | Should Be $found.BlobStorageKey + $expected.BlobStorageUrl | Should Be $found.BlobStorageUrl } } diff --git a/src/Azs.Backup.Admin/test/Get-AzsBackup.Recording.json b/src/Azs.Backup.Admin/test/Get-AzsBackup.Recording.json index 2f8a98a1..bd3c82db 100644 --- a/src/Azs.Backup.Admin/test/Get-AzsBackup.Recording.json +++ b/src/Azs.Backup.Admin/test/Get-AzsBackup.Recording.json @@ -1,16 +1,17 @@ { - "Get-AzsBackup+[NoContext]+TestListBackups+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2018-09-01+1": { + "Get-AzsBackup+[NoContext]+TestListBackups+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "42" ], - "x-ms-client-request-id": [ "bead2ddc-724f-44d8-986a-98bd91d7d31a" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "b7d7b3c7-347a-494e-872f-09dc3f611175" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], "FullCommandName": [ "Get-AzsBackup_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,38 +20,82 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8df95a8f-6e07-4cca-a8ac-b2378be1b0e7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14970" ], - "x-ms-request-id": [ "8df95a8f-6e07-4cca-a8ac-b2378be1b0e7" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125007Z:8df95a8f-6e07-4cca-a8ac-b2378be1b0e7" ], + "x-ms-correlation-request-id": [ "08f63b2c-79dd-447e-8be0-89f6348cf18f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7WFm9i0zuiWPcs8SChFe+ASEmjU0fGB87OXLgWrIwgGkGxHnJtytcDcOm7yIqZCDlbwPw9pF8WkP3V9519m/L9hFDfGgbcUCd5g2zq3m+P2zUHYRXUCeD1Pi+f0D8dsQ5Ly5bIeGkfw9NpJ5DSfH" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14898" ], + "x-ms-request-id": [ "08f63b2c-79dd-447e-8be0-89f6348cf18f" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132148Z:08f63b2c-79dd-447e-8be0-89f6348cf18f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "44242" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"name\":\"redmond/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"02dad34f-d539-4879-98cf-52d5e2447a9c\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T14:27:39.2716467Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"name\":\"redmond/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"09dbb597-fd9c-4e89-9bb1-673676620b21\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T00:22:07.6635047Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"name\":\"redmond/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-10-31T13:17:57.1251584Z\",\"timeTakenToCreate\":\"PT4M6.8702613S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"name\":\"redmond/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:21:22.6433004Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"name\":\"redmond/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"9a43c221-9a4b-45ce-9e84-d4041558147b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:35:21.8587954Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"name\":\"redmond/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:41:06.2024616Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7\",\"name\":\"redmond/e5f29854-6021-4804-b844-745dfda728c7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"e5f29854-6021-4804-b844-745dfda728c7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T13:03:39.9339885Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"name\":\"redmond/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T03:43:04.4987803Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}}],\"nextLink\":null}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2021-09-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "61b14c45-4b2c-4779-a367-1cb7a8784ed4" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:07 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "9a7014f8-d18f-41f6-a990-946bfb14be5a" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU16FIS3b3KDrSevEjc2qMbT4ogLwl5lsqN+KO8A15nzmYisMiLd9xTENV8PSEaldS3Q8niVwNZ5a+KnGy+of8tcWFTJVivZwnfolRZfKOwY1p+/DYhhgh7AVjeLB91NdKRJq0mIJRQfqnzELYrju" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT7wiTE/5mSkONbFBOhWqLq2DtuS+Z/Aj3O1Ak60vXwyLTKAbTUe4b8buLwNUkpNjQvxZHNeVK8O/lVDsbgvNpVIYoVO7Gm0hRt3Nr45zvkrLI3fTkk7FZEudGzPpCpRI4si5LjTOMxtfWHmTKrmo" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14897" ], + "x-ms-request-id": [ "9a7014f8-d18f-41f6-a990-946bfb14be5a" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132149Z:9a7014f8-d18f-41f6-a990-946bfb14be5a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2621" ], + "Content-Length": [ "44242" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384\",\"name\":\"redmond/08b92613-837a-43cd-86b5-1212ef954384\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"08b92613-837a-43cd-86b5-1212ef954384\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:22:18.7883083Z\",\"timeTakenToCreate\":\"PT6M35.345912S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"name\":\"redmond/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:32:38.8094127Z\",\"timeTakenToCreate\":\"PT5M16.0605282S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"name\":\"redmond/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"69ebefe9-7b1b-414a-99ad-49edf061d845\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:42:50.0310854Z\",\"timeTakenToCreate\":\"PT5M15.1452343S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}],\"nextLink\":null}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"name\":\"redmond/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"02dad34f-d539-4879-98cf-52d5e2447a9c\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T14:27:39.2716467Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"name\":\"redmond/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"09dbb597-fd9c-4e89-9bb1-673676620b21\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T00:22:07.6635047Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"name\":\"redmond/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-10-31T13:17:57.1251584Z\",\"timeTakenToCreate\":\"PT4M6.8702613S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"name\":\"redmond/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:21:22.6433004Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"name\":\"redmond/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"9a43c221-9a4b-45ce-9e84-d4041558147b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:35:21.8587954Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"name\":\"redmond/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:41:06.2024616Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7\",\"name\":\"redmond/e5f29854-6021-4804-b844-745dfda728c7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"e5f29854-6021-4804-b844-745dfda728c7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T13:03:39.9339885Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"name\":\"redmond/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T03:43:04.4987803Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}}],\"nextLink\":null}", + "isContentBase64": false } }, - "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2018-09-01+1": { + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c?api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "43" ], - "x-ms-client-request-id": [ "de4836fd-3f12-4b2b-a70b-773d930e7d48" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "b13f4ef3-9fb7-4f81-aa39-53bb40dd79fc" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], - "FullCommandName": [ "Get-AzsBackup_List" ], + "FullCommandName": [ "Get-AzsBackup_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -59,38 +104,82 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f3810135-4d30-4f76-9af1-0f2f08d4bf9a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14967" ], - "x-ms-request-id": [ "f3810135-4d30-4f76-9af1-0f2f08d4bf9a" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125010Z:f3810135-4d30-4f76-9af1-0f2f08d4bf9a" ], + "x-ms-correlation-request-id": [ "8b705a17-47aa-4a86-8f31-72bd1ab3480f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZJvOW1WRhz2Ui7lNUN+ZsQNxPPrO13oU1CviCxAYHNOUNzx9uK/WbW2Q2aMpI2u0n8uKfFemxisAZBIngStj0YpTLrBFFX4eLZbbbd1KB6YaQuSGMkTY/7cXJ2CuoORW1q2uFBKhp0xNQPddaFAC" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14896" ], + "x-ms-request-id": [ "8b705a17-47aa-4a86-8f31-72bd1ab3480f" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132150Z:8b705a17-47aa-4a86-8f31-72bd1ab3480f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "6172" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"name\":\"redmond/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"02dad34f-d539-4879-98cf-52d5e2447a9c\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T14:27:39.2716467Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21?api-version=2021-09-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "30f6ffde-0e5f-4e7c-a68b-f3871e767955" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:10 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "9ee2a4d4-f807-4202-9478-7b0752cf6ae0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjlklZY1+3HUZvxgttIvhAeCJnm1fB2lcl2+i4ZvKn18e/fD8cGiDpPTCDJQXdgDgBhNwvAfNbPs/ymDbhJM6ISnx8L4LTast9sZds+b7asPGavaVRIrFCvnfrgkS3CxrlPATYJpXpK/qfWU5g6Wx" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv23V5w7/1FlX4OlMzpjy7VhjP5/FPnJEbRg+sB/MYqGgfeApFYeJ5XtonY28NONCbTEnPRPmwfDOCqnzE7gTmGTruV32MkLnUR2BxmYW+r346HPAUaj9VADgbKs7kr3vnnKhb9Nil28iWx2SVLv4y" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14895" ], + "x-ms-request-id": [ "9ee2a4d4-f807-4202-9478-7b0752cf6ae0" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132151Z:9ee2a4d4-f807-4202-9478-7b0752cf6ae0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2621" ], + "Content-Length": [ "6171" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384\",\"name\":\"redmond/08b92613-837a-43cd-86b5-1212ef954384\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"08b92613-837a-43cd-86b5-1212ef954384\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:22:18.7883083Z\",\"timeTakenToCreate\":\"PT6M35.345912S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"name\":\"redmond/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:32:38.8094127Z\",\"timeTakenToCreate\":\"PT5M16.0605282S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"name\":\"redmond/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"69ebefe9-7b1b-414a-99ad-49edf061d845\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:42:50.0310854Z\",\"timeTakenToCreate\":\"PT5M15.1452343S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}],\"nextLink\":null}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"name\":\"redmond/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"09dbb597-fd9c-4e89-9bb1-673676620b21\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T00:22:07.6635047Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false } }, - "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+2": { + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "5380f10c-521e-40bf-adcc-879caf8f99c1" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "08295bb9-93f9-4f03-b401-69f3b04d1ae7" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], "FullCommandName": [ "Get-AzsBackup_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -99,38 +188,82 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8f1642b7-0519-403a-93d7-eadc7955c594" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14964" ], - "x-ms-request-id": [ "8f1642b7-0519-403a-93d7-eadc7955c594" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125014Z:8f1642b7-0519-403a-93d7-eadc7955c594" ], + "x-ms-correlation-request-id": [ "5b5d86b1-55f2-4a34-82d1-45cf5f9c14cb" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTnx0da4Qyoa/Bt1m0wE7/iR22S9AaK43d8uNMja8WUC5RUOC4MbuKcsXJtaxQCORVFDf3YiwlHwFXCD/31zC56r5UjZ2n2iKYSfTVSgE8rig66frau05gXWybrwCRHQVIBIDzn7P8hNcno85vsMc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14894" ], + "x-ms-request-id": [ "5b5d86b1-55f2-4a34-82d1-45cf5f9c14cb" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132151Z:5b5d86b1-55f2-4a34-82d1-45cf5f9c14cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1005" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"name\":\"redmond/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-10-31T13:17:57.1251584Z\",\"timeTakenToCreate\":\"PT4M6.8702613S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7?api-version=2021-09-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "30cffbe7-e83f-407d-8646-5548638c1103" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:13 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "494462c6-f388-4f2d-9da9-1508a727a3b2" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvURsIYjHVcOBUyVXOD8Xx15xPizrsa2SWR4MfrLFhr8+RovuMDoTLad51KB7g4ldJ6tZjNxA1JWOjp8dTTyTylARdcU7NjkdrigTcfnNw5eWoAlurLzF0rsQAQGEGlsCbfS3GI/GPL6v+deRDT7EF" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9EZQj+C6R7GPu5In8jZQ963sDnrCHAN6RU6AAMFskHJ070jcqi0wiNY0jWNX7BsbnZYO2+rLsAghqU9uE1sK0gOwsZ92H4bCN+Z+aVFo3XKUg0S68bIJyTpeflhTNBo6jL5KNVVvER20gWOmoNZ+" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14893" ], + "x-ms-request-id": [ "494462c6-f388-4f2d-9da9-1508a727a3b2" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132151Z:494462c6-f388-4f2d-9da9-1508a727a3b2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "863" ], + "Content-Length": [ "6172" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384\",\"name\":\"redmond/08b92613-837a-43cd-86b5-1212ef954384\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"08b92613-837a-43cd-86b5-1212ef954384\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:22:18.7883083Z\",\"timeTakenToCreate\":\"PT6M35.345912S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"name\":\"redmond/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:21:22.6433004Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false } }, - "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+3": { + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b?api-version=2021-09-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "45" ], - "x-ms-client-request-id": [ "6d4e5907-95d0-4812-9feb-922915954f75" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "92e633f5-e0db-497d-a089-25ab3b3d6b6b" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], "FullCommandName": [ "Get-AzsBackup_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -139,38 +272,82 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2a6c42f3-193c-4d88-9026-23eee1b595ea" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14961" ], - "x-ms-request-id": [ "2a6c42f3-193c-4d88-9026-23eee1b595ea" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125018Z:2a6c42f3-193c-4d88-9026-23eee1b595ea" ], + "x-ms-correlation-request-id": [ "3e701554-8cc8-46e6-b5b7-e10964f0d8d9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOyefl6C9Aq57770zW+zJsCdGfiywcaA99QKnDxwgDkg1stOQiJjXBfVpmy/a6bDCO4T2SHaRVtbS/Hj8ZFtX7Eg5zetBRpnKVCpwj6vGEtddDPejx2coOmNcVhdKr4yWjTHG83T2VpIdhupPP5fR" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14892" ], + "x-ms-request-id": [ "3e701554-8cc8-46e6-b5b7-e10964f0d8d9" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132152Z:3e701554-8cc8-46e6-b5b7-e10964f0d8d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "6172" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"name\":\"redmond/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"9a43c221-9a4b-45ce-9e84-d4041558147b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:35:21.8587954Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62?api-version=2021-09-01+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "1281f0dd-3565-48c1-9b12-641b8ad779ca" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:17 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "319cbedc-e7e0-4194-804b-5f05aad0428e" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIQWhrjw+TKQpiZDkG4AQNSM09zqR6bBdnLnTo7Y09S1ZqcU5DkaYKIhk1pPirWQgVzDs80DtGPlawQarkE45vNeOEEl8iv6SgM8NwcCszPqIFpXi8BuZv9nBAYSmrBag6gaNQm/9Ylh3qI2IUkHa" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvD/3VKP+rzWBf+VMA4fv5mKIVnalePDbUpcgpFasyiR4ffddijuGuv/lgmAzsqi7deyQ8piKngy6bl5V6Of91jDAZJJW9XFxgzQBqitewPCOaoYm1J0A8414lYvei5BeFuBHwBubTimw0H0+c1Ub+" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14891" ], + "x-ms-request-id": [ "319cbedc-e7e0-4194-804b-5f05aad0428e" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132153Z:319cbedc-e7e0-4194-804b-5f05aad0428e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "864" ], + "Content-Length": [ "6172" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"name\":\"redmond/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:32:38.8094127Z\",\"timeTakenToCreate\":\"PT5M16.0605282S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"name\":\"redmond/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:41:06.2024616Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false } }, - "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+4": { + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7?api-version=2021-09-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "46" ], - "x-ms-client-request-id": [ "d0392d57-9885-4e91-806e-ea827e153be4" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "66fe1871-04c6-4148-a5ad-ed24b5ee9def" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], "FullCommandName": [ "Get-AzsBackup_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -179,38 +356,124 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2c44cac3-fa4f-4b10-9df5-7c9f68266677" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14958" ], - "x-ms-request-id": [ "2c44cac3-fa4f-4b10-9df5-7c9f68266677" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125023Z:2c44cac3-fa4f-4b10-9df5-7c9f68266677" ], + "x-ms-correlation-request-id": [ "7bb2084a-eb0b-472f-8f61-ebe022047458" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhKkyQZ1QtDU9UD+3zHRdRpRQDzHZ8MWK/knRf6hWQNGocb4BHaskZwNZDdkBOyeFSUsUsYbsAw8j9J7A5yFwNQcFDkQZmmPlWqb/kxDPqX91xP8LrZ3HEhnsd0hxp10FdhqegC0avJ/K0Ugj5V1z" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14890" ], + "x-ms-request-id": [ "7bb2084a-eb0b-472f-8f61-ebe022047458" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132153Z:7bb2084a-eb0b-472f-8f61-ebe022047458" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "6172" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7\",\"name\":\"redmond/e5f29854-6021-4804-b844-745dfda728c7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"e5f29854-6021-4804-b844-745dfda728c7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T13:03:39.9339885Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackup+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b?api-version=2021-09-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "140f9e18-2895-4f7b-b037-395e1c25dc2e" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:23 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "3e417169-8993-4846-a292-1bfee1f93159" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIDRphzpxYCAkKsUmdHa93A5AB0Vxry2lNBmQAHrfeXJ9kUL/CvUTzaLHcR6zmgvXkQQ0dEOc3+pXP/DkzSFuRUrLhQeF2iAW7mXVzCq70xtW86t3V9N0rKkb8UwvjcQor1PkSevo/UaIKZX1huOS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2ZmiwaHn0qIShkO+SuxA56cQK86m+dTj4i19xS9NDVuxWPyQKo+3QVYbAj4HjKisC5CkNlRxkDQLOK9SArX4DcxXnPpXA9JHxkT3qY+qM0ro1UaIylluSGbCysD7Ix/9gOal7OSFxKmoqJFukLbo" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14889" ], + "x-ms-request-id": [ "3e417169-8993-4846-a292-1bfee1f93159" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132154Z:3e417169-8993-4846-a292-1bfee1f93159" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "864" ], + "Content-Length": [ "6171" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"name\":\"redmond/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"69ebefe9-7b1b-414a-99ad-49edf061d845\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:42:50.0310854Z\",\"timeTakenToCreate\":\"PT5M15.1452343S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"name\":\"redmond/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T03:43:04.4987803Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false } }, - "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2018-09-01+1": { + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "47" ], - "x-ms-client-request-id": [ "e74988c5-544e-4939-96d5-97863cc8a9dd" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "bdbd69e9-4678-4761-bf28-1e3a5fae65f1" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], "FullCommandName": [ "Get-AzsBackup_List" ], "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" ], + "x-ms-correlation-request-id": [ "73e4bc44-cdad-45de-99f9-7d66b795d81e" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqkrcG2rEtaBeKZ+D14vomGjPAV/AkJdpEXV7LAi7dt3974GTmsB6zAwpa3/zX9o0dK5fcYZGRwr3DfSInv1gXwB98WMv1h4TqdeYdTkQZLEWgXA3QzeekyBI2H6G0r0dwpsTqsmG6CNT5Wuwcm8r" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14888" ], + "x-ms-request-id": [ "73e4bc44-cdad-45de-99f9-7d66b795d81e" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132155Z:73e4bc44-cdad-45de-99f9-7d66b795d81e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "44242" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"name\":\"redmond/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"02dad34f-d539-4879-98cf-52d5e2447a9c\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T14:27:39.2716467Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"name\":\"redmond/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"09dbb597-fd9c-4e89-9bb1-673676620b21\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T00:22:07.6635047Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"name\":\"redmond/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-10-31T13:17:57.1251584Z\",\"timeTakenToCreate\":\"PT4M6.8702613S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"name\":\"redmond/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:21:22.6433004Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"name\":\"redmond/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"9a43c221-9a4b-45ce-9e84-d4041558147b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:35:21.8587954Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"name\":\"redmond/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:41:06.2024616Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7\",\"name\":\"redmond/e5f29854-6021-4804-b844-745dfda728c7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"e5f29854-6021-4804-b844-745dfda728c7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T13:03:39.9339885Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"name\":\"redmond/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T03:43:04.4987803Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}}],\"nextLink\":null}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c?api-version=2021-09-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "9039c596-3c99-48a3-b6b3-ffa6e4773a11" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -219,38 +482,82 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "731d827b-70ff-418b-a0ea-349e1c026646" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14955" ], - "x-ms-request-id": [ "731d827b-70ff-418b-a0ea-349e1c026646" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125027Z:731d827b-70ff-418b-a0ea-349e1c026646" ], + "x-ms-correlation-request-id": [ "d97d96b8-7c21-4090-a852-bb701e007325" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWr+YpZ8a7Fep3PeRk5v0lbzWFYxVkLBzfbYNMuHLtjrGTBRJgnY5olB2wPG+0u5V+atIUTx1VASN7/FN3MP0a40j5cDGIShSqgyr16idrzD2WJ5Lrq1ckusnnXqb1zeDw5I1Qy9LvJpPoIJWD7CM" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14887" ], + "x-ms-request-id": [ "d97d96b8-7c21-4090-a852-bb701e007325" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132156Z:d97d96b8-7c21-4090-a852-bb701e007325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "6172" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"name\":\"redmond/02dad34f-d539-4879-98cf-52d5e2447a9c\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"02dad34f-d539-4879-98cf-52d5e2447a9c\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T14:27:39.2716467Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21?api-version=2021-09-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "13" ], + "x-ms-client-request-id": [ "066be288-5043-430a-9ccf-f52dd4e92245" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:26 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "1fe2f4b7-2930-49ce-bb0c-cba3f038feb0" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtH/ecfIUohzjSX0NFZvTzJmrW7f17mVCE11oOkcXqdiqnlvsyV9s+S3eZAHn/VGr2DW2f/pyCE/qTV1okTACZpAdyPKDxrMjLEY4oJt/mUSOn8R4LaV39aUkgBy0QElE3939CYUpSNzCRq1gJ7rl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEZPUotfpLMX0A35QKQ9LV925T6rYCZpTu2rwrWyiQBXGXz4hKZP3VauvMCA/0Zz3rDGwe7fh1/T0dQ4TKpor7idnVVjssUdbBwTHUdg1qyNv/MI8NI/5YqhkA7f8ongBFSjtPKMLv59HqYd8ph4M" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14886" ], + "x-ms-request-id": [ "1fe2f4b7-2930-49ce-bb0c-cba3f038feb0" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132156Z:1fe2f4b7-2930-49ce-bb0c-cba3f038feb0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2621" ], + "Content-Length": [ "6171" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384\",\"name\":\"redmond/08b92613-837a-43cd-86b5-1212ef954384\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"08b92613-837a-43cd-86b5-1212ef954384\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:22:18.7883083Z\",\"timeTakenToCreate\":\"PT6M35.345912S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"name\":\"redmond/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:32:38.8094127Z\",\"timeTakenToCreate\":\"PT5M16.0605282S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}},{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"name\":\"redmond/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"69ebefe9-7b1b-414a-99ad-49edf061d845\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:42:50.0310854Z\",\"timeTakenToCreate\":\"PT5M15.1452343S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}],\"nextLink\":null}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"name\":\"redmond/09dbb597-fd9c-4e89-9bb1-673676620b21\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"09dbb597-fd9c-4e89-9bb1-673676620b21\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T00:22:07.6635047Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false } }, - "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+2": { + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "48" ], - "x-ms-client-request-id": [ "3488eec0-c03c-4dcf-9c52-09b05df1786b" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "c48ef308-1b47-4dbc-9717-d4e3478940d1" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], "FullCommandName": [ "Get-AzsBackup_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -259,38 +566,82 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1356d1b2-3cb0-4eb3-a431-e6ba159c36cc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14954" ], - "x-ms-request-id": [ "1356d1b2-3cb0-4eb3-a431-e6ba159c36cc" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125027Z:1356d1b2-3cb0-4eb3-a431-e6ba159c36cc" ], + "x-ms-correlation-request-id": [ "02f054b6-6ac2-4342-a16a-1ec3424a51dd" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDNDzmZQEC9kIjHNVafyDJiarD8bLNfh5yARKw5BU+6OLDaXhntdpubhQJCzPo/XysqvusmuoBRlcROcMwDCqMULQmGOt2w7a6w7j1jUsDGArXFqRQasUcEwUwTg0Rcutwo+pTAuGMgnoCAzhYmzv" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14885" ], + "x-ms-request-id": [ "02f054b6-6ac2-4342-a16a-1ec3424a51dd" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132156Z:02f054b6-6ac2-4342-a16a-1ec3424a51dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1005" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"name\":\"redmond/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-10-31T13:17:57.1251584Z\",\"timeTakenToCreate\":\"PT4M6.8702613S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7?api-version=2021-09-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "1c520ccb-80bd-4769-8869-5c29eb70a69c" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:27 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "19d8595a-e3fa-4cf7-ba15-478095ff235b" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHIpbsfv4sgSIz/P0DIQbrDmjnCS0RVVVRUEVx7QY8kk6Dc/VfFm+tNBcpxybdQoS/9j5tMiX5MmdaDNmjDFyqfF8vMaqKkxOYj9XhjPLzjCDT3Yrm4CZaD3i20JYVy0DenMbb74ctDXymf+njEnG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGOdbJQQJCNaaCj4x9MNS2LlzWbysQgJ4J/RU6KnYye5Bz1nLLl5ibgR52L0hZTKTkhvNPRgGHY4rgogYvUGK3JWtN1IkTFSe6O9uOK9FpeuadBJyJr5eRcB1Lt2lncSZAGpXMwjV6UpdDaqSC9CP" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14884" ], + "x-ms-request-id": [ "19d8595a-e3fa-4cf7-ba15-478095ff235b" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132157Z:19d8595a-e3fa-4cf7-ba15-478095ff235b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "863" ], + "Content-Length": [ "6172" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384\",\"name\":\"redmond/08b92613-837a-43cd-86b5-1212ef954384\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"08b92613-837a-43cd-86b5-1212ef954384\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:22:18.7883083Z\",\"timeTakenToCreate\":\"PT6M35.345912S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"name\":\"redmond/65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"65db558c-f3e5-48d5-8038-9e9cf4fcd5e7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:21:22.6433004Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false } }, - "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+3": { + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b?api-version=2021-09-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "e2e91d79-3dbd-4c47-bd06-41da189a0d5f" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "ae7bb5c3-02ef-4633-ad1a-9e80646d4259" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], "FullCommandName": [ "Get-AzsBackup_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -299,38 +650,82 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3f7ce0bc-5753-4b34-8ea5-3d731d6ac3f0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14953" ], - "x-ms-request-id": [ "3f7ce0bc-5753-4b34-8ea5-3d731d6ac3f0" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125028Z:3f7ce0bc-5753-4b34-8ea5-3d731d6ac3f0" ], + "x-ms-correlation-request-id": [ "7bcdf183-cea7-4d10-9a18-46b980f6e3d7" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpm5euspHzoZtnXAds8vm76HQ60fImysBk918ib1Ugt+ilGpnJ0EwrkpTZIlt6GVfaufT7L6Un+Egzo6GCiDc2w/vfEi7arnEeDcTqxeHoh7aBY3euTwg/ockAeuztZnwc8GheNx3vxydEyPNy2d4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14883" ], + "x-ms-request-id": [ "7bcdf183-cea7-4d10-9a18-46b980f6e3d7" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132157Z:7bcdf183-cea7-4d10-9a18-46b980f6e3d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "6172" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"name\":\"redmond/9a43c221-9a4b-45ce-9e84-d4041558147b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"9a43c221-9a4b-45ce-9e84-d4041558147b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:35:21.8587954Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62?api-version=2021-09-01+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "17" ], + "x-ms-client-request-id": [ "5a570a8c-08d0-4563-9694-abb1361033c5" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:27 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "56c47805-0afb-4d6c-a5dc-c70e3f3ef278" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgFpqb1ndrl/L/qOB8ldPmX2JWOCzwyfsWw6RginGdVpMfChrzEP98K0GIUc8g6FGksdLRNxu21M9Oobjr/A30CkCVd4or7iND3SM+k/qSPUExJrc0ENXxPXoKuOg1HfWXl2OvisoqnzLtVHahH8F" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvofcWR/+llR6cR9k/xqoZo3RNvNLYXQ3ulKJ0aCuIqNCq9dil1Aw/ixxsM/WbnUuPOYPEIt9Q0JbdpVQgLRRbjz3fJtkQ/8UPVflp78TKZ/3G1gDYBYpOEZMt7ZhuaRSzh3p+nfdteND5t4U0pC6i" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14882" ], + "x-ms-request-id": [ "56c47805-0afb-4d6c-a5dc-c70e3f3ef278" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132158Z:56c47805-0afb-4d6c-a5dc-c70e3f3ef278" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "864" ], + "Content-Length": [ "6172" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"name\":\"redmond/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:32:38.8094127Z\",\"timeTakenToCreate\":\"PT5M16.0605282S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"name\":\"redmond/c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"c5eeeeee-fddc-4729-af7b-bee63f94ff62\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T11:41:06.2024616Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"D9269CB9976D0EB0EE777D19E2FDF6A67228E562\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false } }, - "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+4": { + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7?api-version=2021-09-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "de3daaec-6df4-4e13-80c7-a431cfee66cb" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "c9c6e5a8-cf79-454c-856b-df3777d3b9f6" ], "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], "FullCommandName": [ "Get-AzsBackup_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -339,24 +734,67 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "966d5fbc-653b-4de5-bf64-25e9396dd6fd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14952" ], - "x-ms-request-id": [ "966d5fbc-653b-4de5-bf64-25e9396dd6fd" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T125028Z:966d5fbc-653b-4de5-bf64-25e9396dd6fd" ], + "x-ms-correlation-request-id": [ "38fa9144-9c56-4d1b-bbb1-b8e3e3a0d6c7" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvl+rLi7v3NJqKhztdbwsLKUOYX1/opOA/M7u6b4UWbydhauURK+ELSqdkIKyoRELvQjUl1aBZwU4pfFYwUCb4IuBBtjVoGZsev86o00QEgSVnMcXGKZo8P1Mvn3bobxlkM/UDBCG5RelCY9Ei9Xzx" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14881" ], + "x-ms-request-id": [ "38fa9144-9c56-4d1b-bbb1-b8e3e3a0d6c7" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132158Z:38fa9144-9c56-4d1b-bbb1-b8e3e3a0d6c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "6172" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/e5f29854-6021-4804-b844-745dfda728c7\",\"name\":\"redmond/e5f29854-6021-4804-b844-745dfda728c7\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"e5f29854-6021-4804-b844-745dfda728c7\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-31T13:03:39.9339885Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false + } + }, + "Get-AzsBackup+[NoContext]+TestGetBackupViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b?api-version=2021-09-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "5579d7e7-bba7-4941-aca0-74969db5025b" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Get-AzsBackup" ], + "FullCommandName": [ "Get-AzsBackup_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:50:28 GMT" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "d6494dd4-64c8-4a23-a14e-51703f2246e8" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSzcX48OwpUEUys98E9nvBMKG8UhMHs8s6qSI9x0BJUISli1CMItmXVZ7wXd/5QAZ0FEfOz0cElmDZP4j+xFnYTDsgpAEGxPdlX85KgowryoiCQAzb2cw1gjW/ADDOKe1F9reqE4DiAaBaJqFbTX9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+O6WXyX09otgqVr7W/A/yuMRr8VL++Xl8im6XK6ER0sLE14G7RBt31/8RaroJ6tDyHsfw35x+WNGe+sKQ2CTdSQeDRQa60yMwifxNaigar/ov0F9HTLKAuNtd2JVptAkD1xG2eTnwFIxpJicWVs4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14880" ], + "x-ms-request-id": [ "d6494dd4-64c8-4a23-a14e-51703f2246e8" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T132159Z:d6494dd4-64c8-4a23-a14e-51703f2246e8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 13:21:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "864" ], + "Content-Length": [ "6171" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"name\":\"redmond/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"69ebefe9-7b1b-414a-99ad-49edf061d845\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:42:50.0310854Z\",\"timeTakenToCreate\":\"PT5M15.1452343S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"name\":\"redmond/eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"eb9346ce-f024-41fe-874c-0306bf1d9f3b\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"},{\"roleName\":\"CertificateManagement\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CertificateManagement;CertificateManagement;-;Certificates\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CPI\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CPI;AvailabilitySetController;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;ClusterOrchestrator;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;DataService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;TopologyManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CPI;VmOrchestrator;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Domain\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Domain;ServerBackup;-;DomainController\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DeploymentProvider\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;TableStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrp\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"DeploymentProvider;DeploymentProvider;-;BlobStore_deploymentrpcrl\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"WAS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"WAS;WasService;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Subscriptions\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"WAS;WasService;-;Microsoft.AzureStack.Commerce\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SupportBridgeController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SupportBridgeController;SupportBridgeController;-;SupportBridge\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"SRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"SRP;SRP;-;-\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"SRP;SrpStatefulService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalControlPlane;KeyVaultInternalControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ECE\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ECE;ECE;-;ECEDeploymentParameters\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"ECE;EnterpriseCloudEngineService;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultInternalDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultInternalDataPlane;KeyVaultInternalDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"InfraServiceController\",\"repositoryStatus\":[{\"fullRepositoryName\":\"InfraServiceController;ISManager;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NRP;Microsoft.Network.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;FrontendService;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"NRP;DnsOrchestrator;-;RC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"IBC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"IBC;IBC;-;Configs\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"DiskRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"DiskRP;DiskManagerService;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"AzureStackBitlocker\",\"repositoryStatus\":[{\"fullRepositoryName\":\"AzureStackBitlocker;Bitlocker;-;RecoveryKeys\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACS\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACS;WAC;-;WAC\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"ACSSettingsService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"ACSSettingsService;SettingsService;-;Settings\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultDataPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultDataPlane;KeyVaultDataPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"CRP\",\"repositoryStatus\":[{\"fullRepositoryName\":\"CRP;Microsoft.Compute.Admin;-;Quota\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CARP;-;RC\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;CRP;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;DiagnosabilityManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;ExtensionManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;IsoManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;MetadataServer;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;NetworkManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;PlatformImageRepository;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;StorageContainerLeaser;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UsageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;UserImageManager;-;KVS\",\"status\":\"Failed\"},{\"fullRepositoryName\":\"CRP;BlobSasManager;-;KVS\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"Cluster\",\"repositoryStatus\":[{\"fullRepositoryName\":\"Cluster;ClusterDB;-;ClusterDB\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"KeyVaultControlPlane\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultControlPlane;KeyVaultControlPlane;-;-\",\"status\":\"Failed\"}],\"status\":\"Failed\"},{\"roleName\":\"NC\",\"repositoryStatus\":[{\"fullRepositoryName\":\"NC;NC;-;IBCBackup\",\"status\":\"Failed\"}],\"status\":\"Failed\"}],\"status\":\"PartialSucceeded\",\"createdDateTime\":\"2021-10-30T03:43:04.4987803Z\",\"timeTakenToCreate\":\"PT0S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptionCertThumbprint\":\"67DB85A6E700C72032B4C5A92357AA94022DA06E\",\"completelyUploaded\":true,\"isAutomaticBackup\":true,\"isCloudRecoveryReady\":false}}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Get-AzsBackupConfiguration.Recording.json b/src/Azs.Backup.Admin/test/Get-AzsBackupConfiguration.Recording.json index 62b98213..3df4b45b 100644 --- a/src/Azs.Backup.Admin/test/Get-AzsBackupConfiguration.Recording.json +++ b/src/Azs.Backup.Admin/test/Get-AzsBackupConfiguration.Recording.json @@ -1,16 +1,17 @@ { - "Get-AzsBackupConfiguration+[NoContext]+TestListBackupLocation+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2018-09-01\u0026$top=10+1": { + "Get-AzsBackupConfiguration+[NoContext]+TestListBackupLocation+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2021-09-01\u0026$top=10+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2018-09-01\u0026$top=10", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2021-09-01\u0026$top=10", "Content": null, + "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "a6850a4f-f255-4803-b7a4-2257fc7cbeac" ], + "x-ms-client-request-id": [ "8308d321-7e1d-4eac-ab72-4cc84b4654ca" ], "CommandName": [ "Get-AzsBackupConfiguration" ], "FullCommandName": [ "Get-AzsBackupConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,38 +20,40 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fbdee304-a67e-468f-9ccb-f1ed7189d973" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14963" ], - "x-ms-request-id": [ "fbdee304-a67e-468f-9ccb-f1ed7189d973" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121450Z:fbdee304-a67e-468f-9ccb-f1ed7189d973" ], + "x-ms-correlation-request-id": [ "e2c0e7d9-3b7f-413c-9852-3ec41d9084f0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCzj8mWUnMhT0Kj+G4h93S8M8mHTU86dfwVkbyWvK48J1SKihSGDLPWEDteZ1btgFBPTltNpVS1LmbZzXqHayE++ydCuH91PKL43I2KCqnO7ZjCFSWgSne66UsLxBHnMJQU/HMgUVabNaj1qJm3ou" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14950" ], + "x-ms-request-id": [ "e2c0e7d9-3b7f-413c-9852-3ec41d9084f0" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125746Z:e2c0e7d9-3b7f-413c-9852-3ec41d9084f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:14:50 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDgszoa7sPqaRi/VNLnoKGJvBwwxJ5U92QeEq7zjb08XwKn04I/z5JM2dTV87k++GhPRLOj/uZg7NJGRFiSdf8A9y8b2fDdKbMd0LbWHRIdQZpr/UFREIziU2pu0l91Xk0yCN78WDbHj/xYGrZJ4K" ] + "Date": [ "Sun, 31 Oct 2021 12:57:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "709" ], + "Content-Length": [ "813" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"1.00 TB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2020-03-04T21:19:26.9917619Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6}}}],\"nextLink\":null}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T00:22:07.6635047Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}],\"nextLink\":null}", + "isContentBase64": false } }, - "Get-AzsBackupConfiguration+[NoContext]+TestGetBackupLocation+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2018-09-01\u0026$top=10+1": { + "Get-AzsBackupConfiguration+[NoContext]+TestGetBackupLocation+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2021-09-01\u0026$top=10+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2018-09-01\u0026$top=10", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2021-09-01\u0026$top=10", "Content": null, + "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "2" ], - "x-ms-client-request-id": [ "e8a0e95a-9923-440f-8be6-3859776d31ed" ], + "x-ms-client-request-id": [ "c6f22d74-ed3a-41c2-8b4e-9e6b0f7b5d30" ], "CommandName": [ "Get-AzsBackupConfiguration" ], "FullCommandName": [ "Get-AzsBackupConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -59,38 +62,40 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "22be3084-b538-42ce-acc1-566974f1c35d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14961" ], - "x-ms-request-id": [ "22be3084-b538-42ce-acc1-566974f1c35d" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121452Z:22be3084-b538-42ce-acc1-566974f1c35d" ], + "x-ms-correlation-request-id": [ "2725a8bc-0930-4d78-83e0-223ad7493fa2" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVVXNeEQUo8pzBrKRimVTDb4RRQXD+NFg8Rgxj405op9/9FKnBDUS/227TKWB0CVKFZl87TEY4BvdaaasiI+GGHk31P2RCNvyp0BCyZtahHi98G3P/xXxcm1I7aRv5UdYlcWZDlv5wUNntvCYl3J4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14949" ], + "x-ms-request-id": [ "2725a8bc-0930-4d78-83e0-223ad7493fa2" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125747Z:2725a8bc-0930-4d78-83e0-223ad7493fa2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:14:52 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv63dTpvAd8EwXOacbonDG6p/N3Rz2Otc+TEYvxaOEVb3Eq6bAa2/D9UdEexIHvOPC6EfOkX6at4BsM9Gnz0ERYQO0DZ381LwzV6YDZacgs1SJK89DJcpDVoAV/fmKO3WZK+j0qGIgXtE2L9D5522z" ] + "Date": [ "Sun, 31 Oct 2021 12:57:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "709" ], + "Content-Length": [ "813" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"1.00 TB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2020-03-04T21:19:26.9917619Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6}}}],\"nextLink\":null}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T00:22:07.6635047Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}],\"nextLink\":null}", + "isContentBase64": false } }, - "Get-AzsBackupConfiguration+[NoContext]+TestGetBackupLocation+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01+2": { + "Get-AzsBackupConfiguration+[NoContext]+TestGetBackupLocation+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "a3029a3b-d30d-48ba-abf4-8884f7577052" ], + "x-ms-client-request-id": [ "8173a8ba-c4ad-40a1-9d17-a22c3eaf1737" ], "CommandName": [ "Get-AzsBackupConfiguration" ], "FullCommandName": [ "Get-AzsBackupConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -99,38 +104,40 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2109400f-b06b-4553-8f7d-e87e994f3b4f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14959" ], - "x-ms-request-id": [ "2109400f-b06b-4553-8f7d-e87e994f3b4f" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121454Z:2109400f-b06b-4553-8f7d-e87e994f3b4f" ], + "x-ms-correlation-request-id": [ "a01aa851-c4b2-4bf9-92f1-5c75618b66ac" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhscfpd9JaGYeYhh7POViwWPxmr5EtPYU+wSkweubGFo2yvV7Mmi8hNiQI7zM0hMlMJv5p6gX/4IV2KXAAqiLdpqLz69ESVKUnOHvrH3eV9sNvMNZ9as1D+A+fUKl1r1+dnnBaNtb6iuohfQtlW4v" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14948" ], + "x-ms-request-id": [ "a01aa851-c4b2-4bf9-92f1-5c75618b66ac" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125747Z:a01aa851-c4b2-4bf9-92f1-5c75618b66ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:14:54 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1D5hBZA/z1ZkOAklY4/+5d/cZyjRW9U0q9sqXjJLab+EKZHDrKR3zqHJw0tjlUZ3ixsactgPNb/DrHkcH3kpmfRebYVItQifEk4+/vIQyP316SBwr+5RJu+mAS368lEbH5+84GSfF5wayi3TcjjE" ] + "Date": [ "Sun, 31 Oct 2021 12:57:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "681" ], + "Content-Length": [ "785" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"1.00 TB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2020-03-04T21:19:26.9917619Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T00:22:07.6635047Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsBackupConfiguration+[NoContext]+TestGetBackupLocationViaIdentity+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2018-09-01\u0026$top=10+1": { + "Get-AzsBackupConfiguration+[NoContext]+TestGetBackupLocationViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2021-09-01\u0026$top=10+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2018-09-01\u0026$top=10", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations?api-version=2021-09-01\u0026$top=10", "Content": null, + "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "c20ed344-1a82-4caa-9589-911de7809afa" ], + "x-ms-client-request-id": [ "f9567231-eeac-4fef-b604-50f5a56f984f" ], "CommandName": [ "Get-AzsBackupConfiguration" ], "FullCommandName": [ "Get-AzsBackupConfiguration_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -139,38 +146,40 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a4a10098-462d-49fe-ad44-ebdfcddbc090" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14957" ], - "x-ms-request-id": [ "a4a10098-462d-49fe-ad44-ebdfcddbc090" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121456Z:a4a10098-462d-49fe-ad44-ebdfcddbc090" ], + "x-ms-correlation-request-id": [ "7935ce59-6285-4884-9148-d3b99b4ad89d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZmu+gCMnNyNINwkDHX1OrNS1SynpEvF3ByDYliPuve+UWV2a5KNRtsC7fZ7nZGMdoHUfD4qj+eOKMzV2DCTW01fU3pbv+udySQf33hhenOWFl+fBel3ZvWlILgUguGPlMuP00W4Csh9/kx+zAxdz" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14947" ], + "x-ms-request-id": [ "7935ce59-6285-4884-9148-d3b99b4ad89d" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125748Z:7935ce59-6285-4884-9148-d3b99b4ad89d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:14:56 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTC9lQnRmBr5yLocuUJuEQtUUYsvnpbSJ9MCaSwbwbuN+IJ6L3Itx6kZjiUFIWfK10xf9Tm0vQ1z7LYmaowNgh6oSIYEMkOsp/IQBA4GnpYFSdtOtHg4ycyU61IfrVEB2XENho14mcw95LW4OKO+a" ] + "Date": [ "Sun, 31 Oct 2021 12:57:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "709" ], + "Content-Length": [ "813" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"1.00 TB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2020-03-04T21:19:26.9917619Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6}}}],\"nextLink\":null}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T00:22:07.6635047Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}],\"nextLink\":null}", + "isContentBase64": false } }, - "Get-AzsBackupConfiguration+[NoContext]+TestGetBackupLocationViaIdentity+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01+2": { + "Get-AzsBackupConfiguration+[NoContext]+TestGetBackupLocationViaIdentity+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "5" ], - "x-ms-client-request-id": [ "b3dc7016-8c8d-42f8-855b-8d9dab6bc5d4" ], + "x-ms-client-request-id": [ "b4dd34f5-10d4-4b4a-93ed-1f19d26abc38" ], "CommandName": [ "Get-AzsBackupConfiguration" ], "FullCommandName": [ "Get-AzsBackupConfiguration_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -179,24 +188,25 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5766f75e-0e17-4e88-a09f-b09f22cce90c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14956" ], - "x-ms-request-id": [ "5766f75e-0e17-4e88-a09f-b09f22cce90c" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121457Z:5766f75e-0e17-4e88-a09f-b09f22cce90c" ], + "x-ms-correlation-request-id": [ "729e1792-2200-406c-8d7d-d5a540a7282b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxxbA0VEOKAe1ihKzGT1xGY+lVt0ZLy5SMz9M1Oy+FEfJpxt81u/kfW8/qgtKYH7NWUessJePHeaftw+yqPHVU3P+IyZLs98TW0/WxkUogRhhbWV2w+10l48PqVCxv/sDoBScp3oBD+D1tAJIK1b8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14946" ], + "x-ms-request-id": [ "729e1792-2200-406c-8d7d-d5a540a7282b" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125748Z:729e1792-2200-406c-8d7d-d5a540a7282b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:14:56 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzs5du/ImFyZNC8qP9bDFs8s/PDzJPNbNjNDGYvLCMo/6QVokVlxFvhVdNHd3t0tkGe45U7ToNOSGauvzbk5l6XyNjOWhU3s8wwjGjtHet63KcuDYwpq2eyO8XUD6cj/CvQndCD1AJfESDYBx4oA4" ] + "Date": [ "Sun, 31 Oct 2021 12:57:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "681" ], + "Content-Length": [ "785" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"1.00 TB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2020-03-04T21:19:26.9917619Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T00:22:07.6635047Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Invoke-AzsPruneBackupLocationExternalStore.Recording.json b/src/Azs.Backup.Admin/test/Invoke-AzsPruneBackupLocationExternalStore.Recording.json index f840ef92..ec72026f 100644 --- a/src/Azs.Backup.Admin/test/Invoke-AzsPruneBackupLocationExternalStore.Recording.json +++ b/src/Azs.Backup.Admin/test/Invoke-AzsPruneBackupLocationExternalStore.Recording.json @@ -1,9 +1,10 @@ { - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$POST+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2018-09-01+1": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$POST+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2021-09-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2018-09-01", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2021-09-01", "Content": "{\r\n \"operationType\": \"DryRun\"\r\n}", + "isContentBase64": false, "Headers": { }, "ContentHeaders": { @@ -14,41 +15,43 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/b5638817-a568-44c6-b556-a2655e1d2a9c?api-version=2021-09-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6253763c-81c5-4301-ab5e-4986f955603c?api-version=2018-09-01\u0026IsAsyncOperation=1" ], - "x-ms-correlation-request-id": [ "81714503-3d4b-4348-b154-12897719e43b" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-request-id": [ "81714503-3d4b-4348-b154-12897719e43b" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T032850Z:81714503-3d4b-4348-b154-12897719e43b" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/b5638817-a568-44c6-b556-a2655e1d2a9c?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "30a31afb-0618-45e6-9031-d3a8d3885381" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoNsIdHTPJpPsSp3nZ0kd4jA4hHmBhP0aHiYTOQVYsEh0Sp2clmzEhIP/KDWujKJmsxmW6Iv2aP/s1TP0LeI9VP7rLXSFD5/CL4Mi26wEDlzQRq7QmsFSayJm4lmHG3hsXggOMGcsRqQ12McTd2G3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-request-id": [ "30a31afb-0618-45e6-9031-d3a8d3885381" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T034808Z:30a31afb-0618-45e6-9031-d3a8d3885381" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:28:50 GMT" ], - "Location": [ "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6253763c-81c5-4301-ab5e-4986f955603c?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvR6PI5alfqfl6Z+ncGc8awEvB8rqOb/rpcRismNCa1yX+9IkLD7R71E80frpdRUB8306XlxQC4K9XOl49bQbFxbBgi5yR7Nko+5UNjJo8Qb7fHKdAZvUEFBg2hv6oKS/Evtu+rrScnKZE9gZy77H8" ] + "Date": [ "Mon, 01 Nov 2021 03:48:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6253763c-81c5-4301-ab5e-4986f955603c?api-version=2018-09-01\u0026IsAsyncOperation=1+2": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/b5638817-a568-44c6-b556-a2655e1d2a9c?api-version=2021-09-01\u0026IsAsyncOperation=1+2": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6253763c-81c5-4301-ab5e-4986f955603c?api-version=2018-09-01\u0026IsAsyncOperation=1", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/b5638817-a568-44c6-b556-a2655e1d2a9c?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "43" ], - "x-ms-client-request-id": [ "8a209d7e-0838-4b78-ad58-7af12c0154a9" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "41c347af-f4a2-4a5e-b99d-c2dc4c3e6a6a" ], "CommandName": [ "Invoke-AzsPruneBackupLocationExternalStore" ], "FullCommandName": [ "Invoke-AzsPruneBackupLocationExternalStore_PruneExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -56,39 +59,41 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "886022d1-e017-4c54-8bf5-db2d9dceb722" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14843" ], - "x-ms-request-id": [ "886022d1-e017-4c54-8bf5-db2d9dceb722" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T032951Z:886022d1-e017-4c54-8bf5-db2d9dceb722" ], + "x-ms-correlation-request-id": [ "4d0947bc-26ba-459b-a100-315bed6dd0d0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBjVmteXYmUXRQe0c7xULaUWkGZeVt5R/CUYL29/hb1qJgRx8cSyHUfnLnvVi2/JMPGylGOnwHZCTRC329Y11nvog1UcTEWLxi56rMGyEm3SRjbMdqFsXitcG5g7L0atmYc8JY5Nhi3Uw97vX2vI5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14281" ], + "x-ms-request-id": [ "4d0947bc-26ba-459b-a100-315bed6dd0d0" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T034909Z:4d0947bc-26ba-459b-a100-315bed6dd0d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:29:50 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLeG35wb3iOEeACmfKXWc7LICUKuvuhQ7eheiL5TLFy/bOyzD1Vu+ht8PCEI/QcXARj2z65PGQ1ITSTlGsX9yebDA7szD3+RhWNNh34U5s3Ltq+BlyUFvAg0apUDwx9K+/Xn+6wbLYa/A9cmxcHwV" ] + "Date": [ "Mon, 01 Nov 2021 03:49:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "273" ], + "Content-Length": [ "285" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"pathsToDelete\":[\"masbackup/progressivebackup/BackupEncryptionCert.pfx\"]}}" + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"pathsToDelete\":[\"masbackup/progressivebackup/1.2108.0.32/BackupEncryptionCert.pfx\"]}}", + "isContentBase64": false } }, - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6253763c-81c5-4301-ab5e-4986f955603c?api-version=2018-09-01+3": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/b5638817-a568-44c6-b556-a2655e1d2a9c?api-version=2021-09-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6253763c-81c5-4301-ab5e-4986f955603c?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/b5638817-a568-44c6-b556-a2655e1d2a9c?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "8a209d7e-0838-4b78-ad58-7af12c0154a9" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "41c347af-f4a2-4a5e-b99d-c2dc4c3e6a6a" ], "CommandName": [ "Invoke-AzsPruneBackupLocationExternalStore" ], "FullCommandName": [ "Invoke-AzsPruneBackupLocationExternalStore_PruneExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -96,31 +101,33 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2d0a8e7b-5661-41fe-8978-5b6456cdf837" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14842" ], - "x-ms-request-id": [ "2d0a8e7b-5661-41fe-8978-5b6456cdf837" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T032951Z:2d0a8e7b-5661-41fe-8978-5b6456cdf837" ], + "x-ms-correlation-request-id": [ "ca61760f-8544-4d40-b7ae-15a21fa2ec1d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv337Ixi6clfY+NuvbcZD3q8d1uVEuGMsK8zZUt9kYysVcDH5QqZ+55AljjyUc6aRXfvniKGk80+QWCblHYIMsZvOCydq+RVE60digvRdHl8FFMVtbl8PXI6EKfn+xfAQrqEaA22xOiTBwa/hyekmf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14280" ], + "x-ms-request-id": [ "ca61760f-8544-4d40-b7ae-15a21fa2ec1d" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T034909Z:ca61760f-8544-4d40-b7ae-15a21fa2ec1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:29:51 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvMAw2FnOHZAROvQbHywuFfTcFMI+c04JCp/dGVd2jRozUf+5xKl6xDpp7/JS/SkrQA5C/zR+9FfjR20wfO6u4QJh60xOUYqQLb/jGYEoD/fJaWsAOQyKbmCflzO8onIOfOwdnvwTmI4l38zmG2zX" ] + "Date": [ "Mon, 01 Nov 2021 03:49:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "331" ], + "Content-Length": [ "343" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"pathsToDelete\":[\"masbackup/progressivebackup/BackupEncryptionCert.pfx\"]}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"pathsToDelete\":[\"masbackup/progressivebackup/1.2108.0.32/BackupEncryptionCert.pfx\"]}}", + "isContentBase64": false } }, - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$POST+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2018-09-01+4": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$POST+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2021-09-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2018-09-01", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2021-09-01", "Content": "{\r\n}", + "isContentBase64": false, "Headers": { }, "ContentHeaders": { @@ -131,41 +138,43 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/99c95614-2927-42fa-8237-9c6f24b20723?api-version=2021-09-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/f1d19191-1fda-4526-9957-77fcb7d04346?api-version=2018-09-01\u0026IsAsyncOperation=1" ], - "x-ms-correlation-request-id": [ "00b9cf33-a53d-4482-b8c4-ec21b86beb74" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-request-id": [ "00b9cf33-a53d-4482-b8c4-ec21b86beb74" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T032957Z:00b9cf33-a53d-4482-b8c4-ec21b86beb74" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/99c95614-2927-42fa-8237-9c6f24b20723?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "64865bfe-d97b-43cc-8c65-0fcab1600973" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5VFVJeNzRXm9+o43ehsoNfx73lwYx+SE2/0Xy5xglHRhFPf1aAKGFDIW5q/+GuAahAMtU68W/r16NYPUPaYV2RqAFO05j06QNmMsgFq+7v/uT/mEsvZpICtaqTEnIuFUB3/4ISBj2nt+1Yz89EwB" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-request-id": [ "64865bfe-d97b-43cc-8c65-0fcab1600973" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T034909Z:64865bfe-d97b-43cc-8c65-0fcab1600973" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:29:57 GMT" ], - "Location": [ "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/f1d19191-1fda-4526-9957-77fcb7d04346?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDgPpcyEKcGKzfBSBoKNCaEmh71+EZEVapjhpMjgaSacR17k2c3FFrILEchlnYRVVwP8MwQJ3k4WJbmCUyWSZPStLyVrAfS56bicGyrRzLOjIHUnFtCnxY/vw2ZF/STPiNRizLa02eG4DT5yR+hNn" ] + "Date": [ "Mon, 01 Nov 2021 03:49:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/f1d19191-1fda-4526-9957-77fcb7d04346?api-version=2018-09-01\u0026IsAsyncOperation=1+5": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/99c95614-2927-42fa-8237-9c6f24b20723?api-version=2021-09-01\u0026IsAsyncOperation=1+5": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/f1d19191-1fda-4526-9957-77fcb7d04346?api-version=2018-09-01\u0026IsAsyncOperation=1", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/99c95614-2927-42fa-8237-9c6f24b20723?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "46" ], - "x-ms-client-request-id": [ "32de23e4-9fb4-46f4-919b-2ff2d1ef3bb4" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "63813cd1-9e20-4279-a997-03efe6e6d2d9" ], "CommandName": [ "Invoke-AzsPruneBackupLocationExternalStore" ], "FullCommandName": [ "Invoke-AzsPruneBackupLocationExternalStore_PruneExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -173,39 +182,41 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "18d077e8-ca02-4e2b-965d-896058f4f903" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14849" ], - "x-ms-request-id": [ "18d077e8-ca02-4e2b-965d-896058f4f903" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T033058Z:18d077e8-ca02-4e2b-965d-896058f4f903" ], + "x-ms-correlation-request-id": [ "70e42522-02b0-4f09-9fb0-d7cf75947ab7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14344" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7AalztBSw/NKXiFahVpZdQ3hfnprZhC4QUFTmp/GV1ybjSglWOVo59vaTAOnEXdnxGJO7IeB8QtEcgY/8DYVS3v/55UfvkNC+aMUdHldt9CRDZi+8x3UTj+Gt2PBWWEJYoyFcfrVhFHesM5FEvkr" ], + "x-ms-request-id": [ "70e42522-02b0-4f09-9fb0-d7cf75947ab7" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T035010Z:70e42522-02b0-4f09-9fb0-d7cf75947ab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:30:57 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjbPsEYHUtU9E07jmMM9ciDVAOElNS3TVOfvTbvezY0nOEfvnJkLD22S6ghWbnlQF9otnPutHiU5PkYSGv1ooJYa7pJBe9Qqfb1tUKLzxw+ITGROqGZ0YKXDCiN7hiiXHcpnRofb+otNLEiaFYjmD" ] + "Date": [ "Mon, 01 Nov 2021 03:50:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "273" ], + "Content-Length": [ "285" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"pathsToDelete\":[\"masbackup/progressivebackup/BackupEncryptionCert.pfx\"]}}" + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"pathsToDelete\":[\"masbackup/progressivebackup/1.2108.0.32/BackupEncryptionCert.pfx\"]}}", + "isContentBase64": false } }, - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/f1d19191-1fda-4526-9957-77fcb7d04346?api-version=2018-09-01+6": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/99c95614-2927-42fa-8237-9c6f24b20723?api-version=2021-09-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/f1d19191-1fda-4526-9957-77fcb7d04346?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/99c95614-2927-42fa-8237-9c6f24b20723?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "47" ], - "x-ms-client-request-id": [ "32de23e4-9fb4-46f4-919b-2ff2d1ef3bb4" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "63813cd1-9e20-4279-a997-03efe6e6d2d9" ], "CommandName": [ "Invoke-AzsPruneBackupLocationExternalStore" ], "FullCommandName": [ "Invoke-AzsPruneBackupLocationExternalStore_PruneExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -213,31 +224,33 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bbb8382f-89ea-46cc-9b85-264d31964142" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14848" ], - "x-ms-request-id": [ "bbb8382f-89ea-46cc-9b85-264d31964142" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T033058Z:bbb8382f-89ea-46cc-9b85-264d31964142" ], + "x-ms-correlation-request-id": [ "838d8f4f-570c-4e91-a785-050985745d98" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBjwblBeWzuQwUzM6ZOYKu+T8C0CKlIDH5aRO9XcDbLZZ0EXC1j65PMBOq+cz1a0pCIvJtDPky/cdAn6EufFxmW+bv15Kw0Jb4TgpYoxKhgWQ/8CgQ6AtroKs5JcvuUMzYnvV3s4hTwDOv99fCPNU" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14343" ], + "x-ms-request-id": [ "838d8f4f-570c-4e91-a785-050985745d98" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T035010Z:838d8f4f-570c-4e91-a785-050985745d98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:30:57 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvtB/Qkp421rtTV53xv4NhP73EbDmVbRDKwLOTCVk1ka4+Dysqzk/IFwRtM7aYFEOdkCb+mB71VrAb++axp7y41AV6wC++kgUUvEoGxNlCJ4yt/t6MOB4wAn1e0FK8M9WPGA+3GwKLtJW+Gcu6UNa" ] + "Date": [ "Mon, 01 Nov 2021 03:50:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "331" ], + "Content-Length": [ "343" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"pathsToDelete\":[\"masbackup/progressivebackup/BackupEncryptionCert.pfx\"]}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"pathsToDelete\":[\"masbackup/progressivebackup/1.2108.0.32/BackupEncryptionCert.pfx\"]}}", + "isContentBase64": false } }, - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$POST+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2018-09-01+7": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$POST+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2021-09-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2018-09-01", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/pruneExternalStore?api-version=2021-09-01", "Content": "{\r\n}", + "isContentBase64": false, "Headers": { }, "ContentHeaders": { @@ -248,41 +261,43 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/fd5f23ab-3aad-48df-a7b7-1db1467ab30b?api-version=2021-09-01" ], "Retry-After": [ "60" ], - "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6d27a6c8-6f0a-496c-a2d3-ddd88f34fa0d?api-version=2018-09-01\u0026IsAsyncOperation=1" ], - "x-ms-correlation-request-id": [ "db3dcf24-04d1-4e12-88f1-e25c58437cde" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-request-id": [ "db3dcf24-04d1-4e12-88f1-e25c58437cde" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T033104Z:db3dcf24-04d1-4e12-88f1-e25c58437cde" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/fd5f23ab-3aad-48df-a7b7-1db1467ab30b?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "2ad20ffb-48e7-4b3b-89bf-3b23c315f8af" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoLRfRPCRRlhx7Q0W9EYm5D6lzPeu0mZAqYNcmsjzMy9aWgZCGF6vkvLq8aV+mukVB+YqPX6DjAwAujx0Hl+4uUJTnIElLhsLD26oAlI8joZsHCXv2uKx6H0K5lT4Z6rCeo6eAdlynFo5IxnqNvo5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-request-id": [ "2ad20ffb-48e7-4b3b-89bf-3b23c315f8af" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T035010Z:2ad20ffb-48e7-4b3b-89bf-3b23c315f8af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:31:03 GMT" ], - "Location": [ "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6d27a6c8-6f0a-496c-a2d3-ddd88f34fa0d?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHosj4GYBagpr2RwRfwCHdd7PYsIFnt2UOe45hr40cScRPPsKkQ8Fupya2baPqt3Xw8wxD0ak8iTXBlPoWTlykCTJF/G+egux1omb1KtkDYt1e7THe7pTkqeIf/VSJfmOM66Vzw52FhQAeazJzvgg" ] + "Date": [ "Mon, 01 Nov 2021 03:50:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6d27a6c8-6f0a-496c-a2d3-ddd88f34fa0d?api-version=2018-09-01\u0026IsAsyncOperation=1+8": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/fd5f23ab-3aad-48df-a7b7-1db1467ab30b?api-version=2021-09-01\u0026IsAsyncOperation=1+8": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6d27a6c8-6f0a-496c-a2d3-ddd88f34fa0d?api-version=2018-09-01\u0026IsAsyncOperation=1", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/fd5f23ab-3aad-48df-a7b7-1db1467ab30b?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "e088c404-c7e3-45fb-8de3-4097f75efedf" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "b7161aa5-98f4-4cef-a6e1-143d569fceb7" ], "CommandName": [ "Invoke-AzsPruneBackupLocationExternalStore" ], "FullCommandName": [ "Invoke-AzsPruneBackupLocationExternalStore_PruneExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -290,39 +305,41 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3e9dfde5-8407-4c6e-85e7-9eafd419bcfd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14845" ], - "x-ms-request-id": [ "3e9dfde5-8407-4c6e-85e7-9eafd419bcfd" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T033204Z:3e9dfde5-8407-4c6e-85e7-9eafd419bcfd" ], + "x-ms-correlation-request-id": [ "d2e8b218-d24e-436a-bca8-f00fa90b3945" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14338" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1Fvd0Yqc3EYwJJTyVuiL/wB+c6tBceCYQrgZBvAngIAeFc8Y0bTK7v3D4HCN7i+gcXEPNjGLL/pP4P4dLKVF1Ri0hZaOossFYu7Se8jP5p+ayRznOUOwZvAim0Jbi2MxXkVxWMni2EWyFC9VDkbV" ], + "x-ms-request-id": [ "d2e8b218-d24e-436a-bca8-f00fa90b3945" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T035111Z:d2e8b218-d24e-436a-bca8-f00fa90b3945" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:32:04 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvf+8KyYqcOw2RIqimLelujhzndz1bIJGq7sf4zWdOgB6FQz9VdjDgI+fGDpcOldREf548THM13UKKey5h5uTHbhYmdpm1zf+Dn/DG0OEz+wnS5+npo5L+swP3ft6Y9C2fJ6dR/VpaTbsY10Cl03vR" ] + "Date": [ "Mon, 01 Nov 2021 03:51:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"pathsToDelete\":[]}}" + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"pathsToDelete\":[]}}", + "isContentBase64": false } }, - "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6d27a6c8-6f0a-496c-a2d3-ddd88f34fa0d?api-version=2018-09-01+9": { + "Invoke-AzsPruneBackupLocationExternalStore+[NoContext]+TestPrune+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/fd5f23ab-3aad-48df-a7b7-1db1467ab30b?api-version=2021-09-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6d27a6c8-6f0a-496c-a2d3-ddd88f34fa0d?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/fd5f23ab-3aad-48df-a7b7-1db1467ab30b?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "e088c404-c7e3-45fb-8de3-4097f75efedf" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "b7161aa5-98f4-4cef-a6e1-143d569fceb7" ], "CommandName": [ "Invoke-AzsPruneBackupLocationExternalStore" ], "FullCommandName": [ "Invoke-AzsPruneBackupLocationExternalStore_PruneExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -330,24 +347,25 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dbe97585-d57a-4816-ae9f-2e8cb001e4f6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14844" ], - "x-ms-request-id": [ "dbe97585-d57a-4816-ae9f-2e8cb001e4f6" ], - "x-ms-routing-request-id": [ "REDMOND:20201126T033205Z:dbe97585-d57a-4816-ae9f-2e8cb001e4f6" ], + "x-ms-correlation-request-id": [ "31835cc0-d2c0-46fe-a485-9fff7f675562" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvon6xLtwXRIf75I4gtuK/Y1QMbYP6iBXGdZbjm18jESpMo5+IURfns9kVLmEb2jEeR6NHLokZ7PWISMQ82dtqmx5MuH6u+qMrV/PhG3WIGKwcGpxNQs0TKalS397Ju5b41EPMK3SZ4huPn0GlL/4+" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14337" ], + "x-ms-request-id": [ "31835cc0-d2c0-46fe-a485-9fff7f675562" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T035111Z:31835cc0-d2c0-46fe-a485-9fff7f675562" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 26 Nov 2020 03:32:04 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRGUs27ir1MfIPGldd9T3STWK4HgZn6FqegjZ8sfMil69aujlK61+c3n/ad5/EX0JdUZeEaKJg47r/Tufe2lCHzGOctj5YAykbAEcI1+dcEky5RmurfslAhswj0lBXv17fspJNuJ1PGatpdIcRPlh" ] + "Date": [ "Mon, 01 Nov 2021 03:51:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "277" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"pathsToDelete\":[]}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"pathsToDelete\":[]}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Invoke-AzsPruneBackupLocationExternalStore.Tests.ps1 b/src/Azs.Backup.Admin/test/Invoke-AzsPruneBackupLocationExternalStore.Tests.ps1 index c20d1210..664429aa 100644 --- a/src/Azs.Backup.Admin/test/Invoke-AzsPruneBackupLocationExternalStore.Tests.ps1 +++ b/src/Azs.Backup.Admin/test/Invoke-AzsPruneBackupLocationExternalStore.Tests.ps1 @@ -14,11 +14,11 @@ Describe 'Invoke-AzsPruneBackupLocationExternalStore' { $res = Invoke-AzsPruneBackupLocationExternalStore -OperationType DryRun $res | Should Not Be $null - $res[0] | Should Be "masbackup/progressivebackup/BackupEncryptionCert.pfx" + $res[0] | Should Be "MASBackup/progressivebackup/1.2108.0.32/BackupEncryptionCert.pfx" $res = Invoke-AzsPruneBackupLocationExternalStore $res | Should Not Be $null - $res[0] | Should Be "masbackup/progressivebackup/BackupEncryptionCert.pfx" + $res[0] | Should Be "MASBackup/progressivebackup/1.2108.0.32/BackupEncryptionCert.pfx" $res = Invoke-AzsPruneBackupLocationExternalStore $res | Should Be $null diff --git a/src/Azs.Backup.Admin/test/README.md b/src/Azs.Backup.Admin/test/README.md new file mode 100644 index 00000000..7c752b4c --- /dev/null +++ b/src/Azs.Backup.Admin/test/README.md @@ -0,0 +1,17 @@ +# Test +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `..\custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Details +We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. + +## Purpose +Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. + +## Usage +To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Restore-AzsBackup.Recording.json b/src/Azs.Backup.Admin/test/Restore-AzsBackup.Recording.json index 49a41a07..bf816fb2 100644 --- a/src/Azs.Backup.Admin/test/Restore-AzsBackup.Recording.json +++ b/src/Azs.Backup.Admin/test/Restore-AzsBackup.Recording.json @@ -1,16 +1,17 @@ { - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$POST+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2018-09-01+1": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$POST+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2021-09-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "040d5b8c-a835-4be3-9f5d-0ab95999dda4" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], "CommandName": [ "Start-AzsBackup" ], "FullCommandName": [ "Start-AzsBackup_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,286 +20,1239 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01" ], "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "89826a23-5275-4267-b5fc-3aced6b4498c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "89826a23-5275-4267-b5fc-3aced6b4498c" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T122722Z:89826a23-5275-4267-b5fc-3aced6b4498c" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "aa44e56b-88a5-4889-8bb3-d8c1353732e1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJE4X97efeWNwdxhgjM7mRhiZ1BUPbYebEIbjTp+vzrP9rcSOwVv/IF99V6F8PNDwAmhPmXCRalZ+qNorWBA3Ow/+ZxiFNAFlSCaQ9OitSbSKtFzJhtkf++3I0K/EEWRYSKJI/M1fxWsdkX0vk0NI" ], + "x-ms-request-id": [ "aa44e56b-88a5-4889-8bb3-d8c1353732e1" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134238Z:aa44e56b-88a5-4889-8bb3-d8c1353732e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:42:37 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:27:22 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "b33967d8-2db2-44c4-8be6-9ac70c055584" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdGtCr20CCnpDV2XH3GMg2wWVHa2+eMMDlHFA30wOLnXPSUmjjF32tL2fZaBsblX2uXrbVZ8KR6pQbigx3KLEudaKgTcUZmNfPDqxQcbRSQtEQYku11c9Uh8AAiYWUORzS/frPvDRaNzNf3edi5+v" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFtPyayzzZnmhSiQ+R42fEaUztdHqKvvE/KD7hJtSwYzIui4HYBDjl94RSQUu/k6hJN0xKbyFxsBY+0NmH8TuFrkp2h75Wd5fHxFv8r/nP1jgpzVo0Uim6SXwVCWYb+AmdybGP8WJNvtHp2O01z2Z" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14933" ], + "x-ms-request-id": [ "b33967d8-2db2-44c4-8be6-9ac70c055584" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134339Z:b33967d8-2db2-44c4-8be6-9ac70c055584" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:43:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+2": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15", "16" ], - "x-ms-client-request-id": [ "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "86cd2494-df50-4e94-8bde-aa2b3654b360" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14965" ], - "x-ms-request-id": [ "86cd2494-df50-4e94-8bde-aa2b3654b360" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T122823Z:86cd2494-df50-4e94-8bde-aa2b3654b360" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "019117b5-e5ae-4126-9ec8-d640fd474109" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6S7kiAZzUYn9fIP+S0ZaiBH02YA6AF6DurT1tp1Lo9MWbNzJStncgl+ci1C5GFS1ONfkuvxD1vCfomgGRe5R/Cb7Tx2QTdH6lP1MgrqDYTFISqJqfJ7msYAxGJmaiKvO+7jf2TjpthY0x8qivi2p" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14932" ], + "x-ms-request-id": [ "019117b5-e5ae-4126-9ec8-d640fd474109" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134410Z:019117b5-e5ae-4126-9ec8-d640fd474109" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:44:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:28:23 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "c788c90c-f825-4478-9bb8-c105c3baa467" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14930" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOuQ+SqrzWenPnDAn9gKDALrn6uMPAHKN5kSjsFUIotLho9Mt7z/V7shVLLbdPhYg+ZcNt//efp58fM6eCbVUfV5xByWai72FW7f/BiMuHp2ktc+VE/UDcWcc/svo77e92WTKCdj4I0dowXIC+DtY" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyBIgTycikiQZu4wserhK48wimtjues84gIYU30MQ9VX8emsWn4V0/ojKNRAbRDnBtr/2EncfZKC/Vqzn5hJvjfVXO4zHhUN8b39LDsDPLLZP7x7YnvnILxvOvVCok9NQUFjlw3euUX81gpopO4hD" ], + "x-ms-request-id": [ "c788c90c-f825-4478-9bb8-c105c3baa467" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134440Z:c788c90c-f825-4478-9bb8-c105c3baa467" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:44:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+3": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15", "16", "17" ], - "x-ms-client-request-id": [ "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "082c5144-62e0-454e-89e6-7af5af312677" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14964" ], - "x-ms-request-id": [ "082c5144-62e0-454e-89e6-7af5af312677" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T122923Z:082c5144-62e0-454e-89e6-7af5af312677" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "c9b9acb1-1d00-4d69-a9ed-5d76b29c1a1d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgZRttqwWIe7JQz9O+n0hwDJpN1tqddhMqmBFxxBq7eEjTWehIe79SzUqTVLlmA5A6bOolTaOT3FaQhPtwqAFbRbry9H8I4bmdl0QSoiiwuDR7cPCdkEreLDg0biRJ5JTKT1WtJqMbBLiu4fefA5d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14939" ], + "x-ms-request-id": [ "c9b9acb1-1d00-4d69-a9ed-5d76b29c1a1d" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134511Z:c9b9acb1-1d00-4d69-a9ed-5d76b29c1a1d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:45:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "2f14ff63-018e-44df-96a5-33751edd978f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZPgaMPgQfi25jA/KGZPVgIHxHNUzgVwjyIbRCXQfyoB53snBweaRkrhOcSTdoeoOFppgCPk0UuhAOkirTCs1+w69JydtzRvtRsdbxNWrbrDVsMTKyO4sVHck7VwqDx5Q/6B0aM7F6iv2BuEzkkNZ" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14938" ], + "x-ms-request-id": [ "2f14ff63-018e-44df-96a5-33751edd978f" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134542Z:2f14ff63-018e-44df-96a5-33751edd978f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:45:42 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:29:23 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "3cf9dc68-c3de-44ef-87e6-0a6d560b3a12" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14934" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRva9vJQpfXe1qXD+RR4PTXp+dEJCUmtpmliU6R5RluY3TvvNYEpNia1V4+RE0WnAgnxxfoaOSqAu5zlL4+oqtZdJgj3eefO/33SmXLDdo40AJlday3z4mJYTehhu/ue5vdbaJ2XCa1pTY05Wdn+wlo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuyfZ4JFCuXkKNGol77xainJfoJ7rrxuc0l8qildGu+zkS5Y7wnvjpnZ9vcuGK03rN9gFK7UCBiK1H6Ht+INtqW1K4MbhjnYouQDpb+KALxY3vCDXxOgS/F/U0uMuWqzFefXi8rrc5E+Pw9kApQc1" ], + "x-ms-request-id": [ "3cf9dc68-c3de-44ef-87e6-0a6d560b3a12" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134612Z:3cf9dc68-c3de-44ef-87e6-0a6d560b3a12" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:46:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+4": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "842c5f78-f799-4205-81d2-db91ec931b40" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvttuqjSvufVrbndVQAJlP2rB3CabgOZcZAGH/pxG8hrU6c6l/gkihfhGVATgDPxLeenXoyS28xJqbYkMNEyq5Uk0ZnNqiF+cgWbNbvFda2xuuZHJ48ldoAq3LaXtokn8bDGtD3a6S6AzhnXi1ER3L" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14933" ], + "x-ms-request-id": [ "842c5f78-f799-4205-81d2-db91ec931b40" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134643Z:842c5f78-f799-4205-81d2-db91ec931b40" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:46:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "7b7ce206-34d6-4810-8a30-42cbcacb50a7" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvg3n1n2Rj6Dfnd28sBe77/bHPj00rp1y9wGb8X8wZM7J6zoBEXwK8iaCEHXz8hFC2hn69890yq4oYLlBMEVElK3w6kwpbRJAlJGrw0t5HgRSJbWdJkKJigFNZTLDGEpgzozvutfJsQU0r3ci2t/3H" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14932" ], + "x-ms-request-id": [ "7b7ce206-34d6-4810-8a30-42cbcacb50a7" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134713Z:7b7ce206-34d6-4810-8a30-42cbcacb50a7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:47:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1024" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf\",\"name\":\"redmond/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf\",\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-11-01T13:47:01.1825324Z\",\"timeTakenToCreate\":\"PT4M22.5183437S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptedBackupEncryptionKey\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "9016b044-78e6-4775-89e9-26305a98ecfa" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "59b91344-03c7-4bef-9081-ff6f56d2bbd3" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPYNTJj3dOW/V8vDiej/cptNSKque5bsmkO/GMYhHOVxvATt4MoywhR5td9IrR6QDZcBTShcztzOHtdBcCGIsNvM1AEKxoiS2CTIZxEGKWPmlMrGPiVeya041GntjjnyIp7d84Eu4qvrYJwEUI8CS" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14931" ], + "x-ms-request-id": [ "59b91344-03c7-4bef-9081-ff6f56d2bbd3" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134714Z:59b91344-03c7-4bef-9081-ff6f56d2bbd3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:47:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1090" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf\",\"name\":\"redmond/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-11-01T13:47:01.1825324Z\",\"timeTakenToCreate\":\"PT4M22.5183437S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptedBackupEncryptionKey\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$POST+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf/restore?api-version=2021-09-01+11": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/d1a2c909-7f6f-4f76-ad38-1b8a79c70ccf/restore?api-version=2021-09-01", + "Content": "{\r\n \"decryptionCertBase64\": \"MIIKqQIBAzCCCmUGCSqGSIb3DQEHAaCCClYEggpSMIIKTjCCBg8GCSqGSIb3DQEHAaCCBgAEggX8MIIF+DCCBfQGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhQyFPkiSuVcgICB9AEggTYEG/SVAo4Mu02gMFzfbtIoac56ErjzM+WI8VxsPdntUZ8QoiRFcWQo1xaltYnHhvN1QlSQmlxT3oOJqFBTQRILmagbpSrXxG2izE41hkp9iUUcMSYuQ20TpKztumBv0A+1SreT2Wj/EswY8d9WBuBsGhupk8MpIY+6sy1IimZlzL+P5JMdiUS68uM9NhvmQXanYlvaI0bUwj2seAa+67NcQO+TKWoQ8sYOl9y6a9RMVS44JhbRtqJSiDtkzCIzo3trqYqlRR9DBzp4CbVbEwhl0bGbugqORkoQxXOTV41vRvUpl5ztmj1M+d6UDNXXfhToANp1ywxyBb6rmGvUxbKmK9WdwrWAaOhJT6O/OjAh+i0cHw5xU71YX276X2ObBFFgW0KNO2QHscV5qpV6hsez+gMQIoy8lTUmrCIkrUSZJzHGEok37psAehbistF67H1zz3jfFy46JfxLSLJLHV6eTLW/Kd+54s2oyQe9VS1IjogaK5962iD5OvzpIywhr+OjoSHmfgwVKR5W1R4y0BC5owcqYAcycB9Nf9K5GkvNdceL9qsgPVNHi9Y0MVsQ8jEboMtikg49WO/cEysF+A8MzMgmLza3hI6DDit43qBpoRZO6MgQadDBjDzaILG96HRAdefhoFbOZnwfIAAHTAdyoFa+n46wWlq4WnBglOMe7R1UIJVzsn5mz6XPJdwYI/lnVlv1CWPpA1HLWiZ2b5Xo8tsSEoZxYsRy+OZv0cEcY8QsLCICs0Go3bhc1rJpx3uTUki7ncgT9iMGpAe9JEqrTXiUVNfaJk0sMMv5GttRvt75k5xsE0t1s6xLtLP7LPb3wJB9tCFTZa7uH6KJ1uAkhlzIvp6j1hfIeLHdMIqd13g/xBvTyRjaprSNjFIJB5JyHX91NOlgVYlYfskJU7dO4vOdLvYe1PitJUahQ1ux7U2KxXY6DmGR/xdtQhEulhLMqxw35GM1wqJ+w8d4CvdSUkmd7ewvG/IJRXWKrnjy3e1Ta58U1T/+zdsjJH3oGBGTxWvCzewKSDySQJYuX/J1OFyNgbxBq6QAT3AojHRWirDW5tNJ1jHGE1AE9coW65S15cA/BPD4yS0fzwK2ZwsXUG1zY19ixRbA9su4uwglOHiucKxMdiwlLA5g9GKKdMhS1pLSF0zSmmBgXKiEtSvVIpuBX8ZQY4Lk2UnVocgMPbwvRIgHyAKCM+paW+0ukyPhAZJqOgi6X8ZLqTDse9oX/NG12c9YexKHHCwIjgejdcTH20KBkYgkZdLaWeTQL+nhic3sG8TK/+wKxwYBL2OjPQRY853nzcQ6LFSI/M+IaiXOvQXLQOWHsoa0AiUl5OFDTXt3YwIOVT1Gydi/+2d+KihM3n2+bbZRdsyGu4ToJy5Pb84AX+LGYBCIBeHOqnor7bn0F5Jr+GGfNKAuuoe0hqTVndQGKpR0t32dGTI3b/gAj24BGiS+G2tDcSzlmb/+6O66xGnjjGMaw5qKV/plew7jzKOc9Xtlaue66+Q4AbjGftKapWQAmXkNDKLZai2W56zSX9BHQ/Urg8qKlILe+34WRxs0U2DqfHF5y3WOnOZRk3HwG1up85cVb4Trow/GHEDzBP4bEk1w6gqoldGLR1K8AzzpbmEO8S7BbFI4kpyY2Y51R8OCjGB4jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBdBgkqhkiG9w0BCRQxUB5OAHQAZQAtADYAOQAwADMAZgA0ADgAOAAtAGQANQA2ADIALQA0AGQAMgBlAC0AOQA0ADIAMgAtADkAYQA2ADMANQA3AGQAZgA3ADMAYgBmMF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAG8AZgB0AHcAYQByAGUAIABLAGUAeQAgAFMAdABvAHIAYQBnAGUAIABQAHIAbwB2AGkAZABlAHIwggQ3BgkqhkiG9w0BBwagggQoMIIEJAIBADCCBB0GCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEDMA4ECEG0Pzg3taS6AgIH0ICCA/BKTmHjnIpWcDgLSDYK8T1QUor7K7Y16R3yzygnuNgSLF8HWmhIcpCrEiMVRAtk2NE26qekF56gWge07h1LuIv/qJAeAWojLly75Ng1dUtWSQPypfq6yVkW2B0xbgknhv8Ezm3CENokSihCHczwUl1S2Dw9Ef5tN9E6EmFqzzYG6wGPJayQOlj9G9XilxlQ8VBIA867abyQUGmK2ycWzZpOF+6qRJCXlKfi0WraakNJu7n6r7CIRX+9sfywrN8a2mbnSZMpNWizrbDxcWaNCWwt3m6vERWLqgW59uPGyYbNEye14zcasPH0cc+L/obdbv/hSyZvQkurv8CiotzgI3BXTcbJ6Cr/avCiD5frmXLw+O36J9l8tK5N7IfS38+EKGDf3yhX33g/HWwhkpWhQI98DirAdjIqzBC8tHAlzkw+hYNoUaoVkfHgY7/LvuLKA9Zz1IIv49LfVL6JNOG0c1vXAdAk6BcAMV2AQZmlujMk+cmP7PWph5JN7cw6xNIBwdZ4Zy5xsAQSDbZmlY4/RdUpKBxuz7qERFDHHINb+51ud80Fyxn7v5f73f83lCpmdiCvFsGoROxafttL0NrPnaK+E2nZwjgakcoy8qR5Aj6ayCw8yjXJUHSvmVTfcCakhgw0vK+8qLJNgd0SL6r/P9skbDbor+ltYSV7rlphJtNYLeLDPSTADyARY85QTH7JzysaO9LMnz77dhBgTjgDHOMy7gE9CEcb086iksqXbKsUqV2TWzspMn7unWyvLXp+LDHkM5IWjc6rUt2KeDpuw1yS5XDJ0zL4VYony7G3U8nim+f5rVyt3Ja8OnTRv9rgKfEXkDmm7lTMyI7dExIxAC4+AwQQECSOrzVUbVruJv2XQ7DNQRTTLlj9+zJIAhm0EFUuuQ+zvxOxfbSF68fw5j02U02n6AvD/NXtjgVCNiTviRG+qtKx1vXD4l6BMP8HGT3n99igOykFnNcaBlIsRogzb18gDR+SSEYijXCA9SttQ0ISiwz7dCYO7sng4lTqAtzN+JYiS5saDLDAsklbXTnNvpBdwzGf9BlulgJeeGGzaXWd/7uJwZ8dcNcRso4pI+vV3yIbjMX1YS5DluV1PimWc/Q0fuPsjacEOtukBHvxELF2gJAZu4lTRjXP8fdQWunt/plmS7+YQqkn3bdALFk9EjHA+TqZ57ZeKAeywkOnyJwJCi6YD/EzAQWcOpML1xqdbvdilFWjEGVzs93eHi7vA8Lvp3iY4OUJnvMokjCpNx86tag++g8l9t1/y52SKb+nNC/zWpRs/nQxSxlGU5QhBWHdDq7oTldWqEoA4tMXSuBiSbg04bK7YblzNnUDdD8wOzAfMAcGBSsOAwIaBBSkvLUX6cZffafC6a35Q+pTFz1ngAQUBlz9XA3Beph2JfNfYGw4p4nlG/YCAgfQ\",\r\n \"decryptionCertPassword\": \"decryptionCertPassword\"\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15", "16", "17", "18" ], - "x-ms-client-request-id": [ "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "3733" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "50e99ea3-9d41-47a4-8916-a7cac3235745" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14963" ], - "x-ms-request-id": [ "50e99ea3-9d41-47a4-8916-a7cac3235745" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123024Z:50e99ea3-9d41-47a4-8916-a7cac3235745" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "60290f59-0b50-442f-85b9-5eb2b672b2bb" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu/hefn5tG21TDlUZqAlXCxbQpg+YM0+P18HkWTekYdKMlsIN2+o8S0BX+aESycqUD0pMpiidM4odag+ZFNPBRYNJ+mPJgvysb+mGX8SdbdnJPjH0FHcI8Nvy3rCBG/fBVobhxvVLMYhmp09HF9xV" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-request-id": [ "60290f59-0b50-442f-85b9-5eb2b672b2bb" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134714Z:60290f59-0b50-442f-85b9-5eb2b672b2bb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:47:13 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "b30efe4f-6c81-4fdf-b3cb-e40457793a72" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14929" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNOo8W3rMxApvLEwj6+rv1EQ58JGmsKaxefg4jZp4aEq0MHrw1j5ArWJt82eeKar0GSZ/IxzMKvbK17gKOcsPH4jfxHMD+SiWvz+KI12fn4RnB0CZrtT3DIjgeqd7qIgOitH/6yGynxjaa77K+B9r" ], + "x-ms-request-id": [ "b30efe4f-6c81-4fdf-b3cb-e40457793a72" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134815Z:b30efe4f-6c81-4fdf-b3cb-e40457793a72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:48:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "13" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:30:24 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "84d5ca78-e866-4816-ba36-e8248e2c7b77" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7CmTGL2a47CDrEHMA6aZLQk8EMwYtORQVZvf5gOA2QvtCSjJIChn7vghzL6CKmW1Z//RajDxnI1NfZL5yTMUIIWU997OU54gq60caveN82SUVIa4J545ZlpqjKutpFsx1ejy4SKBdKPkjOY614sv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRve/scAdaJDxdpTm/zHcXU6UzO6tH6kYIi6eS8TuGvMWss2OhL3YOmPVKT6X9AoqOInROpaX7JuqCvm4w7fWJWmYctF5gOzh0hr48NnjGf1qqj5Tw0M3I+TUE3Z6GjDH3M6AFLDuKSIzjfjXGKNxk/" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14928" ], + "x-ms-request-id": [ "84d5ca78-e866-4816-ba36-e8248e2c7b77" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134845Z:84d5ca78-e866-4816-ba36-e8248e2c7b77" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:48:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+5": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15", "16", "17", "18", "19" ], - "x-ms-client-request-id": [ "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "1a0a819f-f8af-4dfe-873e-1ce5981d3d7c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzZCiwzse4fB3HYOIF98rERFLr6AnGk4/ObcjcpbAXz4HwqWYCJn2s/KMrUQtAa1MzN1ixoCuGqjagwOQ6SE98NgxIYpDysv7v/xFanmysFCH1lk4HdSNpDKB5zIJxqpdkS7T121YGmW2+v0sthTS" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14927" ], + "x-ms-request-id": [ "1a0a819f-f8af-4dfe-873e-1ce5981d3d7c" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134916Z:1a0a819f-f8af-4dfe-873e-1ce5981d3d7c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:49:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "ca42e8f0-1d82-4bb4-8d20-419e6d61cc8a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14925" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRmR2aPj1AzUByK3fGUMDAvlclqdQzxbhMqoANoGnhLHBBY2T7PMF5kNlD3VBChs5ihvk3jiOLfaARnPCMfr8mXRz4E5T1vaMWzOMmD3T/T3AVm3yf6k9b+yqXVlmaLX08lgZYes7yvgnqsbbPgCx" ], + "x-ms-request-id": [ "ca42e8f0-1d82-4bb4-8d20-419e6d61cc8a" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T134947Z:ca42e8f0-1d82-4bb4-8d20-419e6d61cc8a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:49:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "28421d29-9e22-4be1-9e72-909ddf8d793f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPXxNqYikTRJzNOVsec/R7CU7urg4lm2EfxHN+5Sfjk4T3mkbBpYiWeztI1duc5/Q/PXe8kFXQhQpo+UkNit1k8MTQOWdKYEiK935c/MOLxsKmCwDF1m1VYdl9ZyMLxeU/NMCEkg/wawbMpN5O/U6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14937" ], + "x-ms-request-id": [ "28421d29-9e22-4be1-9e72-909ddf8d793f" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135017Z:28421d29-9e22-4be1-9e72-909ddf8d793f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:50:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "17" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "6219c05c-ff56-4f10-a26a-695b2e577e48" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrPgQJSVayiVpAnbCsbCS8yrGFp5Ir7d7XCuMDjoxTewLXJlgjayZDrPvrQO2nZz0hg9n+YZphdZdIgAuc+CZTsoog3NJFNPBkhky8eOu2k+OYe77AAtdNr7dsilFUyVDato73WtTfM6q5Q0tLfXR" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14936" ], + "x-ms-request-id": [ "6219c05c-ff56-4f10-a26a-695b2e577e48" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135048Z:6219c05c-ff56-4f10-a26a-695b2e577e48" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:50:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "f33f81a9-0f49-454d-b871-f94ff3356920" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14932" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJYHNUHFFyvoQujrxUnXr+GCzR0k8TLbjzKZpM6EPcKSJvALx7ZPXw06vl701uhxWAabB0/2vwPpuq9xAAwdBMlvD/M+T6kaiaM0XWVDFrLamtXJU+4ShiBAmDHJIHGOq57ixaAh8vuNBU4oIN9gX" ], + "x-ms-request-id": [ "f33f81a9-0f49-454d-b871-f94ff3356920" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135118Z:f33f81a9-0f49-454d-b871-f94ff3356920" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:51:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "bf7c246a-e619-4502-94e2-bcc879ab94ed" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzPLHoRfl4G+ZTXEDnPzI9cR+z92VoPBn8cj7vhp4BD2PHayaW/2LP76NBJdi46w6inY9hbE5DpIPC4z4/sDU//gXw4huEioHWqK7lxOGuTXvUd5lh8GWoNBD6jj4lpdXuqncZlBL03vhfyLlgqij" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14931" ], + "x-ms-request-id": [ "bf7c246a-e619-4502-94e2-bcc879ab94ed" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135149Z:bf7c246a-e619-4502-94e2-bcc879ab94ed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:51:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "86677a38-c089-40d6-b832-aeb68eee2528" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBl1+iip5y4H4DZWucU11CSKU2DOz0+1kS+TXaCUJ5mwsr+OJ1w8xnrKUxjCDWbARVetB/a5qqQx3k9bO8gm2MAkEu6efQcBSUNbJcSW6iTLc9IjeHQ1WvuEwzbI8piszEGQaFq9y6y+oIlNgn7CU" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14930" ], + "x-ms-request-id": [ "86677a38-c089-40d6-b832-aeb68eee2528" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135219Z:86677a38-c089-40d6-b832-aeb68eee2528" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:52:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "21" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "d735c6ef-758b-499b-b6cf-4f090a6d0e0a" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV/80GttMZeb7c7KgrPiyF9faVowVg5NW5f0wK5odRUj3Ieu4CBhTkbDraHdQ5nVDiYywN+KVlYCjFTtb+lsWrVwPGzcs7HKlto9ZISGSdpACz3wunQFTsI/z4YMT1gqCzO7LGXYWZZNnlNovaSgR" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14928" ], + "x-ms-request-id": [ "d735c6ef-758b-499b-b6cf-4f090a6d0e0a" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135250Z:d735c6ef-758b-499b-b6cf-4f090a6d0e0a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:52:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "756da77d-14b7-42e9-abe0-d2c33abafb1d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU49U/ssPRvnRA6ByEnRY/h+sATkKJjNN+AT9ZgHdHWKq+U/78T8RdBgTh+WsmuL9vixFBLWCMb/kU4IHNUiicnrIqoE/SnikRL+7ntLFzU6AkI/RZtDYrZqfRcipTSLyYVvyIf+KsM3fCeIAmtuw" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14927" ], + "x-ms-request-id": [ "756da77d-14b7-42e9-abe0-d2c33abafb1d" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135321Z:756da77d-14b7-42e9-abe0-d2c33abafb1d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:53:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "23" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "69f56f45-356e-45d9-8d8f-60f2fe98c1e4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14925" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgLTQhZROkvzUBMIdUvs4MsRwX5tL9Rx8RbH0wQcNzINHi2N+gIhJGSQPzNo6KnP6Tk3nS1WG8Z71V2+rLRbJ90BGHzT1sWegSpFO4/ruyTkAa3yH3sxSJ3pZ+NshNGjaAWpS6Jcd42YHLQIpOgrR" ], + "x-ms-request-id": [ "69f56f45-356e-45d9-8d8f-60f2fe98c1e4" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135351Z:69f56f45-356e-45d9-8d8f-60f2fe98c1e4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:53:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "22" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\"}", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01+24": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/dbb948d4-640b-4ceb-a9c2-402a4022d92a?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "24" ], + "x-ms-client-request-id": [ "ad4ede98-ca40-436b-981b-d8ab8d6d2e55" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "73482305-429a-45e2-92f4-f1da3674c1cf" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvndhF3k63yqr2JF87hR02kZ/9BmVlOLhnvsCk82OgTkTNvh0WbREg5uDnvjEa8UIr/v+6Yg9JsoPzq1usJ9dzz8er492BAhLg0ZMDwv8Xrzo6qCZ927Mks1BM+M6OvfMlwkT36h5QQU9vwmwxnu9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14924" ], + "x-ms-request-id": [ "73482305-429a-45e2-92f4-f1da3674c1cf" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T135352Z:73482305-429a-45e2-92f4-f1da3674c1cf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 13:53:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "bnVsbA==", + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2021-09-01+1": { + "Request": { + "Method": "POST", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "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://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01" ], + "Retry-After": [ "60" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "9915888e-e091-461e-98ec-b255bb2af48d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveE9Nc7r1e9rXm7IZXyTYIg/i3hQj6ZUhdGugHr4kZt9zRiNbr0LgWpAsTZetPuAbAUvSM0/MODerYAU68DW1O3UUmtsQ52yFZUt50OC8nwL+Qk7ffopuRyEgyHic/jyy/tcUc8cVH6hy45kmjyY2" ], + "x-ms-request-id": [ "9915888e-e091-461e-98ec-b255bb2af48d" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142239Z:9915888e-e091-461e-98ec-b255bb2af48d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 01 Nov 2021 14:22:38 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "0b54cbee-c145-4bac-a465-b58c27d53130" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14962" ], - "x-ms-request-id": [ "0b54cbee-c145-4bac-a465-b58c27d53130" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123124Z:0b54cbee-c145-4bac-a465-b58c27d53130" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "14ac85bd-7625-4927-941e-f65f3fc9c947" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwtFqZlK4eMy6BJEaNAOw4oLxN99249PRUKrzUR0pwlUDT1xUPf7P8uqGu6JpmEd9LRBVZ90H+LdpQydEvu07h53EQxve2jU6TDXeB0K65zwT7+/PpQzu4gSVKeO3yDIxwIUO/T56dZzJYXeC3XOm" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14955" ], + "x-ms-request-id": [ "14ac85bd-7625-4927-941e-f65f3fc9c947" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142339Z:14ac85bd-7625-4927-941e-f65f3fc9c947" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:31:23 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvf9kLj0CW/QXoYBpjXHATAWMkyVP5yfQ/8xjntBW9o+ICa2YAA/uVwIa9OA+ey8pDNXyqeSsGK9HcwzG4tS/gFl9Pkuq9YrRURAiyoyoZHeNhAiJ01xMLWamaKI+jk4q5d5YN6cSAoPAVlC7fOekn" ] + "Date": [ "Mon, 01 Nov 2021 14:23:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+6": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15", "16", "17", "18", "19", "20" ], - "x-ms-client-request-id": [ "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "af0cbcb2-2135-4743-b789-75b5349af1d9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14961" ], - "x-ms-request-id": [ "af0cbcb2-2135-4743-b789-75b5349af1d9" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123225Z:af0cbcb2-2135-4743-b789-75b5349af1d9" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "744d0b93-781b-4587-bf25-bebeec7e67e6" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARu0NqejP0iWBlnDQdI3+GRryt8xrtfyckeFGJCjxMhkfMprffWhLhDU0GYjh479620F9e1Jaf2FESSdmQeJrYOyM4J3UPCPoaPVAPoWqu3dPvLKh9g/Ath50bdLxtmLOpBWeeLH6wiTn9aE4J0238=" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14954" ], + "x-ms-request-id": [ "744d0b93-781b-4587-bf25-bebeec7e67e6" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142410Z:744d0b93-781b-4587-bf25-bebeec7e67e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:32:25 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ/4q/Ci9v+Bw7sg/CR7kh1pURa8LryAkhyYbJc7E/gaURQtdlvEGyivn7ydAPQ5cyF7AH3BjveJpMT7MtYk6G4athhXy0oD6lS7VTR2p/cuZ9rmpLu07LhVXVuNC8vHMe4l76Kh6mgCiJhp8/EzA" ] + "Date": [ "Mon, 01 Nov 2021 14:24:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+7": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15", "16", "17", "18", "19", "20", "21" ], - "x-ms-client-request-id": [ "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "3a288ae3-c02a-4559-a661-46fb92150f18" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14960" ], - "x-ms-request-id": [ "3a288ae3-c02a-4559-a661-46fb92150f18" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123325Z:3a288ae3-c02a-4559-a661-46fb92150f18" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "f18769b7-f3c3-4093-97a9-16340fa3a29c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvto6Xf4ooMJy5oBLr7vaqfd1BVxGlVtcPo+mL/31nPE6nOUPo4nL9ULfIlk/b71fVLyaN0KmnIdb0ZDYxAV++p7zjOUde/+CALfD7y9qP8t/MsobUb9gQ+RAcx+d5lrfdGI/1L3ZUaVSs+BinAv/7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14953" ], + "x-ms-request-id": [ "f18769b7-f3c3-4093-97a9-16340fa3a29c" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142441Z:f18769b7-f3c3-4093-97a9-16340fa3a29c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:33:25 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvogquJuDeBg1PlJjeu7Bzto2W1bV7F0oqkJ6i2hF+9Beg9Ru179+/j1T6ZCH07nls3mJn8rocfWnykju8P4P6xZJSQv4mrViotg69ilGZMhk4lXFW2zeYN5Ymr4QTytdKvRJErwi3CFj32p4lQ9n1" ] + "Date": [ "Mon, 01 Nov 2021 14:24:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01+8": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0f377aa9-22b7-4623-833e-7386bc37d4fd?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15", "16", "17", "18", "19", "20", "21", "22" ], - "x-ms-client-request-id": [ "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4", "040d5b8c-a835-4be3-9f5d-0ab95999dda4" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -306,164 +1260,179 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "952f2804-2269-4268-94ea-ed672d637752" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14959" ], - "x-ms-request-id": [ "952f2804-2269-4268-94ea-ed672d637752" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123426Z:952f2804-2269-4268-94ea-ed672d637752" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "0a977d21-18e8-4b3b-9424-4000c0db0960" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14955" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBBS2Tin9RfzgHR8bIuIB+lwLqqPja2XHUi8ytjDEpDoUZgSeJ+3MKWjeTD2QCUMuFyIanBUtnmnfXX/GLZxfa+hBnsFuXPoNflI1RocxhinbZ2MMkMXNWi+q5eQnwZoH1A68rPBYPEWAS3/a62Hh" ], + "x-ms-request-id": [ "0a977d21-18e8-4b3b-9424-4000c0db0960" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142511Z:0a977d21-18e8-4b3b-9424-4000c0db0960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:34:26 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdmSoa4NXyXaTEyEN5pPx0MSfli6sA/qjVZdXsd1QUZrmJLpTbK2vYT7NEj2UdTDvsh9I/5wwMlynaLCxYDbT5rkc2ph1gYuAduIGD+ojisky5FmeabHsTkvIc10C3l5yl3zShZhP1j3zch8VXCUO" ] + "Date": [ "Mon, 01 Nov 2021 14:25:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1290" ], + "Content-Length": [ "67" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"name\":\"redmond/0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"0f377aa9-22b7-4623-833e-7386bc37d4fd\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:32:38.8094127Z\",\"timeTakenToCreate\":\"PT5M16.0605282S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptedBackupEncryptionKey\":\"HtKeg1cAyVJh/Pfsg8Y5FsUb+7T1EGVOR3hvmvBRDEZoM8xll1meh6HOgv9yKtL3i6eE7Qe6tSawS7ZW+pTOFKHxUnErunlMjwEeYST5IsGPBrUwNSvnemN1GIwXHFLtdWZIOMC7yprf7LMzdrg9y28pLmc+tljAzMgU6afejMXpk/RA6VNQ7tyXPfC61Pm3jDQ37jOg9S12CLdY0/Im9H9E1CC0UFiefE2kW9b8m0P1vEeP/ByLxqdsvM3EnW/lKCqNWRHbgbORw6j0NQeKTF/g32pvRxVF0WqxGWjX3S/EeCg3rHmXU4HWO3RiN+oHDrVyBh8j+nvGW9LvMUN+aA==\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$POST+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd/restore?api-version=2018-09-01+9": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1+6": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/0f377aa9-22b7-4623-833e-7386bc37d4fd/restore?api-version=2018-09-01", - "Content": "{\r\n \"decryptionCertBase64\": \"ZGVjcnlwdGlvbkNlcnQ=\",\r\n \"decryptionCertPassword\": \"password\"\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "3719" ] } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "853e834b-759d-4183-a46b-5fe086e9f347" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "853e834b-759d-4183-a46b-5fe086e9f347" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123429Z:853e834b-759d-4183-a46b-5fe086e9f347" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "a2961c75-696d-4fd3-bb4b-8ac8b90ed81b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjoTTp1eviS9soZaULTXn5EvMWoa11b3m3JqQ2PZYkMgRL6aV4gr44S9jDeiyEJKJi0MC1AQZ+i2eD/tsXdb86jMcqqRvoOTQYFGKP4a64DGtEAj2uJDZsN4+XQzn5xLr1NNC9VXlvuCKt4jNGI38" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14954" ], + "x-ms-request-id": [ "a2961c75-696d-4fd3-bb4b-8ac8b90ed81b" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142542Z:a2961c75-696d-4fd3-bb4b-8ac8b90ed81b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:34:29 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkZloy+0+feJcim5hYs4KcEnLeMr+qNT5LBAttlveBMGZDIz0wqxU1K97GkaOlPGCrQwjABjDAc23qSjZCqe1o2AfIixWm8tAn/uw/Ddzmru9ZRWIUKPFTnfnZCXLUW2ICkVTTx/eyZkj+5y0vZ48" ] + "Date": [ "Mon, 01 Nov 2021 14:25:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01+10": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "23", "24" ], - "x-ms-client-request-id": [ "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "9db00ad7-59e3-4bba-af27-6817634684eb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14975" ], - "x-ms-request-id": [ "9db00ad7-59e3-4bba-af27-6817634684eb" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123531Z:9db00ad7-59e3-4bba-af27-6817634684eb" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "0e7a636f-36bb-4133-9998-1ed6558d84b1" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvb8Yt7YUWwwUmkllbI81dahi2RLXBjufZeTh04gZ1FVAXJ/tfKDk8XZixUNfLbqBaCeajIie5TV689ZZDkbrOAPNCPkghUp9sibHD5oo7nzqEAonGKtbwwlDuGYGqCJMJwocmYB4NHlj6Lk9rO9EV" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14951" ], + "x-ms-request-id": [ "0e7a636f-36bb-4133-9998-1ed6558d84b1" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142612Z:0e7a636f-36bb-4133-9998-1ed6558d84b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:35:31 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvl2xQp57/vcX0v2tZAhtUopLPTJgEQ18eaWShSVeoMJDZVItZmXZXh3RFutBEivz/f5ZAFOdh2rqdGncoeVfDsRXApKLTGmlh6100OpxhgOK30zhls641q6SfZuHAu62VP5AorCXLvs4UxwUl90+j" ] + "Date": [ "Mon, 01 Nov 2021 14:26:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01+11": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "23", "24", "25" ], - "x-ms-client-request-id": [ "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "488c89ac-e619-4140-b099-4c0ba01f4f41" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14974" ], - "x-ms-request-id": [ "488c89ac-e619-4140-b099-4c0ba01f4f41" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123631Z:488c89ac-e619-4140-b099-4c0ba01f4f41" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "4e2bff78-aaba-45a7-9e33-2ce3cf192a82" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3Pn1IkY0Lb04NwhstqNwZozXI/HYp4TwcyGjwypbIdhWYWOh7wODTIl95nmo2iHUaMPwwAjkUgIYXnXYyeJti+HWnMKDGHy4h3phpV9YetSEyVLuqJ95rdd44zTamlA1UaCU74Tdu+7pvuvQJBPm" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14950" ], + "x-ms-request-id": [ "4e2bff78-aaba-45a7-9e33-2ce3cf192a82" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142643Z:4e2bff78-aaba-45a7-9e33-2ce3cf192a82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:36:31 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtDK/vLkqn/xyVN8cs8s6VR1T0416Z2BrLjz3taLk0lzEKrrpQlpnrz9nudX94fNE5gjY3yJkpQKsxWH6rSK8VLfE9mMhOLyzRTrttGJ0Gse1Y3qZyz5g++VKud2R527R0XdEetW1jk0q7XoA5zkc" ] + "Date": [ "Mon, 01 Nov 2021 14:26:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01+12": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "23", "24", "25", "26" ], - "x-ms-client-request-id": [ "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -471,38 +1440,41 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8fa873aa-8a4c-472b-aa5a-0c746c00156b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14973" ], - "x-ms-request-id": [ "8fa873aa-8a4c-472b-aa5a-0c746c00156b" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123731Z:8fa873aa-8a4c-472b-aa5a-0c746c00156b" ], + "x-ms-correlation-request-id": [ "7ce9c8aa-6be4-4fec-bf09-e0c5e69a5a5b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1eYkOOVE96XP0lpT1uioWBZmcBad/9eZE7CVkbVCkCeNGqbfQuqhogxyye+W2IeoBvbzK28QshDfRlV/7m1d30qFQTblylpTB6FwKX+ShKHkhZ/OWP520rXxRRurFOneUjExiTdNUihgTj4aeQPz" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14949" ], + "x-ms-request-id": [ "7ce9c8aa-6be4-4fec-bf09-e0c5e69a5a5b" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142714Z:7ce9c8aa-6be4-4fec-bf09-e0c5e69a5a5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:37:31 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyWWutRzwpdbUuvqfHt9aP/9DO2/DQLYxS2btYbYDvbv6tbqfGjGldtjjoIbpIZZs/08OrVXbEJsxMvWgJlq+AH1DXAgnaGPoUsiIAlktpkFq1kLHTZPj25DVfgAHLBP4SPE6C7Wtwa9zbrr3KbdX" ] + "Date": [ "Mon, 01 Nov 2021 14:27:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "1024" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/437009a7-b326-41ce-85c6-55c12c2ec0d0\",\"name\":\"redmond/437009a7-b326-41ce-85c6-55c12c2ec0d0\",\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"437009a7-b326-41ce-85c6-55c12c2ec0d0\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-11-01T14:26:59.1943029Z\",\"timeTakenToCreate\":\"PT4M19.9724331S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptedBackupEncryptionKey\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01+13": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/562d44a7-3061-46e3-956b-ee0fb4a952aa?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/437009a7-b326-41ce-85c6-55c12c2ec0d0?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "23", "24", "25", "26", "27" ], - "x-ms-client-request-id": [ "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d", "cb2ebada-81c7-4ebd-b4ed-cbe28db3bb7d" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "d93c3824-412a-435d-9043-a79d140f3d9f" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -510,325 +1482,350 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b62c2238-5af0-40f9-99c2-eac539d69e3d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14972" ], - "x-ms-request-id": [ "b62c2238-5af0-40f9-99c2-eac539d69e3d" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123732Z:b62c2238-5af0-40f9-99c2-eac539d69e3d" ], + "x-ms-correlation-request-id": [ "7e3c4768-cda5-45df-a326-d43af6453588" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3NAd7sQz+lP6WDbLuoEEdt9ltWT/R1OrgptzoOI7ERe6F/cCflLS74X0AS0uUr17CkLcfx2NPt26/KruZx5J195h6fT0rb6GbgysH1sO6LXUDAUJ8eVlD+6vDGxPA3IVuYr/h6JFEpxyTCpxhzwT" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14948" ], + "x-ms-request-id": [ "7e3c4768-cda5-45df-a326-d43af6453588" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142714Z:7e3c4768-cda5-45df-a326-d43af6453588" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:37:31 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvt4RUUDM3XiL5omZBQNzBe6UCd51s9SHxa0b65G39/H2AdeSl8OD+Ze5TWsjt5/faRNCklGluW3ZWVdLZpO6T0jrmOHb0DyRB11e3Km+3lZ5ZrMr21rew/D+7iL3tE/1q4hCSeHo9mB6rdK21Qv1J" ] + "Date": [ "Mon, 01 Nov 2021 14:27:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "1090" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/437009a7-b326-41ce-85c6-55c12c2ec0d0\",\"name\":\"redmond/437009a7-b326-41ce-85c6-55c12c2ec0d0\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"437009a7-b326-41ce-85c6-55c12c2ec0d0\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-11-01T14:26:59.1943029Z\",\"timeTakenToCreate\":\"PT4M19.9724331S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptedBackupEncryptionKey\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2018-09-01+1": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/437009a7-b326-41ce-85c6-55c12c2ec0d0/restore?api-version=2021-09-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2018-09-01", - "Content": null, + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/437009a7-b326-41ce-85c6-55c12c2ec0d0/restore?api-version=2021-09-01", + "Content": "{\r\n \"decryptionCertBase64\": \"MIIKqQIBAzCCCmUGCSqGSIb3DQEHAaCCClYEggpSMIIKTjCCBg8GCSqGSIb3DQEHAaCCBgAEggX8MIIF+DCCBfQGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAhQyFPkiSuVcgICB9AEggTYEG/SVAo4Mu02gMFzfbtIoac56ErjzM+WI8VxsPdntUZ8QoiRFcWQo1xaltYnHhvN1QlSQmlxT3oOJqFBTQRILmagbpSrXxG2izE41hkp9iUUcMSYuQ20TpKztumBv0A+1SreT2Wj/EswY8d9WBuBsGhupk8MpIY+6sy1IimZlzL+P5JMdiUS68uM9NhvmQXanYlvaI0bUwj2seAa+67NcQO+TKWoQ8sYOl9y6a9RMVS44JhbRtqJSiDtkzCIzo3trqYqlRR9DBzp4CbVbEwhl0bGbugqORkoQxXOTV41vRvUpl5ztmj1M+d6UDNXXfhToANp1ywxyBb6rmGvUxbKmK9WdwrWAaOhJT6O/OjAh+i0cHw5xU71YX276X2ObBFFgW0KNO2QHscV5qpV6hsez+gMQIoy8lTUmrCIkrUSZJzHGEok37psAehbistF67H1zz3jfFy46JfxLSLJLHV6eTLW/Kd+54s2oyQe9VS1IjogaK5962iD5OvzpIywhr+OjoSHmfgwVKR5W1R4y0BC5owcqYAcycB9Nf9K5GkvNdceL9qsgPVNHi9Y0MVsQ8jEboMtikg49WO/cEysF+A8MzMgmLza3hI6DDit43qBpoRZO6MgQadDBjDzaILG96HRAdefhoFbOZnwfIAAHTAdyoFa+n46wWlq4WnBglOMe7R1UIJVzsn5mz6XPJdwYI/lnVlv1CWPpA1HLWiZ2b5Xo8tsSEoZxYsRy+OZv0cEcY8QsLCICs0Go3bhc1rJpx3uTUki7ncgT9iMGpAe9JEqrTXiUVNfaJk0sMMv5GttRvt75k5xsE0t1s6xLtLP7LPb3wJB9tCFTZa7uH6KJ1uAkhlzIvp6j1hfIeLHdMIqd13g/xBvTyRjaprSNjFIJB5JyHX91NOlgVYlYfskJU7dO4vOdLvYe1PitJUahQ1ux7U2KxXY6DmGR/xdtQhEulhLMqxw35GM1wqJ+w8d4CvdSUkmd7ewvG/IJRXWKrnjy3e1Ta58U1T/+zdsjJH3oGBGTxWvCzewKSDySQJYuX/J1OFyNgbxBq6QAT3AojHRWirDW5tNJ1jHGE1AE9coW65S15cA/BPD4yS0fzwK2ZwsXUG1zY19ixRbA9su4uwglOHiucKxMdiwlLA5g9GKKdMhS1pLSF0zSmmBgXKiEtSvVIpuBX8ZQY4Lk2UnVocgMPbwvRIgHyAKCM+paW+0ukyPhAZJqOgi6X8ZLqTDse9oX/NG12c9YexKHHCwIjgejdcTH20KBkYgkZdLaWeTQL+nhic3sG8TK/+wKxwYBL2OjPQRY853nzcQ6LFSI/M+IaiXOvQXLQOWHsoa0AiUl5OFDTXt3YwIOVT1Gydi/+2d+KihM3n2+bbZRdsyGu4ToJy5Pb84AX+LGYBCIBeHOqnor7bn0F5Jr+GGfNKAuuoe0hqTVndQGKpR0t32dGTI3b/gAj24BGiS+G2tDcSzlmb/+6O66xGnjjGMaw5qKV/plew7jzKOc9Xtlaue66+Q4AbjGftKapWQAmXkNDKLZai2W56zSX9BHQ/Urg8qKlILe+34WRxs0U2DqfHF5y3WOnOZRk3HwG1up85cVb4Trow/GHEDzBP4bEk1w6gqoldGLR1K8AzzpbmEO8S7BbFI4kpyY2Y51R8OCjGB4jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBdBgkqhkiG9w0BCRQxUB5OAHQAZQAtADYAOQAwADMAZgA0ADgAOAAtAGQANQA2ADIALQA0AGQAMgBlAC0AOQA0ADIAMgAtADkAYQA2ADMANQA3AGQAZgA3ADMAYgBmMF0GCSsGAQQBgjcRATFQHk4ATQBpAGMAcgBvAHMAbwBmAHQAIABTAG8AZgB0AHcAYQByAGUAIABLAGUAeQAgAFMAdABvAHIAYQBnAGUAIABQAHIAbwB2AGkAZABlAHIwggQ3BgkqhkiG9w0BBwagggQoMIIEJAIBADCCBB0GCSqGSIb3DQEHATAcBgoqhkiG9w0BDAEDMA4ECEG0Pzg3taS6AgIH0ICCA/BKTmHjnIpWcDgLSDYK8T1QUor7K7Y16R3yzygnuNgSLF8HWmhIcpCrEiMVRAtk2NE26qekF56gWge07h1LuIv/qJAeAWojLly75Ng1dUtWSQPypfq6yVkW2B0xbgknhv8Ezm3CENokSihCHczwUl1S2Dw9Ef5tN9E6EmFqzzYG6wGPJayQOlj9G9XilxlQ8VBIA867abyQUGmK2ycWzZpOF+6qRJCXlKfi0WraakNJu7n6r7CIRX+9sfywrN8a2mbnSZMpNWizrbDxcWaNCWwt3m6vERWLqgW59uPGyYbNEye14zcasPH0cc+L/obdbv/hSyZvQkurv8CiotzgI3BXTcbJ6Cr/avCiD5frmXLw+O36J9l8tK5N7IfS38+EKGDf3yhX33g/HWwhkpWhQI98DirAdjIqzBC8tHAlzkw+hYNoUaoVkfHgY7/LvuLKA9Zz1IIv49LfVL6JNOG0c1vXAdAk6BcAMV2AQZmlujMk+cmP7PWph5JN7cw6xNIBwdZ4Zy5xsAQSDbZmlY4/RdUpKBxuz7qERFDHHINb+51ud80Fyxn7v5f73f83lCpmdiCvFsGoROxafttL0NrPnaK+E2nZwjgakcoy8qR5Aj6ayCw8yjXJUHSvmVTfcCakhgw0vK+8qLJNgd0SL6r/P9skbDbor+ltYSV7rlphJtNYLeLDPSTADyARY85QTH7JzysaO9LMnz77dhBgTjgDHOMy7gE9CEcb086iksqXbKsUqV2TWzspMn7unWyvLXp+LDHkM5IWjc6rUt2KeDpuw1yS5XDJ0zL4VYony7G3U8nim+f5rVyt3Ja8OnTRv9rgKfEXkDmm7lTMyI7dExIxAC4+AwQQECSOrzVUbVruJv2XQ7DNQRTTLlj9+zJIAhm0EFUuuQ+zvxOxfbSF68fw5j02U02n6AvD/NXtjgVCNiTviRG+qtKx1vXD4l6BMP8HGT3n99igOykFnNcaBlIsRogzb18gDR+SSEYijXCA9SttQ0ISiwz7dCYO7sng4lTqAtzN+JYiS5saDLDAsklbXTnNvpBdwzGf9BlulgJeeGGzaXWd/7uJwZ8dcNcRso4pI+vV3yIbjMX1YS5DluV1PimWc/Q0fuPsjacEOtukBHvxELF2gJAZu4lTRjXP8fdQWunt/plmS7+YQqkn3bdALFk9EjHA+TqZ57ZeKAeywkOnyJwJCi6YD/EzAQWcOpML1xqdbvdilFWjEGVzs93eHi7vA8Lvp3iY4OUJnvMokjCpNx86tag++g8l9t1/y52SKb+nNC/zWpRs/nQxSxlGU5QhBWHdDq7oTldWqEoA4tMXSuBiSbg04bK7YblzNnUDdD8wOzAfMAcGBSsOAwIaBBSkvLUX6cZffafC6a35Q+pTFz1ngAQUBlz9XA3Beph2JfNfYGw4p4nlG/YCAgfQ\",\r\n \"decryptionCertPassword\": \"decryptionCertPassword\"\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "04277bb2-10d1-42b5-ba2d-3e397c978182" ], - "CommandName": [ "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "3733" ] } }, "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "d714b7dd-56c5-4e76-8427-a9a3aaf69c27" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "d714b7dd-56c5-4e76-8427-a9a3aaf69c27" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123734Z:d714b7dd-56c5-4e76-8427-a9a3aaf69c27" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "0c20bb2d-70b5-4158-b9e2-418f09da48ce" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/fR1N36U0HWcwIvnIECMvAdAS894ups0vQlPuBGiEC2DDE6fc+gHpt37ibJ+UCft2Oa6L3K+wiDu6d/czd/TkJ8nnatv2JvsELdnJkL0ufZQePQQKrPdmTJG1MkOBXkEVqe71R033pFe8OUtf8lV" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-request-id": [ "0c20bb2d-70b5-4158-b9e2-418f09da48ce" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142714Z:0c20bb2d-70b5-4158-b9e2-418f09da48ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:37:34 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCx/vjKF5PuVO59LudsiN0uzm78mNzgS32Exn+j5kNzh+hifAjX6MsCDeNEfWVs24ePiIubs7IsRHShI7AoPCR3Q+1Hn833yp4XC2VYxdVY+UC0zF8Bf5Jn7gwS6NUhM9OX0pHVQyfJHCsUqtAgvB" ] + "Date": [ "Mon, 01 Nov 2021 14:27:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+2": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28", "29" ], - "x-ms-client-request-id": [ "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "f8db8536-ed25-4d72-b2a3-444351e0cb42" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14969" ], - "x-ms-request-id": [ "f8db8536-ed25-4d72-b2a3-444351e0cb42" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123835Z:f8db8536-ed25-4d72-b2a3-444351e0cb42" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "6af1b6cd-b93c-46e4-bc48-6da601f787c2" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvStASCAfp6hNNYWw/yN+b+Puii2yHRciUhCDl6nwBSSIN/WA2OSSvohGl4MuAajS5PNSL4Z2wXu9ZiU9AHuywe5hU2enhdoKnMydP38+Rfa8HfhZoCLJdTGeTJpG9i8IgUDsaq8kIzwQz8ARzmXF9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14946" ], + "x-ms-request-id": [ "6af1b6cd-b93c-46e4-bc48-6da601f787c2" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142815Z:6af1b6cd-b93c-46e4-bc48-6da601f787c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:38:34 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQv7SHMRK3EuxxIWRLUdpGM/zv2ZaS6v9ykT7m2RvV9KF2/h/9156zm5VlUt46v/ZhDWarLTxBteljiFvK16nkkvZQ6P8GL/VQCSbm6b0Wy36TpQue9z5uPHEQJuUwsB8nPZp7+NuCwjNQm49qf0b" ] + "Date": [ "Mon, 01 Nov 2021 14:28:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+3": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28", "29", "30" ], - "x-ms-client-request-id": [ "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "13" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "a9a68c0f-70b3-4594-8686-7547067c26b3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14968" ], - "x-ms-request-id": [ "a9a68c0f-70b3-4594-8686-7547067c26b3" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T123935Z:a9a68c0f-70b3-4594-8686-7547067c26b3" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "aba418dd-54cc-41d8-aef6-512e368f8ca1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14945" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHHYIUeTKk5MV8A9WChkE/F3/ENCPu7I+VdmBx3Pxb8ZFLc8m5DMtQdndOOWbV+lK8GpLUSexioY01WVd+aDLaT/HJ9BZzw870iRuKRJI9CwDm64YsvdrKtFWei+pR98cIIOCCz4MaKCH3Ye5AlCW" ], + "x-ms-request-id": [ "aba418dd-54cc-41d8-aef6-512e368f8ca1" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142845Z:aba418dd-54cc-41d8-aef6-512e368f8ca1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:39:34 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBgMYZHsVV9fDAU7ZyZmXVqL7SswWJs7ywoZox+4ftuL5n3fJ3Go4wi0wOzDQ/VzHlAdiF9FRyHrHpIFTHUaZ/Uqw/6PBY28SDrGQODauw5Hfu4Wg7H1kI7xM2aKa+qoJDbjUmlv8dZ1IyYV7Uyud" ] + "Date": [ "Mon, 01 Nov 2021 14:28:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+4": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31" ], - "x-ms-client-request-id": [ "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "11a6af60-c5dd-4b0a-a710-db06793a7129" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14974" ], - "x-ms-request-id": [ "11a6af60-c5dd-4b0a-a710-db06793a7129" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124036Z:11a6af60-c5dd-4b0a-a710-db06793a7129" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "cbc64da1-d0c7-46b3-8531-3a13ef2900e5" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQpCw2P8O/cPqPte3SG0BIp/IXvuchXu1a+EmKU/u/xo/oLj4U5BZhfstn/gBWNmAywzPZOkB3lYFVs2t7iiIMfOLJvGupeQ2fkg4mFXS1LdGweCpck5aDgt0Y4aoAK4cJkUfk34Vh28hc//l3RGD" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14944" ], + "x-ms-request-id": [ "cbc64da1-d0c7-46b3-8531-3a13ef2900e5" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142916Z:cbc64da1-d0c7-46b3-8531-3a13ef2900e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:40:35 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+0vrA3le2kF2BlQRl7UUX0L2FnAnNo1Xzelxn2JZxYfqeMrCQMgbFZFNZN+P2656veTl3GP8AYbxiTBk8agnsS7d28Vg1H5ndfBZOmIjtqFjX+oOAOkyE7sNDpmEQCoTm4rRXaRL/MsXp0yq5CpP" ] + "Date": [ "Mon, 01 Nov 2021 14:29:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+5": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32" ], - "x-ms-client-request-id": [ "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "37356adc-1df7-4063-ab37-7ffccff9dd73" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14973" ], - "x-ms-request-id": [ "37356adc-1df7-4063-ab37-7ffccff9dd73" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124136Z:37356adc-1df7-4063-ab37-7ffccff9dd73" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "6626f5d4-0498-4d1a-a972-f743ab20caf6" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJRsXzjHE+dT+rbW1WRMIjjsb6H1ASVGbEdpItmxNWXCey3wDQGnk6jhHGBxxMS7I629kn+aX2+kISS6HBNYQnMRyk4ghMKmLmH0nUKoiwFyPVHsv6du1sL1L8XlpfEPGWavsdlnRk053MvHCbhpr" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14943" ], + "x-ms-request-id": [ "6626f5d4-0498-4d1a-a972-f743ab20caf6" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T142947Z:6626f5d4-0498-4d1a-a972-f743ab20caf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:41:36 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1mhNRwvYgyvmS1Xhj5XiU0mgkJkMWep33dxp5/9cLc/sfMSWwbZqlggFIW+QBvhujW+mG4CPgJjL5WL/lRaQIq36DLmWWhGeyPlCZ3Je8idCMBWi/z8gC0ykFqW6nWvKCGwiJYT6NorsYx7ex3+E" ] + "Date": [ "Mon, 01 Nov 2021 14:29:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+6": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33" ], - "x-ms-client-request-id": [ "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "678b4709-fbce-4fc2-afdd-3b3bbd7f9c00" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14972" ], - "x-ms-request-id": [ "678b4709-fbce-4fc2-afdd-3b3bbd7f9c00" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124237Z:678b4709-fbce-4fc2-afdd-3b3bbd7f9c00" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "5e7ad317-c5b3-40d7-82dc-4e70cc488e7c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14945" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDwkFicyJzmG9f0OiEue1Ws/qeQGRx9ufNiyyJT5NTjfGnA0nXv+9rB5Z24vcFpr4SeoBoJ7P1HRFQU/352R2opZxtVSFxDBrRRwOH6SbtThghFLD0OdA6vjCteZTNsMNjNQO4buVBnCcjuHTqHgF" ], + "x-ms-request-id": [ "5e7ad317-c5b3-40d7-82dc-4e70cc488e7c" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T143017Z:5e7ad317-c5b3-40d7-82dc-4e70cc488e7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:42:37 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdVR9H4/Ni74uj8YEfwgOuCrcyHTDzB5pThp2MeLiukSBjg5xIEes+ft4A+8C6TiNH/tcGNmohanHl/UowReSOdwRAKuPFcUY2Hlvpnttme4pd4vpQaoBfn+dkcop3NfSO4XWfr1W3InybxgfW9aR" ] + "Date": [ "Mon, 01 Nov 2021 14:30:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+7": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34" ], - "x-ms-client-request-id": [ "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "17" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "8f4b5abc-5ce8-4a5b-905b-a18ac29ede89" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14971" ], - "x-ms-request-id": [ "8f4b5abc-5ce8-4a5b-905b-a18ac29ede89" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124337Z:8f4b5abc-5ce8-4a5b-905b-a18ac29ede89" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "4aa0c2b8-5ed0-4381-9e40-2274eefb5bdd" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9uwFM2c/ULk34lPx+1Go0nHJ1esy7cdrz4XWHLq8I/Vba4/yuE0/jdHo4IJB3hYdMBgJMjwL/zfOm1MDwT+QOsWz0EgBurfnp9T9d4Y22Mcg9YDECdA01QbomD7GP++iJ0dI0hMuZG1iLaub7dQf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14944" ], + "x-ms-request-id": [ "4aa0c2b8-5ed0-4381-9e40-2274eefb5bdd" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T143048Z:4aa0c2b8-5ed0-4381-9e40-2274eefb5bdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:43:37 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQVkMkE0ZU3GVWby1Ra37cHZ3IyfrBOsg4fkY2znK7tbQI0ppno4IyXsUB4U+t5pJ4bxPqkpq1F4wwLT/IZjLPJMFvYZkvU+t2YeSZiYSLpjHq74lRgVpfl676s/SkT54x5Ncz6OJ7UhD7lnp7wpN" ] + "Date": [ "Mon, 01 Nov 2021 14:30:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01+8": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/69ebefe9-7b1b-414a-99ad-49edf061d845?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "28", "29", "30", "31", "32", "33", "34", "35" ], - "x-ms-client-request-id": [ "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182", "04277bb2-10d1-42b5-ba2d-3e397c978182" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -836,164 +1833,179 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6058503e-64a0-4550-828d-931d39e66706" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14970" ], - "x-ms-request-id": [ "6058503e-64a0-4550-828d-931d39e66706" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124438Z:6058503e-64a0-4550-828d-931d39e66706" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "91055b68-2f8b-4056-b284-49d4ff2f7b8e" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwBn5N/2ZErNwB01DP9JCDjcWetwB7z1Gdt1NUpaD/wys2oEngJ6nU8S3DGKd749FeFZlnlST/jHZsb5rCCJfhN9YSOViPsyfrVMHXDEOF74SZVLcnVzi+8BjoRociCpv1sRmhxHO3qOwNHitzs/m" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14942" ], + "x-ms-request-id": [ "91055b68-2f8b-4056-b284-49d4ff2f7b8e" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T143118Z:91055b68-2f8b-4056-b284-49d4ff2f7b8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:44:38 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIsZTw//jv/6Nk3vzKlar2uRVPfvTo99HDbVFj+XGg4lmYOUk8X0cQVmpRVDwHgvpBsM0uu77kSoambJOVQajpE995BGkMx5lWYAaUmP3J2LzqINJUimnkB6WJFFDL44UPuA5OsDBwDz1xDEpxqjM" ] + "Date": [ "Mon, 01 Nov 2021 14:31:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1290" ], + "Content-Length": [ "67" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"name\":\"redmond/69ebefe9-7b1b-414a-99ad-49edf061d845\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"69ebefe9-7b1b-414a-99ad-49edf061d845\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:42:50.0310854Z\",\"timeTakenToCreate\":\"PT5M15.1452343S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptedBackupEncryptionKey\":\"WdwFE0zU6T8n04XYQAuxDMYpal525w60b0GCyuoaP+vCr3544qFmRvzazSBU1IqV9/cdmqpCDEajJ0bG3pa1WMYh5u/NMGCOXZGjkKNZLQKjkbwbBRdBPRHfeF3cz3Cf+N4rYnXFUTZ/T1OabUVE1TAxy4TxJk5paiX0MixfaJhNKmONsVAO03oMhdEpjzKj/Lg2nZ76LaUYP6jpFSi5igwZj3rADofa94isUb9m2059wYwNIEBuxIccS9EnTqSf7Fe6X0LDkYMbq0ahTZtuy1Xq0vUXzxQuMYboVmmsH4rGXk3EEl5g+MfDHE1Z28037fBhMK6HwtZTfUPw2y2QGw==\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$POST+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845/restore?api-version=2018-09-01+9": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+19": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/69ebefe9-7b1b-414a-99ad-49edf061d845/restore?api-version=2018-09-01", - "Content": "{\r\n \"decryptionCertBase64\": \"ZGVjcnlwdGlvbkNlcnQ=\",\r\n \"decryptionCertPassword\": \"password\"\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "37" ], - "x-ms-client-request-id": [ "fb9a96e1-3521-4d73-b3db-2a2b9384c457" ], + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "3719" ] } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "e52d122b-df18-4f8c-9cc9-5de977a7968f" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "e52d122b-df18-4f8c-9cc9-5de977a7968f" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124442Z:e52d122b-df18-4f8c-9cc9-5de977a7968f" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "d8bf7564-77b9-4566-ad2b-b11e3b9df6a9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnPHpQfbAsGbI7MRhbIxb0fz+3x6+kRaYprTWjdQEo0yKQ9oomATMaV7qTM08/m6wqMCd7Yv9aG4ZXikRiWRaP52mIOeYCRophlx8eEKje/3lQDQdP5ZubJLEWK+NsiSLN7DTx4W22QY2ibYjmv8E" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14941" ], + "x-ms-request-id": [ "d8bf7564-77b9-4566-ad2b-b11e3b9df6a9" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T143149Z:d8bf7564-77b9-4566-ad2b-b11e3b9df6a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:44:41 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOLevoe9f0lxIJyaeMEQKpAG1D7h1CFtE78f9bRFWUp+ps9iFIz4GuVusJK7iyxVYml8orzG2clTnFnSHY4ZUKHLxMR+ssfVwHmIpJhvPigktKxyYMwiT1Hd1gjKvSkHE2kafmpr/AtoP233P1lWE" ] + "Date": [ "Mon, 01 Nov 2021 14:31:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01+10": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "37", "38" ], - "x-ms-client-request-id": [ "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "23d3e790-4e30-4a75-a6ee-e431abfdddb9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14966" ], - "x-ms-request-id": [ "23d3e790-4e30-4a75-a6ee-e431abfdddb9" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124542Z:23d3e790-4e30-4a75-a6ee-e431abfdddb9" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "88b7ea52-88bb-4535-911f-d01bf59f0b5c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPgH/a6fNCBGv0xhhVCntWvYmK+M/8BkvCWskPyHMSlhPjbw+V+9WRFiS0JrZVuccC/10vkP0lqrIBqQ1vz9/r0S8t8p+eeENCABJ2TyHdRyz7Rf/sHDwwq+Irc2jBnwfx4/xhQhUjPHi9OH2Cg4Y" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14940" ], + "x-ms-request-id": [ "88b7ea52-88bb-4535-911f-d01bf59f0b5c" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T143222Z:88b7ea52-88bb-4535-911f-d01bf59f0b5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:45:42 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPyO0LtZzycWQ16n9iNYH8D/s4ubQEgq1r5f6qyUWYwu59wbCRXlXMtbak8QnAcZ0/PoydXTb7s52tdYx4MM7txp9oz+nBzxJwEpKdw/w+jeQ16c52R623kdhca5x/QjRcO83G/UJEZ0LveZShtQV" ] + "Date": [ "Mon, 01 Nov 2021 14:32:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01+11": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "37", "38", "39" ], - "x-ms-client-request-id": [ "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "21" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "e4c64bb5-5235-429e-977d-b73183ea81b1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14965" ], - "x-ms-request-id": [ "e4c64bb5-5235-429e-977d-b73183ea81b1" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124643Z:e4c64bb5-5235-429e-977d-b73183ea81b1" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "237fe215-d3cc-43a6-97c0-1741bd9407cb" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqWnteaVa2KEZz1za15qotubvJKFpET31siSz2UFozjHu11rtZmheE+M9KiJVI9daHPI9Nt8Xj3xoKqDR2+pQ1shiS6Qr3Dhrs2A2CO5fD4zz+oz0kN+dT7whxDCADIhN6ZTBRko/fvTNq4iAtZq2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14939" ], + "x-ms-request-id": [ "237fe215-d3cc-43a6-97c0-1741bd9407cb" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T143252Z:237fe215-d3cc-43a6-97c0-1741bd9407cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:46:43 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNBs7zDQ4fQLkCHwBn2hWHwk8bqIOm/kM5cBU9d8ERA0Akv5W3Hy7Iky4Tv5woltADjeKNq86SmzPaazVLlLKEh/Lr/ofby26TQS1a2Ul6QDOR1IgnS9P94WS5somCuYfLXcGSaVmF3Bgyabyt5u1" ] + "Date": [ "Mon, 01 Nov 2021 14:32:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01+12": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "37", "38", "39", "40" ], - "x-ms-client-request-id": [ "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -1001,38 +2013,41 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "648a3def-7a31-4395-b0cd-1c83ee5eae7f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14964" ], - "x-ms-request-id": [ "648a3def-7a31-4395-b0cd-1c83ee5eae7f" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124743Z:648a3def-7a31-4395-b0cd-1c83ee5eae7f" ], + "x-ms-correlation-request-id": [ "2073678a-a5f2-4015-8301-d10849c2d065" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdkzh+bekPXfU1Oy8qzKfeQJwSdp6wHfZKkwKO7KnDCw2E7fG0uDMwPTy8kUTBJX6KDbSwZzb+mKR6KyP5lh7QJ2jQVG0wbI7LlQVl0wNC/g0XJod+ofWMj/Bd+TFMl66vxuUvrNsqA6nHRy8coCV" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14938" ], + "x-ms-request-id": [ "2073678a-a5f2-4015-8301-d10849c2d065" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T143323Z:2073678a-a5f2-4015-8301-d10849c2d065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:47:43 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlQjJcK+dLLjCWjcH7FTbhjufyBTKAeP77UjhpImYcRIyU6sNJGDTegk6vfjxwYSj5l684/KZjz9qkhCdlGsrC2xRib6lBZSYpudUhTlQhDw/IF7FVjIm/D8uxYt/SbexN0dFZ9Ro4BGrejQIPnyh" ] + "Date": [ "Mon, 01 Nov 2021 14:33:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "22" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Succeeded\"}", + "isContentBase64": false } }, - "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01+13": { + "Restore-AzsBackup+[NoContext]+TestRestoreBackupViaIdentityExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/0bd4a952-efc3-49cd-a296-2f5ec7214d49?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/9f65c2c5-992b-46e3-8a6f-7b75598dd547?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "37", "38", "39", "40", "41" ], - "x-ms-client-request-id": [ "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457", "fb9a96e1-3521-4d73-b3db-2a2b9384c457" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup", "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], - "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded", "Restore-AzsBackup_RestoreExpanded" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "23" ], + "x-ms-client-request-id": [ "dd06652d-dc65-4140-afcb-3c8a4eb564df" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Restore-AzsBackup" ], + "FullCommandName": [ "Restore-AzsBackup_RestoreExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -1040,23 +2055,25 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fb74a7f5-c3af-4669-89cf-778b85697fb0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14963" ], - "x-ms-request-id": [ "fb74a7f5-c3af-4669-89cf-778b85697fb0" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T124743Z:fb74a7f5-c3af-4669-89cf-778b85697fb0" ], + "x-ms-correlation-request-id": [ "c20e062c-be16-4b67-9c5f-34746502cc41" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4goG3jr3bJJJqdhcyXamH/Cnuweyyvf9iR4GgJvetoJMJqYLcyFPG2LiA2E3n1XtlzpVDIdKizHq8n3aKoLTAQwtQUr3B9LhH/mtQr2ZXWAR9Ljg4WpfwWh4HSUZOo4l1FfN+gLhI3C42xc+DZv5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14937" ], + "x-ms-request-id": [ "c20e062c-be16-4b67-9c5f-34746502cc41" ], + "x-ms-routing-request-id": [ "REDMOND:20211101T143323Z:c20e062c-be16-4b67-9c5f-34746502cc41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:47:43 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8XmSPQV/L21FIysPLJk/a7ZyomWXWO703Fhzdv4GXFwnQJjEWm9CcS4T5ckrlgDTOWY9U0dC+Olt6EMD/QcpfWq8MTkliGwereuU2nmRjUcYGXQ/7Gfco/lq4AbUmaeJJmPlywd/LX4qd0kJ/5Qf" ] + "Date": [ "Mon, 01 Nov 2021 14:33:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "4" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "bnVsbA==", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Set-AzsBackupConfiguration.Recording.json b/src/Azs.Backup.Admin/test/Set-AzsBackupConfiguration.Recording.json deleted file mode 100644 index d963b23a..00000000 --- a/src/Azs.Backup.Admin/test/Set-AzsBackupConfiguration.Recording.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "Set-AzsBackupConfiguration+[NoContext]+TestUpdateBackupLocationExpanded+$PUT+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01", - "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"externalStoreDefault\": {\r\n \"path\": \"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\r\n \"backupFrequencyInHours\": 10,\r\n \"backupRetentionPeriodInDays\": 6,\r\n \"encryptionCertBase64\": \"ZW5jcnlwdGlvbkNlcnQ=\",\r\n \"isBackupSchedulerEnabled\": false,\r\n \"password\": \"password\",\r\n \"userName\": \"AzureStackAdmin\"\r\n }\r\n }\r\n}", - "Headers": { - "x-ms-unique-id": [ "1" ], - "x-ms-client-request-id": [ "033548c3-427c-4dd0-b777-214a2c4afc46" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Set-AzsBackupConfiguration" ], - "FullCommandName": [ "Set-AzsBackupConfiguration_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1506" ] - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Pragma": [ "no-cache" ], - "Retry-After": [ "5" ], - "x-ms-correlation-request-id": [ "28dc5876-f4d8-42b5-a19a-c42349e643ff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "28dc5876-f4d8-42b5-a19a-c42349e643ff" ], - "x-ms-routing-request-id": [ "REDMOND:20200305T011625Z:28dc5876-f4d8-42b5-a19a-c42349e643ff" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 05 Mar 2020 01:16:25 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6034df7e-6d95-4551-b146-b6a7a101794d?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvX4hvVS6CSDpzzm9+I0C5nrjDbmdJdo2Dxc9KZeGlWxot47mfZo0bFPnvp/LtoP/kJJ+ilDO2eE6FrWYDAoyk+j7DeAv+wbtLZn3I3QZH5mTvM7pVuWqG5gO8hT68sICLaFHl6XF5Pu5gZyOqqbB8" ] - }, - "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] - }, - "Content": null - } - }, - "Set-AzsBackupConfiguration+[NoContext]+TestUpdateBackupLocationExpanded+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6034df7e-6d95-4551-b146-b6a7a101794d?api-version=2018-09-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/6034df7e-6d95-4551-b146-b6a7a101794d?api-version=2018-09-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "1", "2" ], - "x-ms-client-request-id": [ "033548c3-427c-4dd0-b777-214a2c4afc46", "033548c3-427c-4dd0-b777-214a2c4afc46" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Set-AzsBackupConfiguration", "Azs.Backup.Admin.internal\\Set-AzsBackupConfiguration" ], - "FullCommandName": [ "Set-AzsBackupConfiguration_UpdateExpanded", "Set-AzsBackupConfiguration_UpdateExpanded" ], - "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" ], - "x-ms-correlation-request-id": [ "0e04461f-02a5-45e6-89d2-953dc8182b23" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14991" ], - "x-ms-request-id": [ "0e04461f-02a5-45e6-89d2-953dc8182b23" ], - "x-ms-routing-request-id": [ "REDMOND:20200305T011630Z:0e04461f-02a5-45e6-89d2-953dc8182b23" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 05 Mar 2020 01:16:30 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgiy9p0LaeYPBlI36qGgSZl0x9GyZLp2sONpzpO12rJvAH6l6JWvLhMmJ22r+qceRUD8rnWPjFxWo+WhRDFnHihftZ/iy95+jt97VpV8JkDxRX65C2YTx8WIq3Nqu+98rVJXjbNZlRcruO74w+Skv" ] - }, - "ContentHeaders": { - "Content-Length": [ "707" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"0.99 TB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2020-03-05T07:19:27.0052095Z\",\"lastBackupTime\":\"2020-03-04T12:42:50.0310854Z\",\"backupRetentionPeriodInDays\":6}}}" - } - }, - "Set-AzsBackupConfiguration+[NoContext]+TestUpdateBackupLocation+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "2b68e104-7623-41e2-9aea-424fb8d26282" ], - "CommandName": [ "Get-AzsBackupConfiguration" ], - "FullCommandName": [ "Get-AzsBackupConfiguration_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "24b26cee-4867-4fe1-9a43-912c915aaebb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14988" ], - "x-ms-request-id": [ "24b26cee-4867-4fe1-9a43-912c915aaebb" ], - "x-ms-routing-request-id": [ "REDMOND:20200305T011634Z:24b26cee-4867-4fe1-9a43-912c915aaebb" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 05 Mar 2020 01:16:33 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuR5+4vZ+JJFJsRRK48LvoT2/1V2q4tcpcZofFErCb3nSLCjE4rNgONz+b3Qh0FPRkxoKaMgeD67oQ4FPZIVFeiyFiJtsQe24NVfIon2TnFbPMfFe7c0aGxQ0PFMsgAnjij8EJNXDshK0d+xwdhU3" ] - }, - "ContentHeaders": { - "Content-Length": [ "707" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"0.99 TB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2020-03-05T07:19:27.0052095Z\",\"lastBackupTime\":\"2020-03-04T12:42:50.0310854Z\",\"backupRetentionPeriodInDays\":6}}}" - } - }, - "Set-AzsBackupConfiguration+[NoContext]+TestUpdateBackupLocation+$PUT+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01+2": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2018-09-01", - "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"externalStoreDefault\": {\r\n \"path\": \"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\r\n \"backupFrequencyInHours\": 10,\r\n \"backupRetentionPeriodInDays\": 6,\r\n \"encryptionCertBase64\": \"ZW5jcnlwdGlvbkNlcnQ=\",\r\n \"isBackupSchedulerEnabled\": false,\r\n \"password\": \"password\",\r\n \"userName\": \"AzureStackAdmin\"\r\n }\r\n }\r\n}", - "Headers": { - "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "50d88b2d-9163-4e7e-aabd-3a330e2f1fbd" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Set-AzsBackupConfiguration" ], - "FullCommandName": [ "Set-AzsBackupConfiguration_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "1506" ] - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Pragma": [ "no-cache" ], - "Retry-After": [ "5" ], - "x-ms-correlation-request-id": [ "d4bbf42c-100e-44d3-92ce-7a7164179a45" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "d4bbf42c-100e-44d3-92ce-7a7164179a45" ], - "x-ms-routing-request-id": [ "REDMOND:20200305T011636Z:d4bbf42c-100e-44d3-92ce-7a7164179a45" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 05 Mar 2020 01:16:36 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c530454c-8ec6-473b-b693-6ccc21dfe70a?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuZzfQNjzCs+zOjIau6A0j1bXWqVxtMwgaB1osWG8ZggHN50PO+susMYFlFLhyJHt4O17Y08y3YW6/BDlJOx8CELs33dRBmUuoOreoi2jr66F/Lr/8q0ikfad3xt5jtXHkpbwE95JMP5yVLJmtAso" ] - }, - "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] - }, - "Content": null - } - }, - "Set-AzsBackupConfiguration+[NoContext]+TestUpdateBackupLocation+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c530454c-8ec6-473b-b693-6ccc21dfe70a?api-version=2018-09-01+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c530454c-8ec6-473b-b693-6ccc21dfe70a?api-version=2018-09-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "4", "5" ], - "x-ms-client-request-id": [ "50d88b2d-9163-4e7e-aabd-3a330e2f1fbd", "50d88b2d-9163-4e7e-aabd-3a330e2f1fbd" ], - "CommandName": [ "Azs.Backup.Admin.internal\\Set-AzsBackupConfiguration", "Azs.Backup.Admin.internal\\Set-AzsBackupConfiguration" ], - "FullCommandName": [ "Set-AzsBackupConfiguration_Update", "Set-AzsBackupConfiguration_Update" ], - "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" ], - "x-ms-correlation-request-id": [ "a16fadc8-aa31-4110-a524-a3be922224f6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14985" ], - "x-ms-request-id": [ "a16fadc8-aa31-4110-a524-a3be922224f6" ], - "x-ms-routing-request-id": [ "REDMOND:20200305T011641Z:a16fadc8-aa31-4110-a524-a3be922224f6" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 05 Mar 2020 01:16:41 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVZ4fxv7EMq5ymnSYz8ODmLvp5tF5d148FKhjflzkPIpzEXcclFYWw4JNlX71B5X5HjBO1mu81m//NZyzZnpyvrE9W4khXBKonaoVc9OrTG4HS1ieh9iAaDiPIe8HFX0tTA2ROUbDHBnzM1MBcurd" ] - }, - "ContentHeaders": { - "Content-Length": [ "707" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"0.99 TB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2020-03-05T07:19:27.0052095Z\",\"lastBackupTime\":\"2020-03-04T12:42:50.0310854Z\",\"backupRetentionPeriodInDays\":6}}}" - } - } -} \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Set-AzsBackupConfiguration.Tests.ps1 b/src/Azs.Backup.Admin/test/Set-AzsBackupConfiguration.Tests.ps1 deleted file mode 100644 index eab0a0b6..00000000 --- a/src/Azs.Backup.Admin/test/Set-AzsBackupConfiguration.Tests.ps1 +++ /dev/null @@ -1,79 +0,0 @@ -. (Join-Path $PSScriptRoot 'loadEnvJson.ps1') - -$TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzsBackupConfiguration.Recording.json' -$currentPath = $PSScriptRoot -while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent -} -. ($mockingPath | Select-Object -First 1).FullName - -Describe 'Set-AzsBackupConfiguration' { - . $PSScriptRoot\Common.ps1 - - AfterEach { - $global:Client = $null - } - - It "TestUpdateBackupLocationExpanded" -Skip:$('TestUpdateBackupLocationExpanded' -in $global:SkippedTests) { - $global:TestName = 'TestUpdateBackupLocationExpanded' - - try - { - [System.IO.File]::WriteAllBytes($global:encryptionCertPath, [System.Convert]::FromBase64String($global:encryptionCertBase64)) - $location = Set-AzsBackupConfiguration -Username $global:username -Password $global:password -Path $global:path -EncryptionCertPath $global:encryptionCertPath -IsBackupSchedulerEnabled:$global:isBackupSchedulerEnabled -BackupFrequencyInHours $global:backupFrequencyInHours -BackupRetentionPeriodInDays $global:backupRetentionPeriodInDays - ValidateBackupLocation -BackupLocation $location - - $location | Should Not Be $Null - $location.Path | Should Be $global:path - $location.Username | Should be $global:username - $location.Password | Should -BeNullOrEmpty - $location.EncryptionCertBase64 | Should -BeNullOrEmpty - $location.IsBackupSchedulerEnabled | Should be $global:isBackupSchedulerEnabled - $location.BackupFrequencyInHours | Should be $global:backupFrequencyInHours - $location.BackupRetentionPeriodInDays | Should be $global:backupRetentionPeriodInDays - } - finally - { - if (Test-Path -Path $global:encryptionCertPath -PathType Leaf) - { - Remove-Item -Path $global:encryptionCertPath -Force -ErrorAction Continue - } - } - } - - It "TestUpdateBackupLocation" -Skip:$('TestUpdateBackupLocation' -in $global:SkippedTests) { - $global:TestName = 'TestUpdateBackupLocation' - - try - { - [System.IO.File]::WriteAllBytes($global:encryptionCertPath, [System.Convert]::FromBase64String($global:encryptionCertBase64)) - $location = Get-AzsBackupConfiguration - $location.UserName = $global:username - $location.Password = $global:passwordStr - $location.Path = $global:path - $location.EncryptionCertBase64 = $global:encryptionCertBase64 - $location.IsBackupSchedulerEnabled = $global:isBackupSchedulerEnabled - $location.BackupFrequencyInHours = $global:backupFrequencyInHours - $location.BackupRetentionPeriodInDays = $global:backupRetentionPeriodInDays - $result = $location | Set-AzsBackupConfiguration - ValidateBackupLocation -BackupLocation $result - - $result | Should Not Be $Null - $result.Path | Should Be $global:path - $result.Username | Should be $global:username - $result.Password | Should -BeNullOrEmpty - $result.EncryptionCertBase64 | Should -BeNullOrEmpty - $result.IsBackupSchedulerEnabled | Should be $global:isBackupSchedulerEnabled - $result.BackupFrequencyInHours | Should be $global:backupFrequencyInHours - $result.BackupRetentionPeriodInDays | Should be $global:backupRetentionPeriodInDays - } - finally - { - if (Test-Path -Path $global:encryptionCertPath -PathType Leaf) - { - Remove-Item -Path $global:encryptionCertPath -Force -ErrorAction Continue - } - } - } -} diff --git a/src/Azs.Backup.Admin/test/Start-AzsBackup.Recording.json b/src/Azs.Backup.Admin/test/Start-AzsBackup.Recording.json index 265dc24b..48420f87 100644 --- a/src/Azs.Backup.Admin/test/Start-AzsBackup.Recording.json +++ b/src/Azs.Backup.Admin/test/Start-AzsBackup.Recording.json @@ -1,16 +1,17 @@ { - "Start-AzsBackup+[NoContext]+TestCreateBackup+$POST+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2018-09-01+1": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$POST+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2021-09-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/createBackup?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000" ], + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], "CommandName": [ "Start-AzsBackup" ], "FullCommandName": [ "Start-AzsBackup_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,327 +20,355 @@ "Response": { "StatusCode": 202, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01" ], "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "b94eae42-bea2-4343-bddc-aaa92249d9eb" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "b94eae42-bea2-4343-bddc-aaa92249d9eb" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121543Z:b94eae42-bea2-4343-bddc-aaa92249d9eb" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "04350d07-f5e2-4985-8068-1776076ec78f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvC2yFOfGo1yC+R10/5A8K0ERNdFqNj/c9G3S7phzN24da9jqhW/EArVfkNhCXtUsZ6bsx/diOVUzPf48ALSpWh63NLchInha8vxtLARjOEjyrmT6lVM2tFtdMDaJebd7la8FOMgPfHfNMHY5qo9DA" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "04350d07-f5e2-4985-8068-1776076ec78f" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131350Z:04350d07-f5e2-4985-8068-1776076ec78f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:15:43 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjpCVMn7IrUYGPI3FN2tEw+ith9mT9q67AkEcXOAwz/qH1cJxcuTpYhab0LInatAq/OsN3WlPb8Rd0RclyIDJSLBKKc0mWQPeCM21T/Drg0+6djDXkNztLnUuBfgQdl5q/npLMEw2PgRia1dOgYAK" ] + "Date": [ "Sun, 31 Oct 2021 13:13:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] + "Expires": [ "-1" ], + "Content-Length": [ "0" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+2": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6", "7" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "b65dc85e-6a47-453b-be93-c724be80ab57" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14953" ], - "x-ms-request-id": [ "b65dc85e-6a47-453b-be93-c724be80ab57" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121644Z:b65dc85e-6a47-453b-be93-c724be80ab57" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "49452578-3b10-4af8-b322-f1e4b167dd4f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14913" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLadEfEHDq5viMFcQYujfK+JeUqZNpWWKQAIj7eiNofTkHLcsPHHQYfBzdfF8s4bpu7uVdYE/RyAC9oPT0beYfs0nFbLe5QaUqjBMBkKnZnamA8hnnYcun/0YzPdZeyh1WP7ktAitgCplW51qmP8E" ], + "x-ms-request-id": [ "49452578-3b10-4af8-b322-f1e4b167dd4f" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131450Z:49452578-3b10-4af8-b322-f1e4b167dd4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:16:44 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbrbLNKtSppPs2uO5h7apme7PQpHwlhaMDJOKVNZHy+KY5HKQIk0LHcD3qXjByWsceOpuXqx6wuxsLj4zRouEpyoQbTZzP26IeTFl1XE9Tdyfnw3bwDfmffUNn64vyw07dMnnG6douroBq2j7l0n9" ] + "Date": [ "Sun, 31 Oct 2021 13:14:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+3": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6", "7", "8" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "11773af2-e840-438b-bc4b-0b97cf553499" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14952" ], - "x-ms-request-id": [ "11773af2-e840-438b-bc4b-0b97cf553499" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121744Z:11773af2-e840-438b-bc4b-0b97cf553499" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "c55b8e25-258b-4715-b744-0bfbd587d99e" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8Et1oNBFKIqu8TwK5kixBVnpG2Vp4qSgwY2MsUDzrqeMdrlu0pK+Ow9+zurFDKqqGGXBbG6D7wVY8ACMvhzNyZtVIS2g6HO/RHa0CD0OCSiQgil7UL/aHz3mOtlltnXu5OFA69h1nuuB/xe+HDiZ" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14918" ], + "x-ms-request-id": [ "c55b8e25-258b-4715-b744-0bfbd587d99e" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131527Z:c55b8e25-258b-4715-b744-0bfbd587d99e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:17:44 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsURsQXNFD/Ni0BI8uhjFhaD5e+QSeugtghy1dypv+uNyNdjBhonlffDZPytMXh/9tquJi4WzuSrymsHCFOi11TnXKP3jiBH/12o91gJ7Jbg7fXBO1sDvxnjVvfdL+hJkK50VLMysrYyixGEi2Qq/" ] + "Date": [ "Sun, 31 Oct 2021 13:15:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+4": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6", "7", "8", "9" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "09d42389-7aa3-4c1c-bc4a-9ffc566c3bcb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14951" ], - "x-ms-request-id": [ "09d42389-7aa3-4c1c-bc4a-9ffc566c3bcb" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121844Z:09d42389-7aa3-4c1c-bc4a-9ffc566c3bcb" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "d0df97dc-aadd-4f45-a056-7d6c11569f84" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14917" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAHBHAd8UTsJmV6/WCGB2dBe09u90gqGgAVliMXw0RzU9UQ7xuBkpx/xSlfusq77g4Dh5xAcVPgY1GJ/zMYgwwoVK4crMiy4QGCd/622cEvHqWAuqPeUDpGf/MbrprinDLwIYbmxGvXG9bzo3S0bx" ], + "x-ms-request-id": [ "d0df97dc-aadd-4f45-a056-7d6c11569f84" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131600Z:d0df97dc-aadd-4f45-a056-7d6c11569f84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:18:44 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvg/Jr4P7TtFFBtscwJArN9aulgFqoJw0LqZn0NX8OLqmV71J59y1kMcKBt80hVJzvhd9apdzkT8qLusJcY9u9cT1AQd0DveDqDr67fFIYSbtpqrzjZxch+enXZWoCFG+WHjt3PB4pJ1ijTjNrYIE2" ] + "Date": [ "Sun, 31 Oct 2021 13:16:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+5": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6", "7", "8", "9", "10" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "ParameterSetName": [ "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets", "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview", "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "bc23c95b-8327-444b-a78b-11112f60800b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14950" ], - "x-ms-request-id": [ "bc23c95b-8327-444b-a78b-11112f60800b" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T121945Z:bc23c95b-8327-444b-a78b-11112f60800b" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "ad45c4dd-ebd5-4909-8fde-bdf8375f87b3" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuTYGtzZOAZKmtY3MoK6ns8JJyMwZqPZT7uMwLFVskbNdCiFiy28NQzqYQY6Lw/e8u2yKg8h5ZKDIpzezx59jWapN1A553QFU4KUFweyQuq/Gm1dYT1YlSReZFl+AAT7qSsaxkqpqRDKHrifnScpg" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14916" ], + "x-ms-request-id": [ "ad45c4dd-ebd5-4909-8fde-bdf8375f87b3" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131630Z:ad45c4dd-ebd5-4909-8fde-bdf8375f87b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:19:45 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIlMp7u9+7aQJpaKHCtHUPkrhQGFl2fm+wccce9t+MWpRoeuV3uYEla61zCVo+MygSMxIgy6EdWCLRvHfmjDGVUPsXD2a6ouem3wrE1FTepVlPkwMZ46gOoUZXxqoBu0p9ydg05OQ3y0TzpKeAuxj" ] + "Date": [ "Sun, 31 Oct 2021 13:16:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+6": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6", "7", "8", "9", "10", "11" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "d1e3f46b-5ced-45e3-b2b6-8b413f5c99cb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14965" ], - "x-ms-request-id": [ "d1e3f46b-5ced-45e3-b2b6-8b413f5c99cb" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T122045Z:d1e3f46b-5ced-45e3-b2b6-8b413f5c99cb" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "714cfe76-265c-4f31-b141-e37ad3c47a84" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvI9oo3kzAEX8d488TzcHJ+q3UvbDH/chSlOIrFKjoBMW9d08492VyQ5hkDcec/gS7gCPriJ0Xgj1kY1fbfc09TNmurL18fjE2RfADhnifnMeO74I9t+zwlpQPexjvOIrX7EonSe/bCUdp9ponrgsx" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14915" ], + "x-ms-request-id": [ "714cfe76-265c-4f31-b141-e37ad3c47a84" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131701Z:714cfe76-265c-4f31-b141-e37ad3c47a84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:20:45 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviT1E5XZt1foC74kT8eSLtgJLqGX99iPftCQT4YCHGXEahd8dGqPumchcybVGjnYT/kw484TIi26J+cdk4JS9fu/MnkUR7DdXiNBMxHS4hb/+HkA38jVKlGN1LRM+3KczBivXyq6pbWl9whd9jTg1" ] + "Date": [ "Sun, 31 Oct 2021 13:17:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+7": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6", "7", "8", "9", "10", "11", "12" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "526d448e-cb81-446a-9d85-3f71d545c6f1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14964" ], - "x-ms-request-id": [ "526d448e-cb81-446a-9d85-3f71d545c6f1" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T122146Z:526d448e-cb81-446a-9d85-3f71d545c6f1" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "a5f13713-bc5e-4135-b2cf-fbbd73c3c6ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14914" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvacMboAfIgNLse+5XReg3ZoSEY/+UaJSlgnrmPBfNvBtAatlrdTT2Sxvgzs1hACmorn6/DXIMw8FhYwM4QRUTse3WEEmBjmBC4+PBIddhHryH8ZhzDpdbH8JK6UBClsmVLYSlpX7cgKgI79RAReTO" ], + "x-ms-request-id": [ "a5f13713-bc5e-4135-b2cf-fbbd73c3c6ac" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131732Z:a5f13713-bc5e-4135-b2cf-fbbd73c3c6ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:21:46 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLUZFbD4QGUaVIz0IVRevFT7mNWXR7z5EUSDB6/fpgya4byWfviA6GaQZ/AsmlDhi0xDW5GHK7KsPTEFejXCI+Dlt9kZFDULvwpec3Ifvb8PvEdYgAdF28cdU1Gc6smf6kpXkiLvlbB1Vq68WCt+E" ] + "Date": [ "Sun, 31 Oct 2021 13:17:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false } }, - "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+8": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01\u0026IsAsyncOperation=1", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6", "7", "8", "9", "10", "11", "12", "13" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } }, "Response": { - "StatusCode": 202, + "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ "60" ], - "x-ms-correlation-request-id": [ "15a527f9-2e2d-44ca-8b3e-646dc0dc43aa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14963" ], - "x-ms-request-id": [ "15a527f9-2e2d-44ca-8b3e-646dc0dc43aa" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T122246Z:15a527f9-2e2d-44ca-8b3e-646dc0dc43aa" ], + "x-ms-correlation-request-id": [ "a303b4fc-eab4-431f-add6-bd3f405e15e8" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIi6JuWjVHCTLZnC6dlkcg5NYDT0BJ5f0Rzrgy2cKJAcveFfV1LpHa5JWf7n2GMH8z92nkARKGxLy8N7mfLqR3yYINFDub0yCl2tq5EBvZxFGXZZh0IuxtXbHoNtGWgEafexvmzTf4u/MRFquwYM6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14913" ], + "x-ms-request-id": [ "a303b4fc-eab4-431f-add6-bd3f405e15e8" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131802Z:a303b4fc-eab4-431f-add6-bd3f405e15e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:22:46 GMT" ], - "Location": [ "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxxtJtUKE+2weiTdOGz/IjWlmCY+xP0zBwqykU3YsfRsaLL9TID0tydy0oNy0faQmeq2pjbH+JXkEzwskvFyjWVikOMAW+JBqHQKPwyMeaTmXvXACAcHWpNO1XWxQ0v2cFpw05gMKx6DLnLcDl/tW" ] + "Date": [ "Sun, 31 Oct 2021 13:18:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "0" ], + "Content-Length": [ "1023" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"name\":\"redmond/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-10-31T13:17:57.1251584Z\",\"timeTakenToCreate\":\"PT4M6.8702613S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptedBackupEncryptionKey\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}}", + "isContentBase64": false } }, - "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01+9": { + "Start-AzsBackup+[NoContext]+TestCreateBackup+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/08b92613-837a-43cd-86b5-1212ef954384?api-version=2018-09-01", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6", "7", "8", "9", "10", "11", "12", "13", "14" ], - "x-ms-client-request-id": [ "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000", "6d477d8a-53f1-46d3-80f2-14609659d000" ], - "CommandName": [ "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup", "Start-AzsBackup" ], - "FullCommandName": [ "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create", "Start-AzsBackup_Create" ], - "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]" ] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "be5225e6-7bbf-4342-9279-2868f2addeb4" ], + "CommandName": [ "Start-AzsBackup" ], + "FullCommandName": [ "Start-AzsBackup_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { } @@ -347,24 +376,25 @@ "Response": { "StatusCode": 200, "Headers": { + "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a07d36b9-b177-4a99-8a1d-6791443cf7dd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14962" ], - "x-ms-request-id": [ "a07d36b9-b177-4a99-8a1d-6791443cf7dd" ], - "x-ms-routing-request-id": [ "REDMOND:20200304T122347Z:a07d36b9-b177-4a99-8a1d-6791443cf7dd" ], + "x-ms-correlation-request-id": [ "7547ec4e-e5ce-4b46-9333-c463688cd3a0" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmhFa+Pmy43c4JnCR4zF1j7YgzePi2CXAI2fdkskaGf5JecLF83/Ndk1vN2ClbOFWBkkp7Fej+Z86XS3d5SOYyNx7NpE0U4YCIWwUS4bLxoaXOsH1txO6WSPkdGLujsEhBIqFnLKl753EfUOC7zoV" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14912" ], + "x-ms-request-id": [ "7547ec4e-e5ce-4b46-9333-c463688cd3a0" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T131802Z:7547ec4e-e5ce-4b46-9333-c463688cd3a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 04 Mar 2020 12:23:47 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuA6a06lOSWHLbKNGVTbcP3iizUy0ajtbzViRg4Vx2oJtHfRKY7D2FTDIODSterNOAmejjTlpC52W9bv31VF0mYMY3y1E8mnRsy0IY3qlaIXjv/mPoFfsOnRfJNyLrSYYdckgTvWFSatwIh2a3wN6" ] + "Date": [ "Sun, 31 Oct 2021 13:18:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1289" ], + "Content-Length": [ "1089" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/05101DAF-F50D-4436-A2AC-495E5C4864C2/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/08b92613-837a-43cd-86b5-1212ef954384\",\"name\":\"redmond/08b92613-837a-43cd-86b5-1212ef954384\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.0.1\",\"backupId\":\"08b92613-837a-43cd-86b5-1212ef954384\",\"roleStatus\":[{\"roleName\":\"NRP\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2020-03-04T12:22:18.7883083Z\",\"timeTakenToCreate\":\"PT6M35.345912S\",\"stampVersion\":\"1.2002.0.35\",\"oemVersion\":\"2.1.1907.1\",\"deploymentID\":\"015353df-d49a-460a-ac74-69bb3b1b4d1e\",\"encryptedBackupEncryptionKey\":\"pQDlmgkWPU03B/nE6VNXiF4MtNuhLkTyHpHukDLOX66VHFOVqUim8AyoaFqQvXwQKYvhtvAPlx6IuJ0PuwP0A7rSiIbBuP/BQkPWkFp1EVnDJZf2q45sQSPyIxAkxs/MeK/G59apZRKPOjsUNWwhIK5l0GZf7MZzSeGIS08PHqduO93ubpiGzRbrehoS20xDKsq1gNM5g0f24a7g/5/JPYqWGKPqOHvGYyFP5yV8YUA8niFVyNQbutUX1ksD8V8Uz9tYgSQNdMG6eqmjKaI/aAwq/D4thjYIjOHeVXrbREBO4Ze0WW1+5ClLGl8YxDClOaiXLfSNrFbxEoGWVGNe+A==\",\"encryptionCertThumbprint\":\"126B334D833C9E3AA9C1429B9B2A3C7CF3215FB0\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":false}}}" + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/backups/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"name\":\"redmond/237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"type\":\"Microsoft.Backup.Admin/backupLocations/backups\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"backupInfo\":{\"backupDataVersion\":\"1.1.0\",\"backupId\":\"237e5a7a-3b1d-4bf5-b1d6-f495b8d48253\",\"roleStatus\":[{\"roleName\":\"KeyVaultNamingService\",\"repositoryStatus\":[{\"fullRepositoryName\":\"KeyVaultNamingService;KeyVault;-;TableStore_kvvnsproddata\",\"status\":\"Succeeded\"}],\"status\":\"Succeeded\"}],\"status\":\"Succeeded\",\"createdDateTime\":\"2021-10-31T13:17:57.1251584Z\",\"timeTakenToCreate\":\"PT4M6.8702613S\",\"stampVersion\":\"1.2108.0.32\",\"oemVersion\":\"2.2.2008.4\",\"deploymentID\":\"83cbfd32-d038-4197-90cd-591443f15a89\",\"encryptedBackupEncryptionKey\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupSizeInKb\":0,\"compressedBackupSizeInKb\":0,\"completelyUploaded\":true,\"isAutomaticBackup\":false,\"isCloudRecoveryReady\":true}}}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Update-AzsBackupConfiguration.Recording.json b/src/Azs.Backup.Admin/test/Update-AzsBackupConfiguration.Recording.json new file mode 100644 index 00000000..3c19976c --- /dev/null +++ b/src/Azs.Backup.Admin/test/Update-AzsBackupConfiguration.Recording.json @@ -0,0 +1,836 @@ +{ + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateFileshareBackupLocationExpanded+$PATCH+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+1": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", + "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"externalStoreDefault\": {\r\n \"path\": \"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\r\n \"userName\": \"AzureStackAdmin\",\r\n \"password\": \"!!123abc\",\r\n \"encryptionCertBase64\": \"MIIDKjCCAhKgAwIBAgIQHbVCFg0ii7RGWXmdiKcOaDANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA93d3cuY29udG9zby5jb20wHhcNMjExMDMxMTIzMTMxWhcNMjIxMDMxMTI1MTMxWjAaMRgwFgYDVQQDDA93d3cuY29udG9zby5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIldWZsMtdT24MTDeGE1CuVL8W5ZlMoX7mfJVyo0wtM9ZbKkTNL5ujcltkq5b3bosugHAeex0pFp0Xi9dTT/zQeAZFN3Ec+8KMmoy2v5iHhx4nPECGfMs2utx3JL908y1UhStp/TYU3BnptHJRqDRZ0+oJOYwp2y/rwpXUtLNGZQYm1aUJ0QN0ZJ+r2lp8y9QcQI9AWAgdjoXwHMterb0O1rwxNCHAtAfgpNtEXOep0V3k6acWLM1/oZSj58S/AjN7G+jNuHklZcPqhezy3TaJe9MJ67Z6djhkPWRt+o22jNJCnJ+onrCUMauBToa2mgUONF6x/ld8XLXs/GiyBagtAgMBAAGjbDBqMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwGgYDVR0RBBMwEYIPd3d3LmNvbnRvc28uY29tMB0GA1UdDgQWBBQ/tExW6aqhetBlFwsceNZvM16PozANBgkqhkiG9w0BAQsFAAOCAQEAPUoD8QhCIg+Hk9tI8QNCOAMNseG0ThS2GlWUHABA8pcn6yntViQtjdlb/3nIqSuRAg+OTZZbFovI5HuoFz5Gyoav6YEKE2+ZSGnEoofPNvLc1eeIDUwhRCsbSM42uQiS99YexbrmkR4VtXXVnppnDYQcKyPH+fP+nA4d8sSrO7Mb3ttxJruMBHzjE+RsKr9ibfGO2E4QAvAeWaG22yo1fW4Tsi2mZ8WFWzdrwaF7Wa9Qoiuy2lrIUAYN8ZHR0efzH9OKJ1LJgpdMb2eWnSfLoGmcnMbIvwx5a6+u2BltiUCWqx5wa36jpbswmjQFKZhPbpHNAqtjT9qScd3D3GOyBw==\",\r\n \"backupFrequencyInHours\": 10,\r\n \"isBackupSchedulerEnabled\": false,\r\n \"backupRetentionPeriodInDays\": 6\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1474" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/2b85f3da-a114-4bde-a4e2-c968118124ec?api-version=2021-09-01" ], + "Retry-After": [ "5" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/2b85f3da-a114-4bde-a4e2-c968118124ec?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "334e37f4-b188-404b-845f-cfabc7ab869b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKPFFEeUAZD3vOXQTHaPKw8t4QIiyDLe0OZVF7mJ8i3yacxxlNn12p7/WQGgg0qLndhyDb7RAuuwBnN0pyPSOxNFFdlDOZUDkN5iFYrqqQnaN6kMPaZu8Z1YWoCBDfzEFkb4UfzlEEx7KnPVeMhfH" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "334e37f4-b188-404b-845f-cfabc7ab869b" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125428Z:334e37f4-b188-404b-845f-cfabc7ab869b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:54:28 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateFileshareBackupLocationExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/2b85f3da-a114-4bde-a4e2-c968118124ec?api-version=2021-09-01\u0026IsAsyncOperation=1+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/2b85f3da-a114-4bde-a4e2-c968118124ec?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "34369de2-41f3-444d-b7a7-7a3cabe5ca38" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "95576fa3-be04-449b-b18b-06e92b07b7bf" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6ldBWFBFE6hrEV2tjEA76jIcxxRrO7sPOpczhprNPkk4iyJ41SSBIrLU+g64KXElWGANslyIA5PfTipOrzWtxUrI035SNF5hIjapm+wjggGNoJKa4kxVNlwsH9hX62eMU1/trRXcLI+23Hko0wro" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14481" ], + "x-ms-request-id": [ "95576fa3-be04-449b-b18b-06e92b07b7bf" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125434Z:95576fa3-be04-449b-b18b-06e92b07b7bf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:54:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"979 GB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T11:41:06.2024616Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":null,\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateFileshareBackupLocationExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/2b85f3da-a114-4bde-a4e2-c968118124ec?api-version=2021-09-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/2b85f3da-a114-4bde-a4e2-c968118124ec?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "34369de2-41f3-444d-b7a7-7a3cabe5ca38" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "037242b7-e040-44ad-8763-0f288a3a1d7f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZ4P8A4XmkRPtxLkv/K+h7GEN8D1e4noAsY5E9ofCwHOtHo7rGH3+ZoUZ9wYBh1BLjb8STZYOgRacDrZKbgFYqRiQF7y5z5l7DXjMe7S/Qq8u/Vwuq+ImsgbJMkBaaZfWKDDsEu05yoe0BY8k/FK3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14480" ], + "x-ms-request-id": [ "037242b7-e040-44ad-8763-0f288a3a1d7f" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125434Z:037242b7-e040-44ad-8763-0f288a3a1d7f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:54:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "782" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"979 GB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T11:41:06.2024616Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":null,\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocationExpanded+$PATCH+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+1": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", + "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"externalStoreDefault\": {\r\n \"blobStorageUrl\": \"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\r\n \"blobStorageKey\": \"hJW2t+LDs2JuF2uw==\",\r\n \"encryptionCertBase64\": \"MIIDKjCCAhKgAwIBAgIQHbVCFg0ii7RGWXmdiKcOaDANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA93d3cuY29udG9zby5jb20wHhcNMjExMDMxMTIzMTMxWhcNMjIxMDMxMTI1MTMxWjAaMRgwFgYDVQQDDA93d3cuY29udG9zby5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIldWZsMtdT24MTDeGE1CuVL8W5ZlMoX7mfJVyo0wtM9ZbKkTNL5ujcltkq5b3bosugHAeex0pFp0Xi9dTT/zQeAZFN3Ec+8KMmoy2v5iHhx4nPECGfMs2utx3JL908y1UhStp/TYU3BnptHJRqDRZ0+oJOYwp2y/rwpXUtLNGZQYm1aUJ0QN0ZJ+r2lp8y9QcQI9AWAgdjoXwHMterb0O1rwxNCHAtAfgpNtEXOep0V3k6acWLM1/oZSj58S/AjN7G+jNuHklZcPqhezy3TaJe9MJ67Z6djhkPWRt+o22jNJCnJ+onrCUMauBToa2mgUONF6x/ld8XLXs/GiyBagtAgMBAAGjbDBqMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwGgYDVR0RBBMwEYIPd3d3LmNvbnRvc28uY29tMB0GA1UdDgQWBBQ/tExW6aqhetBlFwsceNZvM16PozANBgkqhkiG9w0BAQsFAAOCAQEAPUoD8QhCIg+Hk9tI8QNCOAMNseG0ThS2GlWUHABA8pcn6yntViQtjdlb/3nIqSuRAg+OTZZbFovI5HuoFz5Gyoav6YEKE2+ZSGnEoofPNvLc1eeIDUwhRCsbSM42uQiS99YexbrmkR4VtXXVnppnDYQcKyPH+fP+nA4d8sSrO7Mb3ttxJruMBHzjE+RsKr9ibfGO2E4QAvAeWaG22yo1fW4Tsi2mZ8WFWzdrwaF7Wa9Qoiuy2lrIUAYN8ZHR0efzH9OKJ1LJgpdMb2eWnSfLoGmcnMbIvwx5a6+u2BltiUCWqx5wa36jpbswmjQFKZhPbpHNAqtjT9qScd3D3GOyBw==\",\r\n \"backupFrequencyInHours\": 10,\r\n \"isBackupSchedulerEnabled\": false,\r\n \"backupRetentionPeriodInDays\": 6\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1552" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01" ], + "Retry-After": [ "5" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "33a8602e-2a6d-4301-a40e-5ed1329b06e9" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwMuv0xRfBvU6HCd2QgQvf0Q071Wtd5ZWz/rpGgvNib1iTRdJQdl3Sg9uY8cWrNlYwC6WT3Wig472GejS/wdR7DsJ9MVJ1Qjp13gaD5FOCg7KuVY+4NLDPNiLbRuQH91FsLmLc4wAc7MVoTyc/PKJ" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-request-id": [ "33a8602e-2a6d-4301-a40e-5ed1329b06e9" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125435Z:33a8602e-2a6d-4301-a40e-5ed1329b06e9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:54:35 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocationExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01\u0026IsAsyncOperation=1+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "7f790bb4-6343-4ac2-a524-cd188c38dcd3" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "b5b3b600-d987-4682-9583-95e0092b83dd" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXy98Q+spYXdoh28r4wKUJYvmJphU8UcZRMHjWFTE9q7LHfJthlNnX+ufKP5W+ODKXOJQ9hh4U1Z679uDY9W/1nwCgWCMlSbamR2Fj/Q0j0Hn1AKcqienKEADkdqQYEgX3alon6juPnSQd04fJ5Zj" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14479" ], + "x-ms-request-id": [ "b5b3b600-d987-4682-9583-95e0092b83dd" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125441Z:b5b3b600-d987-4682-9583-95e0092b83dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:54:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocationExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01\u0026IsAsyncOperation=1+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "7f790bb4-6343-4ac2-a524-cd188c38dcd3" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "ddd23d90-2bd1-46c2-a42e-cf02d50eb84b" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu3HqVSueQTOtY5ZUcGsXliAY6zbI2NcyWOe4Z9cCU0oAlr2foIFn+BonaI606r0Sa5M5v0eU5FUz2Qd87gnkzB8gVxZ0xha+uzGx3IBXGvNgw2rui3s1UGBWAbcdXGBN+pZ9D8+8cPwpxQ3gdW9j" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14502" ], + "x-ms-request-id": [ "ddd23d90-2bd1-46c2-a42e-cf02d50eb84b" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125511Z:ddd23d90-2bd1-46c2-a42e-cf02d50eb84b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "701" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocationExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/df46bd2b-4b7c-4767-bb1c-0737f3623416?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "7f790bb4-6343-4ac2-a524-cd188c38dcd3" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "0e4f95aa-47c9-4262-8b4d-4ad845f27c8a" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+5q3PNF5nacnh+BsFt0GS7PDO3vwtydzRGpMYaQ9ccXrgT6Kn10vJX5n4vR/lAxMl+yzfeJs3iDAfwfIX7SAE3wY/u31PvoC9ZkHYbm0pgvJNUaaTtXuOhjbUdz0IHYIyNQj10aocfCnfr5iepeG" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14501" ], + "x-ms-request-id": [ "0e4f95aa-47c9-4262-8b4d-4ad845f27c8a" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125512Z:0e4f95aa-47c9-4262-8b4d-4ad845f27c8a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "759" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestPatchUpdateBlobBackupLocationExpanded+$PATCH+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+1": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", + "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"externalStoreDefault\": {\r\n \"blobStorageUrl\": \"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\r\n \"backupRetentionPeriodInDays\": 5\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "233" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01" ], + "Retry-After": [ "5" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "3810a23d-05b5-4597-8f42-bc60f2fe03c4" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsDp3m+eeZiwBPLm2l8Z+xJVYm1ZGecR2N+K1Y4HauwqW2xUCTxyt8b4H521AH0SVA9kQILVKJR1+85Db3TNC8ZLq1My40rYL5XLRdNZoeEyh1VO9DsTHvqDnPY7AOdwBWnLEkNxnZddeerU+HWpk" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-request-id": [ "3810a23d-05b5-4597-8f42-bc60f2fe03c4" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125512Z:3810a23d-05b5-4597-8f42-bc60f2fe03c4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:11 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestPatchUpdateBlobBackupLocationExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01\u0026IsAsyncOperation=1+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "fd53edbf-ec58-4dae-9e6e-63289d294332" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "0e16718c-09ba-45a3-99cb-93ca201186fe" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLf/D91dI62xknspwSWZ50LCE4X5tXPTAHglTC1oA/mqeofridpo9/us/UTg3bWLCx5qtnjGuxa1bYL6tZdQgtKUVQeiwPsn8Faqf1gyakNZuBGohhJmMwvGhqolieN4ccPReukavzbMH8XJD4Qkk" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14500" ], + "x-ms-request-id": [ "0e16718c-09ba-45a3-99cb-93ca201186fe" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125518Z:0e16718c-09ba-45a3-99cb-93ca201186fe" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestPatchUpdateBlobBackupLocationExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01\u0026IsAsyncOperation=1+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "fd53edbf-ec58-4dae-9e6e-63289d294332" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "9d9308ab-5f30-46d8-a16b-23c5fd77e3df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14495" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtwqsL5i5qbXfqLRhKycIphHNpV9bp9uguefsXGU3o+u7Ec4zDjtcqv8OcvcbeXdGALfTK6X83+kVq3bk/q8Pm7scjbTJJFmp9GSjshq3BVQF5CElNwU/iv2JNeLCE+yzbU9B/KqSBY30Attxt3gl" ], + "x-ms-request-id": [ "9d9308ab-5f30-46d8-a16b-23c5fd77e3df" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125549Z:9d9308ab-5f30-46d8-a16b-23c5fd77e3df" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "727" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T00:22:07.6635047Z\",\"backupRetentionPeriodInDays\":5,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestPatchUpdateBlobBackupLocationExpanded+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/ba71c72f-b255-49c9-a5b6-1de40c361222?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "fd53edbf-ec58-4dae-9e6e-63289d294332" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "87a0da24-3f79-4f62-9756-0d7c85f8d1f1" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFJEOk6bGLPHHIom6sSo2XL/za1Zr+qruWNkZ8qPWx2Yy76KqO7f3Zumig3/9KzU1uUxeAFf5Zr1sKtnjCrQ6ntwxWpf1DtB6zdLYwPgVvGAOQNnoremJoSu1pEr7HMpzmJZ16f4AytE7k5Q+1eO6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14494" ], + "x-ms-request-id": [ "87a0da24-3f79-4f62-9756-0d7c85f8d1f1" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125549Z:87a0da24-3f79-4f62-9756-0d7c85f8d1f1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "785" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T00:22:07.6635047Z\",\"backupRetentionPeriodInDays\":5,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateFileshareBackupLocation+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "3001e655-652c-40a0-becc-7cc5a7648849" ], + "CommandName": [ "Get-AzsBackupConfiguration" ], + "FullCommandName": [ "Get-AzsBackupConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "071d49db-c734-4f49-9362-6e1810ecb039" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Id2ORRXcpWs6csG2sE6e5pV8OdBgGasdnBmfr9Qr1n7gPY52Vpbdns53Wyvdh2KC8TyMzeEUV0VUkI5lNC5hKK8YurLH7YgaiMN9Y/jpKR6pElz46IVM5+U4MSAagPugMyM2y336/ZAl69KKoPf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14493" ], + "x-ms-request-id": [ "071d49db-c734-4f49-9362-6e1810ecb039" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125550Z:071d49db-c734-4f49-9362-6e1810ecb039" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "785" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T00:22:07.6635047Z\",\"backupRetentionPeriodInDays\":5,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateFileshareBackupLocation+$PATCH+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+2": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", + "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"externalStoreDefault\": {\r\n \"path\": \"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\r\n \"userName\": \"AzureStackAdmin\",\r\n \"password\": \"!!123abc\",\r\n \"blobStorageUrl\": \"\",\r\n \"blobStorageKey\": \"\",\r\n \"encryptionCertBase64\": \"MIIDKjCCAhKgAwIBAgIQHbVCFg0ii7RGWXmdiKcOaDANBgkqhkiG9w0BAQsFADAaMRgwFgYDVQQDDA93d3cuY29udG9zby5jb20wHhcNMjExMDMxMTIzMTMxWhcNMjIxMDMxMTI1MTMxWjAaMRgwFgYDVQQDDA93d3cuY29udG9zby5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIldWZsMtdT24MTDeGE1CuVL8W5ZlMoX7mfJVyo0wtM9ZbKkTNL5ujcltkq5b3bosugHAeex0pFp0Xi9dTT/zQeAZFN3Ec+8KMmoy2v5iHhx4nPECGfMs2utx3JL908y1UhStp/TYU3BnptHJRqDRZ0+oJOYwp2y/rwpXUtLNGZQYm1aUJ0QN0ZJ+r2lp8y9QcQI9AWAgdjoXwHMterb0O1rwxNCHAtAfgpNtEXOep0V3k6acWLM1/oZSj58S/AjN7G+jNuHklZcPqhezy3TaJe9MJ67Z6djhkPWRt+o22jNJCnJ+onrCUMauBToa2mgUONF6x/ld8XLXs/GiyBagtAgMBAAGjbDBqMA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwGgYDVR0RBBMwEYIPd3d3LmNvbnRvc28uY29tMB0GA1UdDgQWBBQ/tExW6aqhetBlFwsceNZvM16PozANBgkqhkiG9w0BAQsFAAOCAQEAPUoD8QhCIg+Hk9tI8QNCOAMNseG0ThS2GlWUHABA8pcn6yntViQtjdlb/3nIqSuRAg+OTZZbFovI5HuoFz5Gyoav6YEKE2+ZSGnEoofPNvLc1eeIDUwhRCsbSM42uQiS99YexbrmkR4VtXXVnppnDYQcKyPH+fP+nA4d8sSrO7Mb3ttxJruMBHzjE+RsKr9ibfGO2E4QAvAeWaG22yo1fW4Tsi2mZ8WFWzdrwaF7Wa9Qoiuy2lrIUAYN8ZHR0efzH9OKJ1LJgpdMb2eWnSfLoGmcnMbIvwx5a6+u2BltiUCWqx5wa36jpbswmjQFKZhPbpHNAqtjT9qScd3D3GOyBw==\",\r\n \"backupFrequencyInHours\": 10,\r\n \"isBackupSchedulerEnabled\": false,\r\n \"backupRetentionPeriodInDays\": 6\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1532" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/4dbfd193-f3c4-4b64-a489-3ea4c61ce244?api-version=2021-09-01" ], + "Retry-After": [ "5" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/4dbfd193-f3c4-4b64-a489-3ea4c61ce244?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "1bea78e3-f216-42f5-bc07-f88038641951" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjxdLwvSBRFNyOeJ8TWmTnQFssEm1CWEOqnD4W37xQuASD3C+TooLoAxj4Xjt7KlM3tm/PoLsJClw8cY5WYzQZLI3PkhJ/dLQGxPrvEGslmWa4dznQMonK0qn0rLZ+fOuOpJp9BENQOWpg5dTEnK4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-request-id": [ "1bea78e3-f216-42f5-bc07-f88038641951" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125550Z:1bea78e3-f216-42f5-bc07-f88038641951" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:50 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateFileshareBackupLocation+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/4dbfd193-f3c4-4b64-a489-3ea4c61ce244?api-version=2021-09-01\u0026IsAsyncOperation=1+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/4dbfd193-f3c4-4b64-a489-3ea4c61ce244?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "6fc69408-0420-4e1a-a9d1-193c6be5e251" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_Update" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "46857b9b-33c5-4337-8e09-99292661be77" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviAAmOSybO/pMJ1+nnXSm2BVoLuMmbm7YPUE5v/IcSFzX7ba/ODtGtb0jSXcpxoMJwPwJK7NCZ1vrJIxneDiiENAkNWHCBA+tp+2iHYsx6BOQO/q5VPXhYN+1FVHFPhe2tnvOMuANL6f3rcnhNXQz" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14492" ], + "x-ms-request-id": [ "46857b9b-33c5-4337-8e09-99292661be77" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125556Z:46857b9b-33c5-4337-8e09-99292661be77" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "724" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"979 GB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T11:41:06.2024616Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":null,\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateFileshareBackupLocation+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/4dbfd193-f3c4-4b64-a489-3ea4c61ce244?api-version=2021-09-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/4dbfd193-f3c4-4b64-a489-3ea4c61ce244?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "6fc69408-0420-4e1a-a9d1-193c6be5e251" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_Update" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "538dbe16-bc72-4d3f-b770-3c2ce2a7bce8" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFy39gcuKCqmaga0x6TEIrlCzlr6vKDrLdruemQ3uCJOb2XqQ/iy/Pe3f5bArVpiZDMlEWAZvgRC/LaaV6VN9fj6U/X6UWgSYWMpoQeGIorFLxRrjg+fIcIqId0pqEMOVvdvvvWPHmrC34WHam16y" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14491" ], + "x-ms-request-id": [ "538dbe16-bc72-4d3f-b770-3c2ce2a7bce8" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125556Z:538dbe16-bc72-4d3f-b770-3c2ce2a7bce8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "782" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"979 GB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T11:41:06.2024616Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":null,\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocation+$GET+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "16" ], + "x-ms-client-request-id": [ "605379db-a110-42ab-adcb-ac464211de18" ], + "CommandName": [ "Get-AzsBackupConfiguration" ], + "FullCommandName": [ "Get-AzsBackupConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "4468dd22-69cd-4975-baf1-1532bdab2ded" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv307tvLITuZcXww76BmHaO6S44QhTI8hCOjWd9189U5zyCY5lYHRtfEWjiOhpjXN8ibZnueKsdlA7EakM9y6bFY5YIqiJA1Zrwyyw6kAqQ4uyz7L+y65gBqtQsysvpBfIrflIpz9WIP5XRUpGbd7y" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14490" ], + "x-ms-request-id": [ "4468dd22-69cd-4975-baf1-1532bdab2ded" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125556Z:4468dd22-69cd-4975-baf1-1532bdab2ded" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "782" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":\"\\\\\\\\su1fileserver\\\\SU1_Infrastructure_1\\\\BackupStore\",\"userName\":\"AzureStackAdmin\",\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":\"979 GB\",\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":\"2021-10-31T11:41:06.2024616Z\",\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":null,\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocation+$PATCH+https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01+2": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond?api-version=2021-09-01", + "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"externalStoreDefault\": {\r\n \"path\": \"\",\r\n \"userName\": \"\",\r\n \"password\": \"\",\r\n \"blobStorageUrl\": \"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\r\n \"blobStorageKey\": \"hJW2t+LDs2JuF2uw==\",\r\n \"backupFrequencyInHours\": 10,\r\n \"isBackupSchedulerEnabled\": false,\r\n \"backupRetentionPeriodInDays\": 6\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1617" ] + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01" ], + "Retry-After": [ "5" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "3a9813a3-cb72-4f2e-a6f0-1141b0f62345" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3eolcGfjfJZRItXMyCrpaD5cUqjdXvHV8BCJjyBZU53NH2KohEqC5X9MU+Cwxh4J7lhzQ8B27l6TiyN/wRbyHz1b4WPr6XOY76RXYnLood8ApE8bI59chfXc6llC3uD9BNCLzKDw14dwaL3HbH5B" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-request-id": [ "3a9813a3-cb72-4f2e-a6f0-1141b0f62345" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125557Z:3a9813a3-cb72-4f2e-a6f0-1141b0f62345" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:55:57 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocation+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01\u0026IsAsyncOperation=1+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "5e9ca66e-7c38-4749-9725-1bedea60ea4a" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_Update" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Location": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01" ], + "Retry-After": [ "30" ], + "Azure-AsyncOperation": [ "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01\u0026IsAsyncOperation=1" ], + "x-ms-correlation-request-id": [ "b298c124-71f4-43ae-96ef-7cb882107b9f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNkhuI8VmTZKIqq9iYlaP9WinlWhIOm7YWVcB1MOOPJt3oqEbOmNaC75FAz0WVgTn/Tq5cIpxuVcjA51MHbN5ucS2+uy3KunVtTCJsrwkGUKsh+9mdH5AnlWrmnrPBKxYJM+G4vJmdUOEmD0lQUKK" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14489" ], + "x-ms-request-id": [ "b298c124-71f4-43ae-96ef-7cb882107b9f" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125603Z:b298c124-71f4-43ae-96ef-7cb882107b9f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:56:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "67" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Accepted\",\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocation+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01\u0026IsAsyncOperation=1+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01\u0026IsAsyncOperation=1", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "19" ], + "x-ms-client-request-id": [ "5e9ca66e-7c38-4749-9725-1bedea60ea4a" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_Update" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "3afc95c9-2e33-4fff-bb0f-1ffc0d92c5d1" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKsjrd+0eMEoYwxVEW+mrvBOeu++uPtLDVMF1mgxsxB7pNRLZiqmwaTTBC4m+Ko5YAsulbWFGczjOU79aTBsZxyVlU5iWakVpa0haQ+IKzh0Lx1pcTexFyAsgJb9J4vSLi4OGq+oIBwTj0aCiRvkO" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14483" ], + "x-ms-request-id": [ "3afc95c9-2e33-4fff-bb0f-1ffc0d92c5d1" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125633Z:3afc95c9-2e33-4fff-bb0f-1ffc0d92c5d1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:56:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "701" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"Succeeded\",\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Update-AzsBackupConfiguration+[NoContext]+TestUpdateBlobBackupLocation+$GET+https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n42r1609.masd.stbtest.microsoft.com/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond/operationResults/c2e53d7e-a86c-4444-8eed-b82a7efce92d?api-version=2021-09-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "5e9ca66e-7c38-4749-9725-1bedea60ea4a" ], + "CommandName": [ "Azs.Backup.Admin.internal\\Update-AzsBackupConfiguration" ], + "FullCommandName": [ "Update-AzsBackupConfiguration_Update" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "be9a1cb9-c729-4c77-aa68-456e28f3d82c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSgIiH6Tr26aLWmcik7P3mbFIec8vpsPzj2x1f2yxNd/cfGvOl238eS8KG4fzqYJHVzn3ZPc7O3fGA0kWi2DlaGvp4evjP1HMHkS3KNnSvc+ChEPmMvqAsWyQkZoYX4v4Ro1t/l/1BzXeNz5x8wiq" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14482" ], + "x-ms-request-id": [ "be9a1cb9-c729-4c77-aa68-456e28f3d82c" ], + "x-ms-routing-request-id": [ "REDMOND:20211031T125634Z:be9a1cb9-c729-4c77-aa68-456e28f3d82c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Sun, 31 Oct 2021 12:56:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "759" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a8d860a5-412b-43a4-a628-42a4298c2f5d/resourceGroups/system.redmond/providers/Microsoft.Backup.Admin/backupLocations/redmond\",\"name\":\"redmond\",\"type\":\"Microsoft.Backup.Admin/backupLocations\",\"location\":\"redmond\",\"tags\":{},\"properties\":{\"externalStoreDefault\":{\"path\":null,\"userName\":null,\"password\":null,\"encryptionCertBase64\":null,\"encryptionCertThumbprint\":\"2376D9CFC85BBDEBAB29FFC1EDE614C3C9991AAD\",\"backupFrequencyInHours\":10,\"availableCapacity\":null,\"isBackupSchedulerEnabled\":false,\"nextBackupTime\":\"2021-10-31T20:18:33.3550071Z\",\"lastBackupTime\":null,\"backupRetentionPeriodInDays\":6,\"blobStorageUrl\":\"https://pazsbcdrblobstore.blob.core.windows.net/211030-n42r1609-83cbfd32\",\"blobStorageKey\":null},\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/Update-AzsBackupConfiguration.Tests.ps1 b/src/Azs.Backup.Admin/test/Update-AzsBackupConfiguration.Tests.ps1 new file mode 100644 index 00000000..6e7c0271 --- /dev/null +++ b/src/Azs.Backup.Admin/test/Update-AzsBackupConfiguration.Tests.ps1 @@ -0,0 +1,183 @@ +. (Join-Path $PSScriptRoot 'loadEnvJson.ps1') + +$TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzsBackupConfiguration.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Update-AzsBackupConfiguration' { + . $PSScriptRoot\Common.ps1 + + AfterEach { + $global:Client = $null + } + + It "TestUpdateFileshareBackupLocationExpanded" -Skip:$('TestUpdateFileshareBackupLocationExpanded' -in $global:SkippedTests) { + $global:TestName = 'TestUpdateFileshareBackupLocationExpanded' + + try + { + [System.IO.File]::WriteAllBytes($global:encryptionCertPath, [System.Convert]::FromBase64String($global:encryptionCertBase64)) + $location = Update-AzsBackupConfiguration -Username $global:username -Password $global:password -Path $global:path -EncryptionCertPath $global:encryptionCertPath -IsBackupSchedulerEnabled:$global:isBackupSchedulerEnabled -BackupFrequencyInHours $global:backupFrequencyInHours -BackupRetentionPeriodInDays $global:backupRetentionPeriodInDays + ValidateBackupLocation -BackupLocation $location + + $location | Should Not Be $Null + $location.Path | Should Be $global:path + $location.Username | Should be $global:username + $location.Password | Should -BeNullOrEmpty + $location.BlobStorageUrl | Should -BeNullOrEmpty + $location.BlobStorageKey | Should -BeNullOrEmpty + $location.EncryptionCertBase64 | Should -BeNullOrEmpty + $location.IsBackupSchedulerEnabled | Should be $global:isBackupSchedulerEnabled + $location.BackupFrequencyInHours | Should be $global:backupFrequencyInHours + $location.BackupRetentionPeriodInDays | Should be $global:backupRetentionPeriodInDays + } + finally + { + if (Test-Path -Path $global:encryptionCertPath -PathType Leaf) + { + Remove-Item -Path $global:encryptionCertPath -Force -ErrorAction Continue + } + } + } + + It "TestUpdateBlobBackupLocationExpanded" -Skip:$('TestUpdateBlobBackupLocationExpanded' -in $global:SkippedTests) { + $global:TestName = 'TestUpdateBlobBackupLocationExpanded' + + try + { + [System.IO.File]::WriteAllBytes($global:encryptionCertPath, [System.Convert]::FromBase64String($global:encryptionCertBase64)) + $location = Update-AzsBackupConfiguration -BlobStorageUrl $global:blobStorageUrl -BlobStorageKey $global:blobStorageKey -EncryptionCertPath $global:encryptionCertPath -IsBackupSchedulerEnabled:$global:isBackupSchedulerEnabled -BackupFrequencyInHours $global:backupFrequencyInHours -BackupRetentionPeriodInDays $global:backupRetentionPeriodInDays + ValidateBackupLocation -BackupLocation $location + + $location | Should Not Be $Null + $location.Path | Should -BeNullOrEmpty + $location.Username | Should -BeNullOrEmpty + $location.Password | Should -BeNullOrEmpty + $location.BlobStorageUrl | Should Be $global:blobStorageUrl + $location.BlobStorageKey | Should -BeNullOrEmpty + $location.EncryptionCertBase64 | Should -BeNullOrEmpty + $location.IsBackupSchedulerEnabled | Should be $global:isBackupSchedulerEnabled + $location.BackupFrequencyInHours | Should be $global:backupFrequencyInHours + $location.BackupRetentionPeriodInDays | Should be $global:backupRetentionPeriodInDays + } + finally + { + if (Test-Path -Path $global:encryptionCertPath -PathType Leaf) + { + Remove-Item -Path $global:encryptionCertPath -Force -ErrorAction Continue + } + } + } + + It "TestPatchUpdateBlobBackupLocationExpanded" -Skip:$('TestPatchUpdateBlobBackupLocationExpanded' -in $global:SkippedTests) { + $global:TestName = 'TestPatchUpdateBlobBackupLocationExpanded' + + try + { + [System.IO.File]::WriteAllBytes($global:encryptionCertPath, [System.Convert]::FromBase64String($global:encryptionCertBase64)) + $location = Update-AzsBackupConfiguration -BlobStorageUrl $global:blobStorageUrl -BackupRetentionPeriodInDays ($global:backupRetentionPeriodInDays - 1) + ValidateBackupLocation -BackupLocation $location + + $location | Should Not Be $Null + $location.Path | Should -BeNullOrEmpty + $location.Username | Should -BeNullOrEmpty + $location.Password | Should -BeNullOrEmpty + $location.BlobStorageUrl | Should Be $global:blobStorageUrl + $location.BlobStorageKey | Should -BeNullOrEmpty + $location.EncryptionCertBase64 | Should -BeNullOrEmpty + $location.IsBackupSchedulerEnabled | Should be $global:isBackupSchedulerEnabled + $location.BackupFrequencyInHours | Should be $global:backupFrequencyInHours + $location.BackupRetentionPeriodInDays | Should be ($global:backupRetentionPeriodInDays - 1) + } + finally + { + if (Test-Path -Path $global:encryptionCertPath -PathType Leaf) + { + Remove-Item -Path $global:encryptionCertPath -Force -ErrorAction Continue + } + } + } + + It "TestUpdateFileshareBackupLocation" -Skip:$('TestUpdateFileshareBackupLocation' -in $global:SkippedTests) { + $global:TestName = 'TestUpdateFileshareBackupLocation' + + try + { + [System.IO.File]::WriteAllBytes($global:encryptionCertPath, [System.Convert]::FromBase64String($global:encryptionCertBase64)) + $location = Get-AzsBackupConfiguration + $location.UserName = $global:username + $location.Password = $global:passwordStr + $location.Path = $global:path + $location.BlobStorageUrl = $null + $location.BlobStorageKey = $null + $location.EncryptionCertBase64 = $global:encryptionCertBase64 + $location.IsBackupSchedulerEnabled = $global:isBackupSchedulerEnabled + $location.BackupFrequencyInHours = $global:backupFrequencyInHours + $location.BackupRetentionPeriodInDays = $global:backupRetentionPeriodInDays + $result = $location | Update-AzsBackupConfiguration + ValidateBackupLocation -BackupLocation $result + + $result | Should Not Be $Null + $result.Path | Should Be $global:path + $result.Username | Should be $global:username + $result.Password | Should -BeNullOrEmpty + $result.BlobStorageUrl | Should -BeNullOrEmpty + $result.BlobStorageKey | Should -BeNullOrEmpty + $result.EncryptionCertBase64 | Should -BeNullOrEmpty + $result.IsBackupSchedulerEnabled | Should be $global:isBackupSchedulerEnabled + $result.BackupFrequencyInHours | Should be $global:backupFrequencyInHours + $result.BackupRetentionPeriodInDays | Should be $global:backupRetentionPeriodInDays + } + finally + { + if (Test-Path -Path $global:encryptionCertPath -PathType Leaf) + { + Remove-Item -Path $global:encryptionCertPath -Force -ErrorAction Continue + } + } + } + + It "TestUpdateBlobBackupLocation" -Skip:$('TestUpdateBlobBackupLocation' -in $global:SkippedTests) { + $global:TestName = 'TestUpdateBlobBackupLocation' + + try + { + [System.IO.File]::WriteAllBytes($global:encryptionCertPath, [System.Convert]::FromBase64String($global:encryptionCertBase64)) + $location = Get-AzsBackupConfiguration + $location.Path = $null + $location.Username = $null + $location.Password = $null + $location.BlobStorageUrl = $global:blobStorageUrl + $location.BlobStorageKey = $global:blobStorageKey + $location.EncryptionCertBase64 = $global:encryptionCertBase64 + $location.IsBackupSchedulerEnabled = $global:isBackupSchedulerEnabled + $location.BackupFrequencyInHours = $global:backupFrequencyInHours + $location.BackupRetentionPeriodInDays = $global:backupRetentionPeriodInDays + $result = $location | Update-AzsBackupConfiguration + ValidateBackupLocation -BackupLocation $result + + $result | Should Not Be $Null + $result.Path | Should -BeNullOrEmpty + $result.Username | Should -BeNullOrEmpty + $result.Password | Should -BeNullOrEmpty + $result.BlobStorageUrl | Should Be $global:blobStorageUrl + $result.BlobStorageKey | Should -BeNullOrEmpty + $result.EncryptionCertBase64 | Should -BeNullOrEmpty + $result.IsBackupSchedulerEnabled | Should be $global:isBackupSchedulerEnabled + $result.BackupFrequencyInHours | Should be $global:backupFrequencyInHours + $result.BackupRetentionPeriodInDays | Should be $global:backupRetentionPeriodInDays + } + finally + { + if (Test-Path -Path $global:encryptionCertPath -PathType Leaf) + { + Remove-Item -Path $global:encryptionCertPath -Force -ErrorAction Continue + } + } + } + +} diff --git a/src/Azs.Backup.Admin/test/Utils.ps1 b/src/Azs.Backup.Admin/test/Utils.ps1 index 2b6a2ae3..01393c7a 100644 --- a/src/Azs.Backup.Admin/test/Utils.ps1 +++ b/src/Azs.Backup.Admin/test/Utils.ps1 @@ -11,6 +11,8 @@ function setupEnv() { # as default. You could change them if needed. $env.SubscriptionId = (Get-AzContext).Subscription.Id $env.Tenant = (Get-AzContext).Tenant.Id + $env.ResourceGroup = "system.$((Get-AzLocation)[0].Location)" + $env.Location = (Get-AzLocation)[0].Location # For any resources you created for test, you should add it to $env here. $envFile = 'env.json' if ($TestMode -eq 'live') { @@ -20,4 +22,5 @@ function setupEnv() { } function cleanupEnv() { # Clean resources you create for testing -} \ No newline at end of file +} + diff --git a/src/Azs.Backup.Admin/test/env.json b/src/Azs.Backup.Admin/test/env.json index dab0b514..6dabd3cf 100644 --- a/src/Azs.Backup.Admin/test/env.json +++ b/src/Azs.Backup.Admin/test/env.json @@ -1,6 +1,6 @@ { - "Tenant": "01884692-6d96-44fa-8c58-11b4e90fef19", - "SubscriptionId": "05101DAF-F50D-4436-A2AC-495E5C4864C2", + "Tenant": "0ab67e9c-93f7-43a7-ab2d-e9ad3e0db8cd", + "SubscriptionId": "a8d860a5-412b-43a4-a628-42a4298c2f5d", "ResourceGroup": "system.redmond", "Location": "redmond" } \ No newline at end of file diff --git a/src/Azs.Backup.Admin/test/readme.md b/src/Azs.Backup.Admin/test/readme.md new file mode 100644 index 00000000..7c752b4c --- /dev/null +++ b/src/Azs.Backup.Admin/test/readme.md @@ -0,0 +1,17 @@ +# Test +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `..\custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Details +We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. + +## Purpose +Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. + +## Usage +To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file diff --git a/src/Azs.Backup.Admin/utils/Unprotect-SecureString.ps1 b/src/Azs.Backup.Admin/utils/Unprotect-SecureString.ps1 new file mode 100644 index 00000000..cb05b51a --- /dev/null +++ b/src/Azs.Backup.Admin/utils/Unprotect-SecureString.ps1 @@ -0,0 +1,16 @@ +#This script converts securestring to plaintext + +param( + [Parameter(Mandatory, ValueFromPipeline)] + [System.Security.SecureString] + ${SecureString} +) + +$ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureString) +try { + $plaintext = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr) +} finally { + [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) +} + +return $plaintext \ No newline at end of file diff --git a/src/Azs.Commerce.Admin/readme.md b/src/Azs.Commerce.Admin/readme.md index cd2fd8af..2e9bfce7 100644 --- a/src/Azs.Commerce.Admin/readme.md +++ b/src/Azs.Commerce.Admin/readme.md @@ -54,7 +54,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 service-name: CommerceAdmin ### File Renames ### IMPORTANT - Note that the following settings are case sensitive ### @@ -87,12 +87,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Commerce.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 Changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Commerce.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Commerce.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 Changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 b/src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 new file mode 100644 index 00000000..04af805b --- /dev/null +++ b/src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 @@ -0,0 +1,305 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Returns the disk. +.Description +Returns the disk. +.Example +PS C:\> Get-AzsDisk +.Example +PS C:\> Get-AzsDisk -Name "426b8945-8a24-42ad-acdc-c26f16202489" + +ActualSizeGb : 24 +DiskId : 426b8945-8a24-42ad-acdc-c26f16202489 +DiskSku : Premium_LRS +DiskType : Disk +Id : /subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/north + west/disks/426b8945-8a24-42ad-acdc-c26f16202489 +Location : northwest +ManagedBy : +Name : northwest/426b8945-8a24-42ad-acdc-c26f16202489 +ProvisionSizeGb : 127 +SharePath : \\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\SU1_ObjStore_3 +Status : Unattached +Type : Microsoft.Compute.Admin/locations/disks +UserResourceId : /subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Comput + e/Disks/TEST_OsDisk_1_426b89458a2442adacdcc26f16202489 +.Example +PS C:\> Get-AzsDisk -Count 3 + +ActualSizeGb : 24 +DiskId : 20f1619e-4210-47f6-81e6-b89e3028df06 +DiskSku : Premium_LRS +DiskType : Disk +Id : /subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/north + west/disks/20f1619e-4210-47f6-81e6-b89e3028df06 +Location : northwest +ManagedBy : +Name : northwest/20f1619e-4210-47f6-81e6-b89e3028df06 +ProvisionSizeGb : 127 +SharePath : \\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\SU1_ObjStore_4 +Status : Unattached +Type : Microsoft.Compute.Admin/locations/disks +UserResourceId : /subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/RG1/providers/Microsoft.Compute/Di + sks/TEST_OsDisk_1_20f1619e421047f681e6b89e3028df06 + +ActualSizeGb : 24 +DiskId : 38a767e4-4ceb-49fb-a53c-48de9b08aaae +DiskSku : Standard_LRS +DiskType : Disk +Id : /subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/north + west/disks/38a767e4-4ceb-49fb-a53c-48de9b08aaae +Location : northwest +ManagedBy : +Name : northwest/38a767e4-4ceb-49fb-a53c-48de9b08aaae +ProvisionSizeGb : 127 +SharePath : \\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\SU1_ObjStore_4 +Status : Unattached +Type : Microsoft.Compute.Admin/locations/disks +UserResourceId : /subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/D + isks/SCTETest_OsDisk_1_38a767e44ceb49fba53c48de9b08aaae + +ActualSizeGb : 24 +DiskId : 426b8945-8a24-42ad-acdc-c26f16202489 +DiskSku : Premium_LRS +DiskType : Disk +Id : /subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/north + west/disks/426b8945-8a24-42ad-acdc-c26f16202489 +Location : northwest +ManagedBy : +Name : northwest/426b8945-8a24-42ad-acdc-c26f16202489 +ProvisionSizeGb : 127 +SharePath : \\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\SU1_ObjStore_3 +Status : Unattached +Type : Microsoft.Compute.Admin/locations/disks +UserResourceId : /subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Comput + e/Disks/TEST_OsDisk_1_426b89458a2442adacdcc26f16202489 +.Example +PS C:\> Get-AzsDisk -Status All -ScaleUnit s-cluster -VolumeLabel Objstore_4 + +ActualSizeGb : 2 +DiskId : e4732f76-0753-40ec-80f5-8effdd0b437d +DiskSku : Premium_LRS +DiskType : Disk +Id : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/providers/Microsoft.Compute.Admin/locations/redmond/disks/e4732f76-0753-40ec-80f5-8effdd0b437d +Location : redmond +ManagedBy : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGroups/rbactest/providers/Microsoft.Compute/virtualMachines/test1 +Name : redmond/e4732f76-0753-40ec-80f5-8effdd0b437d +ProvisionSizeGb : 30 +SharePath : \\SU1FileServer.s11r0401.masd.stbtest.microsoft.com\SU1_ObjStore_4 +Status : Reserved +Type : Microsoft.Compute.Admin/locations/disks +UserResourceId : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGroups/RBACTEST/providers/Microsoft.Compute/Disks/test1_OsDisk_1_e4732f76075340ec80f58effdd0b437d + +ActualSizeGb : 1 +DiskId : 0485cbc9-1efa-43bd-86c2-0e201d79c528 +DiskSku : Premium_LRS +DiskType : Disk +Id : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/providers/Microsoft.Compute.Admin/locations/redmond/disks/0485cbc9-1efa-43bd-86c2-0e201d79c528 +Location : redmond +ManagedBy : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGroups/rbactest/providers/Microsoft.Compute/virtualMachines/test1 +Name : redmond/0485cbc9-1efa-43bd-86c2-0e201d79c528 +ProvisionSizeGb : 64 +SharePath : \\SU1FileServer.s11r0401.masd.stbtest.microsoft.com\SU1_ObjStore_4 +Status : Reserved +Type : Microsoft.Compute.Admin/locations/disks +UserResourceId : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGroups/TESTRG1/providers/Microsoft.Compute/Disks/gpsdisk + +ActualSizeGb : 1 +DiskId : 137893db-e7ce-4907-a488-b35c5e928614 +DiskSku : Premium_LRS +DiskType : Disk +Id : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/providers/Microsoft.Compute.Admin/locations/redmond/disks/137893db-e7ce-4907-a488-b35c5e928614 +Location : redmond +ManagedBy : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGroups/rbactest/providers/Microsoft.Compute/virtualMachines/test1 +Name : redmond/137893db-e7ce-4907-a488-b35c5e928614 +ProvisionSizeGb : 55 +SharePath : \\SU1FileServer.s11r0401.masd.stbtest.microsoft.com\SU1_ObjStore_4 +Status : Reserved +Type : Microsoft.Compute.Admin/locations/disks +UserResourceId : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGroups/RBACTEST/providers/Microsoft.Compute/Disks/testdd + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk +.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 + [DiskId ]: The disk guid as identity. + [Id ]: Resource identity path + [Location ]: Location of the resource. + [MigrationId ]: The migration job guid name. + [Offer ]: Name of the offer. + [Publisher ]: Name of the publisher. + [QuotaName ]: Name of the quota. + [Sku ]: Name of the SKU. + [SubscriptionId ]: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + [Type ]: Type of extension. + [Version ]: The version of the resource. +.Link +https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/get-azsdisk +#> +function Get-AzsDisk { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk])] +[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] +param( + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Runtime.DefaultInfo(Script='(Get-AzLocation)[0].Location')] + [System.String] + # Location of the resource. + ${Location}, + + [Parameter(ParameterSetName='Get', Mandatory)] + [Alias('DiskId')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Path')] + [System.String] + # The disk guid as identity. + ${Name}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String[]] + # Subscription credentials that uniquely identify Microsoft Azure subscription. + # The subscription ID forms part of the URI for every service call. + ${SubscriptionId}, + + [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='Get')] + [Parameter(ParameterSetName='GetViaIdentity')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Query')] + [System.Management.Automation.SwitchParameter] + # Switch for whether summary or detailed disk size information is returned. + ${ShowSizeDetail}, + + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Query')] + [System.Int32] + # The maximum number of disks to return. + ${Count}, + + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Query')] + [System.String] + # The scale unit which the resource belongs to. + ${ScaleUnit}, + + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Query')] + [System.String] + # The share which the resource belongs to. + ${SharePath}, + + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Query')] + [System.Int32] + # The start index of disks in query. + ${Start}, + + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Query')] + [System.String] + # The parameters of disk state. + ${Status}, + + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Query')] + [System.String] + # User Subscription Id which the resource belongs to. + ${UserSubscriptionId}, + + [Parameter(ParameterSetName='List')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Query')] + [System.String] + # The volume label of the volume which the resource belongs to. + ${VolumeLabel}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} +) + +process { + # Generated cmdlet does not support {prefix}/{name} for ScaleUnit name, so extract the {name} part here + if ($PSBoundParameters.ContainsKey(('Name'))) + { + if ($null -ne $Name -and $Name.Contains('/')) + { + $PSBoundParameters['Name'] = $Name.Split("/")[-1] + } + } + + Azs.Compute.Admin.internal\Get-AzsDisk @PSBoundParameters +} + +} diff --git a/src/Azs.Compute.Admin/custom/New-AzsDiskMigrationJob.ps1 b/src/Azs.Compute.Admin/custom/New-AzsDiskMigrationJob.ps1 index d90e6255..a96bfc44 100644 --- a/src/Azs.Compute.Admin/custom/New-AzsDiskMigrationJob.ps1 +++ b/src/Azs.Compute.Admin/custom/New-AzsDiskMigrationJob.ps1 @@ -6,9 +6,9 @@ Starts a managed disk migration job to migrate managed disks to the specified de .Example To view examples, please use the -Online parameter with Get-Help or navigate to: https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/new-azsdiskmigrationjob .Inputs -Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDisk[] +Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk[] .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDiskMigrationJob +Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDiskMigrationJob .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. @@ -23,7 +23,7 @@ https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/new-azsdisk #> function New-AzsDiskMigrationJob { [Alias('Start-AzsDiskMigrationJob')] -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDiskMigrationJob])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDiskMigrationJob])] [CmdletBinding(DefaultParameterSetName='Volume', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] @@ -68,7 +68,7 @@ param( [Parameter(Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDisk[]] + [Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk[]] # . # To construct, see NOTES section for DISKS properties and create a hash table. ${Disks}, diff --git a/src/Azs.Compute.Admin/custom/readme.md b/src/Azs.Compute.Admin/custom/readme.md index e9f0e289..115f980f 100644 --- a/src/Azs.Compute.Admin/custom/readme.md +++ b/src/Azs.Compute.Admin/custom/readme.md @@ -31,11 +31,11 @@ These provide functionality to our HTTP pipeline and other useful features. In s ### Attributes For processing the cmdlets, we've created some additional attributes: -- `Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.DescriptionAttribute` +- `Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.DescriptionAttribute` - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propegated to reference documentation via [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. -- `Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.DoNotExportAttribute` +- `Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.DoNotExportAttribute` - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Azs.Compute.Admin`. -- `Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.InternalExportAttribute` +- `Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.InternalExportAttribute` - Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Azs.Compute.Admin`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder. -- `Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.ProfileAttribute` +- `Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.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/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md b/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md index 320e6341..5f4da8ed 100644 --- a/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md @@ -60,10 +60,13 @@ ProvisioningState : Succeeded Type : Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions ``` -Add a Platform Image from Blob Storage. Use the a SasUri to specify the location of the PlatformImage, or use a publicly accessible URL. +Add a Platform Image from Blob Storage. +Use the a SasUri to specify the location of the PlatformImage, or use a publicly accessible URL. ## PARAMETERS +### -AsJob +Run the command as a job ```yaml Type: System.Management.Automation.SwitchParameter @@ -75,7 +78,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -BillingPartNumber @@ -91,7 +93,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataDisks @@ -108,7 +109,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -124,7 +124,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -141,7 +140,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -157,7 +155,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NewImage @@ -174,7 +171,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -190,7 +186,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Offer @@ -206,7 +201,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OsType @@ -222,7 +216,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OsUri @@ -238,7 +231,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ProvisioningState @@ -254,7 +246,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -270,7 +261,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Sku @@ -286,7 +276,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -303,7 +292,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -319,7 +307,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -335,7 +322,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -352,7 +338,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -368,31 +353,35 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20151201Preview.IPlatformImage -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### DATADISKS : Data disks used by the platform image. + +DATADISKS : Data disks used by the platform image. - `[Lun ]`: Logical unit number. - `[Uri ]`: Location of the disk template. -#### INPUTOBJECT : Identity Parameter +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. - `[Version ]`: The version of the resource. -#### NEWIMAGE : Parameters used to create a new platform image. +NEWIMAGE : Parameters used to create a new platform image. - `[DataDisk ]`: Data disks used by the platform image. - `[Lun ]`: Logical unit number. - `[Uri ]`: Location of the disk template. @@ -402,3 +391,4 @@ To create the parameters described below, construct a hash table containing the - `[ProvisioningState ]`: Provisioning status of the platform image. ## RELATED LINKS + diff --git a/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md b/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md index c5a51fe2..69e3f733 100644 --- a/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md @@ -85,7 +85,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -101,7 +100,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Extension @@ -118,7 +116,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -135,7 +132,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -IsSystemExtension @@ -151,7 +147,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -167,7 +162,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PropertiesPublisher @@ -183,7 +177,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ProvisioningState @@ -199,7 +192,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -215,7 +207,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SourceBlob @@ -231,7 +222,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -248,7 +238,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SupportMultipleExtensions @@ -264,7 +253,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -280,7 +268,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -296,7 +283,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VmOsType @@ -312,7 +298,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VMScaleSetEnabled @@ -328,7 +313,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -344,7 +328,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -361,7 +344,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -377,14 +359,16 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20151201Preview.IVMExtension -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### EXTENSION : Parameters used to create a new Virtual Machine Extension Image. + +EXTENSION : Parameters used to create a new Virtual Machine Extension Image. - `[ComputeRole ]`: Compute role - `[IsSystemExtension ]`: Indicates if the extension is for the system. - `[ProvisioningState ]`: Provisioning state of extension. @@ -394,14 +378,16 @@ To create the parameters described below, construct a hash table containing the - `[VMScaleSetEnabled ]`: Value indicating whether the extension is enabled for virtual machine scale set support. - `[VmosType ]`: Target virtual machine operating system type necessary for deploying the extension handler. -#### INPUTOBJECT : Identity Parameter +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/Azs.Compute.Admin.md b/src/Azs.Compute.Admin/docs/Azs.Compute.Admin.md index 1aae4ab0..8dd31e17 100644 --- a/src/Azs.Compute.Admin/docs/Azs.Compute.Admin.md +++ b/src/Azs.Compute.Admin/docs/Azs.Compute.Admin.md @@ -1,6 +1,6 @@ --- Module Name: Azs.Compute.Admin -Module Guid: ef24d091-a5a0-428f-b80c-25140b0f1045 +Module Guid: addb0a1f-16ad-492e-8cde-0fffb53e0645 Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin Help Version: 1.0.0.0 Locale: en-US @@ -8,7 +8,7 @@ Locale: en-US # Azs.Compute.Admin Module ## Description -Microsoft AzureStack PowerShell: ComputeAdmin cmdlets +Microsoft AzureStack PowerShell: Compute Admin cmdlets ## Azs.Compute.Admin Cmdlets ### [Add-AzsPlatformImage](Add-AzsPlatformImage.md) @@ -17,9 +17,21 @@ Creates a new platform image with given publisher, offer, skus and version. ### [Add-AzsVMExtension](Add-AzsVMExtension.md) Create a Virtual Machine Extension Image with publisher, version. +### [Disable-AzsComputeUserSubscriptionFeature](Disable-AzsComputeUserSubscriptionFeature.md) +Disable the tenant subscription feature. + +### [Enable-AzsComputeUserSubscriptionFeature](Enable-AzsComputeUserSubscriptionFeature.md) +Enable the tenant subscription feature. + +### [Get-AzsComputeFeature](Get-AzsComputeFeature.md) +Get an existing feature. + ### [Get-AzsComputeQuota](Get-AzsComputeQuota.md) Get an existing Compute Quota. +### [Get-AzsComputeScaleUnit](Get-AzsComputeScaleUnit.md) +Get the scale unit view. + ### [Get-AzsDisk](Get-AzsDisk.md) Returns the disk. @@ -33,10 +45,10 @@ Returns the specific platform image matching publisher, offer, skus and version. Returns requested Virtual Machine Extension Image matching publisher, type, version. ### [New-AzsComputeQuota](New-AzsComputeQuota.md) - +Creates or Updates a Compute Quota with the provided quota parameters. ### [New-AzsDiskMigrationJob](New-AzsDiskMigrationJob.md) - +Starts a managed disk migration job to migrate managed disks to the specified destination share. ### [Remove-AzsComputeQuota](Remove-AzsComputeQuota.md) Delete an existing Compute quota. @@ -48,8 +60,11 @@ Delete a platform image Deletes specified Virtual Machine Extension Image. ### [Set-AzsComputeQuota](Set-AzsComputeQuota.md) - +Creates or Updates a Compute Quota with the provided quota parameters. ### [Stop-AzsDiskMigrationJob](Stop-AzsDiskMigrationJob.md) Cancel a disk migration job. +### [Update-AzsComputeGlobalFeatureSetting](Update-AzsComputeGlobalFeatureSetting.md) +Update the feature settings. + diff --git a/src/Azs.Compute.Admin/docs/Disable-AzsComputeUserSubscriptionFeature.md b/src/Azs.Compute.Admin/docs/Disable-AzsComputeUserSubscriptionFeature.md new file mode 100644 index 00000000..fb25138f --- /dev/null +++ b/src/Azs.Compute.Admin/docs/Disable-AzsComputeUserSubscriptionFeature.md @@ -0,0 +1,252 @@ +--- +external help file: +Module Name: Azs.Compute.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/disable-azscomputeusersubscriptionfeature +schema: 2.0.0 +--- + +# Disable-AzsComputeUserSubscriptionFeature + +## SYNOPSIS +Disable the tenant subscription feature. + +## SYNTAX + +### DisableExpanded (Default) +``` +Disable-AzsComputeUserSubscriptionFeature -FeatureName [-Location ] + [-SubscriptionId ] [-TenantSubscriptionId ] [-DefaultProfile ] [-PassThru] + [-Confirm] [-WhatIf] [] +``` + +### Disable +``` +Disable-AzsComputeUserSubscriptionFeature -FeatureName + -TenantSubscriptionFeatureSetting [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DisableViaIdentity +``` +Disable-AzsComputeUserSubscriptionFeature -InputObject + -TenantSubscriptionFeatureSetting [-DefaultProfile ] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DisableViaIdentityExpanded +``` +Disable-AzsComputeUserSubscriptionFeature -InputObject + [-TenantSubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Disable the tenant subscription feature. + +## EXAMPLES + +### Example 1: Disable a Tenant Subscription Feature +```powershell +PS C:\> Disable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId 4d105157-d6b2-42db-a3a3-56da6674183a -FeatureName Microsoft.Compute.EmergencyVMAccess -Location local +``` + +A successful call to disable a feature for a tenant's subscription will not return any output + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FeatureName +Name of the feature. + +```yaml +Type: System.String +Parameter Sets: Disable, DisableExpanded +Aliases: + +Required: True +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity +Parameter Sets: DisableViaIdentity, DisableViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +Location of the resource. + +```yaml +Type: System.String +Parameter Sets: Disable, DisableExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```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 +``` + +### -SubscriptionId +Subscription credentials that uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String +Parameter Sets: Disable, DisableExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TenantSubscriptionFeatureSetting +The feature settings for the tenant subscription. +To construct, see NOTES section for TENANTSUBSCRIPTIONFEATURESETTING properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20201101.ITenantSubscriptionFeatureSettings +Parameter Sets: Disable, DisableViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TenantSubscriptionId +The tenant subscription identifier. + +```yaml +Type: System.String +Parameter Sets: DisableExpanded, DisableViaIdentityExpanded +Aliases: + +Required: False +Position: Named +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.PowerShell.Cmdlets.ComputeAdmin.Models.Api20201101.ITenantSubscriptionFeatureSettings + +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +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 + - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. + - `[Id ]`: Resource identity path + - `[Location ]`: Location of the resource. + - `[MigrationId ]`: The migration job guid name. + - `[Offer ]`: Name of the offer. + - `[Publisher ]`: Name of the publisher. + - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. + - `[Sku ]`: Name of the SKU. + - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + - `[Type ]`: Type of extension. + - `[Version ]`: The version of the resource. + +TENANTSUBSCRIPTIONFEATURESETTING : The feature settings for the tenant subscription. + - `[TenantSubscriptionId ]`: The tenant subscription identifier. + +## RELATED LINKS + diff --git a/src/Azs.Compute.Admin/docs/Enable-AzsComputeUserSubscriptionFeature.md b/src/Azs.Compute.Admin/docs/Enable-AzsComputeUserSubscriptionFeature.md new file mode 100644 index 00000000..2962f41a --- /dev/null +++ b/src/Azs.Compute.Admin/docs/Enable-AzsComputeUserSubscriptionFeature.md @@ -0,0 +1,251 @@ +--- +external help file: +Module Name: Azs.Compute.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/enable-azscomputeusersubscriptionfeature +schema: 2.0.0 +--- + +# Enable-AzsComputeUserSubscriptionFeature + +## SYNOPSIS +Enable the tenant subscription feature. + +## SYNTAX + +### EnableExpanded (Default) +``` +Enable-AzsComputeUserSubscriptionFeature -FeatureName [-Location ] [-SubscriptionId ] + [-TenantSubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +### Enable +``` +Enable-AzsComputeUserSubscriptionFeature -FeatureName + -TenantSubscriptionFeatureSetting [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### EnableViaIdentity +``` +Enable-AzsComputeUserSubscriptionFeature -InputObject + -TenantSubscriptionFeatureSetting [-DefaultProfile ] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### EnableViaIdentityExpanded +``` +Enable-AzsComputeUserSubscriptionFeature -InputObject [-TenantSubscriptionId ] + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Enable the tenant subscription feature. + +## EXAMPLES + +### Example 1: Enable a Tenant Subscription Feature +```powershell +PS C:\> Enable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId 4d105157-d6b2-42db-a3a3-56da6674183a -FeatureName Microsoft.Compute.EmergencyVMAccess -Location local +``` + +A successful call to enable a feature for a tenant's subscription will not return any output + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FeatureName +Name of the feature. + +```yaml +Type: System.String +Parameter Sets: Enable, EnableExpanded +Aliases: + +Required: True +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity +Parameter Sets: EnableViaIdentity, EnableViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +Location of the resource. + +```yaml +Type: System.String +Parameter Sets: Enable, EnableExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```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 +``` + +### -SubscriptionId +Subscription credentials that uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String +Parameter Sets: Enable, EnableExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TenantSubscriptionFeatureSetting +The feature settings for the tenant subscription. +To construct, see NOTES section for TENANTSUBSCRIPTIONFEATURESETTING properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20201101.ITenantSubscriptionFeatureSettings +Parameter Sets: Enable, EnableViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TenantSubscriptionId +The tenant subscription identifier. + +```yaml +Type: System.String +Parameter Sets: EnableExpanded, EnableViaIdentityExpanded +Aliases: + +Required: False +Position: Named +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.PowerShell.Cmdlets.ComputeAdmin.Models.Api20201101.ITenantSubscriptionFeatureSettings + +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +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 + - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. + - `[Id ]`: Resource identity path + - `[Location ]`: Location of the resource. + - `[MigrationId ]`: The migration job guid name. + - `[Offer ]`: Name of the offer. + - `[Publisher ]`: Name of the publisher. + - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. + - `[Sku ]`: Name of the SKU. + - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + - `[Type ]`: Type of extension. + - `[Version ]`: The version of the resource. + +TENANTSUBSCRIPTIONFEATURESETTING : The feature settings for the tenant subscription. + - `[TenantSubscriptionId ]`: The tenant subscription identifier. + +## RELATED LINKS + diff --git a/src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md b/src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md new file mode 100644 index 00000000..30b3d1bb --- /dev/null +++ b/src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md @@ -0,0 +1,181 @@ +--- +external help file: +Module Name: Azs.Compute.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/get-azscomputefeature +schema: 2.0.0 +--- + +# Get-AzsComputeFeature + +## SYNOPSIS +Get an existing feature. + +## SYNTAX + +### List (Default) +``` +Get-AzsComputeFeature [-Location ] [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +### Get +``` +Get-AzsComputeFeature -Name [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzsComputeFeature -InputObject [-DefaultProfile ] [] +``` + +## DESCRIPTION +Get an existing feature. + +## EXAMPLES + +### Example 1: Get a Feature +```powershell +PS C:\> Get-AzsComputeFeature -Location local -Name Microsoft.Compute.EmergencyVMAccess | ConvertTo-Json + +{ + "EnabledTenantSubscriptionId": [ + "e9f233f4-6251-441e-a8e4-5e0165a5ff84", + "a6293671-ca91-4040-8edc-5a5bc8bb10f2", + "77df6e8d-c86b-4184-a7da-35217afdb7e8", + "078fcd45-e064-4f1b-a546-f2873757c7c0", + "88e0ade6-f94a-4a75-8b32-b8f07daf2ad0", + "22c12f96-7352-4165-a7e4-ccebd1257f15", + "a40a4cdf-0054-4b41-8692-0c0de49958b5", + "d23289dc-887a-4e68-8c84-8a0e4d8dec51", + "3f843028-3d49-4ae9-8185-148745b4a231" + ], + "FeatureName": "Microsoft.Compute.EmergencyVMAccess", + "GlobalFeatureSettingGlobalFeatureState": { + + }, + "Id": "/subscriptions/52cc3943-24b0-45bc-8403-466ccf5775a3/providers/Microsoft.Compute.Admin/locations/local/features/Microsoft.Compute.EmergencyVMAccess", + "Location": "local", + "Name": "Microsoft.Compute.EmergencyVMAccess", + "Type": "Microsoft.Compute.Admin/locations/features" +} +``` + +Get a specific Feature. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +Location of the resource. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the feature. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: FeatureName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +Subscription credentials that uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String[] +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20201101.IFeature + +## NOTES + +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 + - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. + - `[Id ]`: Resource identity path + - `[Location ]`: Location of the resource. + - `[MigrationId ]`: The migration job guid name. + - `[Offer ]`: Name of the offer. + - `[Publisher ]`: Name of the publisher. + - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. + - `[Sku ]`: Name of the SKU. + - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + - `[Type ]`: Type of extension. + - `[Version ]`: The version of the resource. + +## RELATED LINKS + diff --git a/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md b/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md index 8c983e11..28142903 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md @@ -87,7 +87,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -104,7 +103,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -120,7 +118,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -136,7 +133,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -153,7 +149,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -165,23 +160,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180209.IQuota - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api202101.IQuota ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/Get-AzsComputeScaleUnit.md b/src/Azs.Compute.Admin/docs/Get-AzsComputeScaleUnit.md new file mode 100644 index 00000000..024d3dc6 --- /dev/null +++ b/src/Azs.Compute.Admin/docs/Get-AzsComputeScaleUnit.md @@ -0,0 +1,157 @@ +--- +external help file: +Module Name: Azs.Compute.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/get-azscomputescaleunit +schema: 2.0.0 +--- + +# Get-AzsComputeScaleUnit + +## SYNOPSIS +Get the scale unit view. + +## SYNTAX + +### Get (Default) +``` +Get-AzsComputeScaleUnit -Name [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzsComputeScaleUnit -InputObject [-DefaultProfile ] [] +``` + +## DESCRIPTION +Get the scale unit view. + +## EXAMPLES + +### Example 1: Get Compute Scale Unit +```powershell +PS C:\> Get-AzsComputeScaleUnit -Name s-cluster -Location redmond -SubscriptionId "DC773456-D727-484E-8292-AE8FACFDDDF5" + +Scale Unit Name Location Nodes +--------------- -------- ----- +s-cluster redmond {AzSNode1,AzSNode2,AzSNode3,AzSNode4} +``` + +Run `Get-AzsComputeScaleUnit` to get the compute scale unit. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +Location of the resource. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Name of the scale unit. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: ScaleUnitName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +Subscription credentials that uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String[] +Parameter Sets: Get +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210330.IScaleUnit + +## NOTES + +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 + - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. + - `[Id ]`: Resource identity path + - `[Location ]`: Location of the resource. + - `[MigrationId ]`: The migration job guid name. + - `[Offer ]`: Name of the offer. + - `[Publisher ]`: Name of the publisher. + - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. + - `[Sku ]`: Name of the SKU. + - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + - `[Type ]`: Type of extension. + - `[Version ]`: The version of the resource. + +## RELATED LINKS + diff --git a/src/Azs.Compute.Admin/docs/Get-AzsDisk.md b/src/Azs.Compute.Admin/docs/Get-AzsDisk.md index 65f10651..06ecd00a 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsDisk.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsDisk.md @@ -21,13 +21,14 @@ Get-AzsDisk [-Location ] [-SubscriptionId ] [-Count ] [ ### Get ``` -Get-AzsDisk -Name [-Location ] [-SubscriptionId ] [-DefaultProfile ] - [] +Get-AzsDisk -Name [-Location ] [-SubscriptionId ] [-ShowSizeDetail] + [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzsDisk -InputObject [-DefaultProfile ] [] +Get-AzsDisk -InputObject [-ShowSizeDetail] [-DefaultProfile ] + [] ``` ## DESCRIPTION @@ -184,7 +185,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -200,7 +200,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -217,7 +216,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -233,7 +231,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -249,7 +246,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ScaleUnit @@ -265,7 +261,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SharePath @@ -281,7 +276,21 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False +``` + +### -ShowSizeDetail +Switch for whether summary or detailed disk size information is returned. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: Get, GetViaIdentity +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False ``` ### -Start @@ -297,7 +306,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Status @@ -313,7 +321,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -330,7 +337,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -UserSubscriptionId @@ -346,7 +352,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VolumeLabel @@ -362,7 +367,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -374,23 +378,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180730Preview.IDisk - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md b/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md index fe900918..dae95989 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md @@ -75,7 +75,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -92,7 +91,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -108,7 +106,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -124,7 +121,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Status @@ -140,7 +136,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -157,7 +152,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -169,23 +163,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180730Preview.IDiskMigrationJob - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDiskMigrationJob ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md b/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md index ca974677..5f7c1ccd 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md @@ -87,7 +87,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -104,7 +103,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -120,7 +118,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Offer @@ -136,7 +133,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -152,7 +148,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Sku @@ -168,7 +163,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -185,7 +179,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -201,7 +194,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -215,21 +207,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20151201Preview.IPlatformImage -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md b/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md index 2e23530c..7151bf1d 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md @@ -75,7 +75,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -92,7 +91,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -108,7 +106,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -124,7 +121,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -141,7 +137,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -157,7 +152,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -173,7 +167,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -187,21 +180,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20151201Preview.IVMExtension -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md b/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md index d7f27a2e..7086d6f8 100644 --- a/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md @@ -68,7 +68,8 @@ VMScaleSetCount : 2 VirtualMachineCount : 99 ``` -Customize Quota with parameters. Any parameters not specified will have default value. +Customize Quota with parameters. +Any parameters not specified will have default value. ## PARAMETERS @@ -85,7 +86,6 @@ Position: Named Default value: 10 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -CoresCount @@ -101,7 +101,6 @@ Position: Named Default value: 100 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -117,7 +116,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -133,7 +131,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location1 @@ -149,7 +146,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -165,7 +161,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NewQuota @@ -173,7 +168,7 @@ Holds Compute quota information used to control resource allocation. To construct, see NOTES section for NEWQUOTA properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180209.IQuota +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api202101.IQuota Parameter Sets: Create Aliases: @@ -182,7 +177,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -PremiumManagedDiskAndSnapshotSize @@ -198,7 +192,6 @@ Position: Named Default value: 2048 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -StandardManagedDiskAndSnapshotSize @@ -214,7 +207,6 @@ Position: Named Default value: 2048 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -231,7 +223,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VirtualMachineCount @@ -247,7 +238,6 @@ Position: Named Default value: 100 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VMScaleSetCount @@ -263,7 +253,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -279,7 +268,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -296,7 +284,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -304,23 +291,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180209.IQuota +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api202101.IQuota ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180209.IQuota - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api202101.IQuota ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### NEWQUOTA : Holds Compute quota information used to control resource allocation. + +NEWQUOTA : Holds Compute quota information used to control resource allocation. - `[Location ]`: Location of the resource. - `[AvailabilitySetCount ]`: Maximum number of availability sets allowed. - `[CoresLimit ]`: Maximum number of cores allowed. + - `[DdagpuCount ]`: Maximum number of dda gpus allowed. + - `[PartitionedGpuCount ]`: Maximum number of partitioned gpus allowed. - `[PremiumManagedDiskAndSnapshotSize ]`: Maximum number of managed disks and snapshots of type premium allowed. - `[StandardManagedDiskAndSnapshotSize ]`: Maximum number of managed disks and snapshots of type standard allowed. - `[VMScaleSetCount ]`: Maximum number of scale sets allowed. diff --git a/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md b/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md index 8b8d9a18..85df8cbb 100644 --- a/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md @@ -26,7 +26,7 @@ New-AzsDiskMigrationJob -Name -TargetShare -Disks [- ``` ## DESCRIPTION - +Starts a managed disk migration job to migrate managed disks to the specified destination share. ## EXAMPLES @@ -76,7 +76,7 @@ Create a disk migration job to migrate disks to the target share. ## PARAMETERS ### -DefaultProfile - +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -88,14 +88,14 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Disks +. To construct, see NOTES section for DISKS properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180730Preview.IDisk[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk[] Parameter Sets: (All) Aliases: @@ -104,11 +104,10 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location - +Location of the resource. ```yaml Type: System.String @@ -120,11 +119,10 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name - +The migration job guid name. ```yaml Type: System.String @@ -136,11 +134,11 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId - +Subscription credentials that uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. ```yaml Type: System.String @@ -152,11 +150,10 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TargetScaleUnit - +The target scale unit name. ```yaml Type: System.String @@ -168,11 +165,10 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TargetShare - +The target share name. ```yaml Type: System.String @@ -184,11 +180,10 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -TargetVolumeLabel - +The target volume label. ```yaml Type: System.String @@ -200,7 +195,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -216,7 +210,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -233,7 +226,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -241,22 +233,24 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180730Preview.IDisk[] +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk[] ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180730Preview.IDiskMigrationJob +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDiskMigrationJob + +## NOTES -## ALIASES +ALIASES ### Start-AzsDiskMigrationJob -## NOTES +COMPLEX PARAMETER PROPERTIES -### 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. -#### DISKS : + +DISKS : . - `[Location ]`: Location of the resource. - `[DiskId ]`: The disk id. - `[SharePath ]`: The disk share path. diff --git a/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md b/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md index af4976d7..bc649f6a 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md @@ -51,7 +51,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -68,7 +67,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -84,7 +82,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -100,7 +97,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -116,7 +112,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -133,7 +128,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -149,7 +143,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -166,7 +159,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -180,21 +172,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md b/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md index 7aef14d3..bcf9a6c6 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md @@ -60,7 +60,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -77,7 +76,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -93,7 +91,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Offer @@ -109,7 +106,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -125,7 +121,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -141,7 +136,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Sku @@ -157,7 +151,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -174,7 +167,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -190,7 +182,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -206,7 +197,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -223,7 +213,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -237,21 +226,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md b/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md index ec90163a..2a468ad0 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md @@ -58,7 +58,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -75,7 +74,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -91,7 +89,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -107,7 +104,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -123,7 +119,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -140,7 +135,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -156,7 +150,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -172,7 +165,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -188,7 +180,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -205,7 +196,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -219,21 +209,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ### System.Boolean -## ALIASES - ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### INPUTOBJECT : Identity Parameter + +INPUTOBJECT : Identity Parameter - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. - `[Id ]`: Resource identity path - `[Location ]`: Location of the resource. - `[MigrationId ]`: The migration job guid name. - `[Offer ]`: Name of the offer. - `[Publisher ]`: Name of the publisher. - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. - `[Sku ]`: Name of the SKU. - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. - `[Type ]`: Type of extension. diff --git a/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md b/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md index ff0e470b..8e3fc825 100644 --- a/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md @@ -12,28 +12,13 @@ Creates or Updates a Compute Quota with the provided quota parameters. ## SYNTAX -### Update (Default) -``` -Set-AzsComputeQuota -Name -NewQuota [-Location ] [-SubscriptionId ] - [-DefaultProfile ] [-Confirm] [-WhatIf] [] -``` - -### Update (Default) ``` Set-AzsComputeQuota -NewQuota [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` -### UpdateExpanded -``` -Set-AzsComputeQuota -Name [-Location ] [-SubscriptionId ] - [-AvailabilitySetCount ] [-CoresCount ] [-Location1 ] - [-PremiumManagedDiskAndSnapshotSize ] [-StandardManagedDiskAndSnapshotSize ] - [-VirtualMachineCount ] [-VMScaleSetCount ] [-DefaultProfile ] [-Confirm] [-WhatIf] - [] -``` ## DESCRIPTION -Update a Compute Quota +Creates or Updates a Compute Quota with the provided quota parameters. ## EXAMPLES @@ -57,13 +42,13 @@ VMScaleSetCount : 0 VirtualMachineCount : 100 ``` -Set the parameters specified on the command line. +Set the parameters specified in the NewQuota hash set. Any parameters not set will default to 0 ## PARAMETERS ### -DefaultProfile - +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -75,15 +60,15 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NewQuota +Holds Compute quota information used to control resource allocation. To construct, see NOTES section for NEWQUOTA properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180209.IQuota -Parameter Sets: Update +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api202101.IQuota +Parameter Sets: (All) Aliases: Required: True @@ -91,11 +76,11 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId - +Subscription credentials that uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. ```yaml Type: System.String @@ -107,7 +92,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -123,7 +107,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -140,7 +123,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -148,23 +130,27 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180209.IQuota +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api202101.IQuota ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180209.IQuota - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api202101.IQuota ## NOTES -### COMPLEX PARAMETER PROPERTIES +ALIASES + +COMPLEX PARAMETER PROPERTIES + To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -#### NEWQUOTA : + +NEWQUOTA : Holds Compute quota information used to control resource allocation. - `[Location ]`: Location of the resource. - `[AvailabilitySetCount ]`: Maximum number of availability sets allowed. - `[CoresLimit ]`: Maximum number of cores allowed. + - `[DdagpuCount ]`: Maximum number of dda gpus allowed. + - `[PartitionedGpuCount ]`: Maximum number of partitioned gpus allowed. - `[PremiumManagedDiskAndSnapshotSize ]`: Maximum number of managed disks and snapshots of type premium allowed. - `[StandardManagedDiskAndSnapshotSize ]`: Maximum number of managed disks and snapshots of type standard allowed. - `[VMScaleSetCount ]`: Maximum number of scale sets allowed. diff --git a/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md b/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md index 2008cf8b..f9b2cb04 100644 --- a/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md @@ -57,7 +57,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -73,7 +72,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -89,7 +87,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -106,7 +103,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -122,7 +118,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -139,7 +134,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -149,11 +143,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180730Preview.IDiskMigrationJob - -## ALIASES +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDiskMigrationJob ## NOTES +ALIASES + ## RELATED LINKS diff --git a/src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md b/src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md new file mode 100644 index 00000000..cde81da0 --- /dev/null +++ b/src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md @@ -0,0 +1,252 @@ +--- +external help file: +Module Name: Azs.Compute.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/update-azscomputeglobalfeaturesetting +schema: 2.0.0 +--- + +# Update-AzsComputeGlobalFeatureSetting + +## SYNOPSIS +Update the feature settings. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzsComputeGlobalFeatureSetting -FeatureName [-Location ] [-SubscriptionId ] + [-GlobalFeatureState ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +### Update +``` +Update-AzsComputeGlobalFeatureSetting -FeatureName -GlobalFeatureSetting + [-Location ] [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaIdentity +``` +Update-AzsComputeGlobalFeatureSetting -InputObject + -GlobalFeatureSetting [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzsComputeGlobalFeatureSetting -InputObject + [-GlobalFeatureState ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Update the feature settings. + +## EXAMPLES + +### Example 1: Update the Global Feature Settings +```powershell +PS C:\> Update-AzsComputeGlobalFeatureSetting -FeatureName Microsoft.Compute.EmergencyVMAccess -GlobalFeatureState Enabled -Location local +``` + +A successful call to update a feature's global settings will not return any output + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FeatureName +Name of the feature. + +```yaml +Type: System.String +Parameter Sets: Update, UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalFeatureSetting +Higher-priority global feature flags. +To construct, see NOTES section for GLOBALFEATURESETTING properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20201101.IGlobalFeatureSettings +Parameter Sets: Update, UpdateViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -GlobalFeatureState +The state of the global feature. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Support.GlobalFeatureState +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity +Parameter Sets: UpdateViaIdentity, UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +Location of the resource. + +```yaml +Type: System.String +Parameter Sets: Update, UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```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 +``` + +### -SubscriptionId +Subscription credentials that uniquely identify Microsoft Azure subscription. +The subscription ID forms part of the URI for every service call. + +```yaml +Type: System.String +Parameter Sets: Update, UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ComputeAdmin.Models.Api20201101.IGlobalFeatureSettings + +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +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. + + +GLOBALFEATURESETTING : Higher-priority global feature flags. + - `[GlobalFeatureState ]`: The state of the global feature. + +INPUTOBJECT : Identity Parameter + - `[DiskId ]`: The disk guid as identity. + - `[FeatureName ]`: Name of the feature. + - `[Id ]`: Resource identity path + - `[Location ]`: Location of the resource. + - `[MigrationId ]`: The migration job guid name. + - `[Offer ]`: Name of the offer. + - `[Publisher ]`: Name of the publisher. + - `[QuotaName ]`: Name of the quota. + - `[ScaleUnitName ]`: Name of the scale unit. + - `[Sku ]`: Name of the SKU. + - `[SubscriptionId ]`: Subscription credentials that uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + - `[Type ]`: Type of extension. + - `[Version ]`: The version of the resource. + +## RELATED LINKS + diff --git a/src/Azs.Compute.Admin/examples/Disable-AzsComputeUserSubscriptionFeature.md b/src/Azs.Compute.Admin/examples/Disable-AzsComputeUserSubscriptionFeature.md new file mode 100644 index 00000000..fdd0fb3d --- /dev/null +++ b/src/Azs.Compute.Admin/examples/Disable-AzsComputeUserSubscriptionFeature.md @@ -0,0 +1,7 @@ +### Example 1: Disable a Tenant Subscription Feature +```powershell +PS C:\> Disable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId 4d105157-d6b2-42db-a3a3-56da6674183a -FeatureName Microsoft.Compute.EmergencyVMAccess -Location local +``` + +A successful call to disable a feature for a tenant's subscription will not return any output + diff --git a/src/Azs.Compute.Admin/examples/Enable-AzsComputeUserSubscriptionFeature.md b/src/Azs.Compute.Admin/examples/Enable-AzsComputeUserSubscriptionFeature.md new file mode 100644 index 00000000..fec7f416 --- /dev/null +++ b/src/Azs.Compute.Admin/examples/Enable-AzsComputeUserSubscriptionFeature.md @@ -0,0 +1,6 @@ +### Example 1: Enable a Tenant Subscription Feature +```powershell +PS C:\> Enable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId 4d105157-d6b2-42db-a3a3-56da6674183a -FeatureName Microsoft.Compute.EmergencyVMAccess -Location local +``` + +A successful call to enable a feature for a tenant's subscription will not return any output \ No newline at end of file diff --git a/src/Azs.Compute.Admin/examples/Get-AzsComputeFeature.md b/src/Azs.Compute.Admin/examples/Get-AzsComputeFeature.md new file mode 100644 index 00000000..afcf3460 --- /dev/null +++ b/src/Azs.Compute.Admin/examples/Get-AzsComputeFeature.md @@ -0,0 +1,28 @@ +### Example 1: Get a Feature +```powershell +PS C:\> Get-AzsComputeFeature -Location local -Name Microsoft.Compute.EmergencyVMAccess | ConvertTo-Json + +{ + "EnabledTenantSubscriptionId": [ + "e9f233f4-6251-441e-a8e4-5e0165a5ff84", + "a6293671-ca91-4040-8edc-5a5bc8bb10f2", + "77df6e8d-c86b-4184-a7da-35217afdb7e8", + "078fcd45-e064-4f1b-a546-f2873757c7c0", + "88e0ade6-f94a-4a75-8b32-b8f07daf2ad0", + "22c12f96-7352-4165-a7e4-ccebd1257f15", + "a40a4cdf-0054-4b41-8692-0c0de49958b5", + "d23289dc-887a-4e68-8c84-8a0e4d8dec51", + "3f843028-3d49-4ae9-8185-148745b4a231" + ], + "FeatureName": "Microsoft.Compute.EmergencyVMAccess", + "GlobalFeatureSettingGlobalFeatureState": { + + }, + "Id": "/subscriptions/52cc3943-24b0-45bc-8403-466ccf5775a3/providers/Microsoft.Compute.Admin/locations/local/features/Microsoft.Compute.EmergencyVMAccess", + "Location": "local", + "Name": "Microsoft.Compute.EmergencyVMAccess", + "Type": "Microsoft.Compute.Admin/locations/features" +} +``` + +Get a specific Feature. \ No newline at end of file diff --git a/src/Azs.Compute.Admin/examples/Get-AzsComputeScaleUnit.md b/src/Azs.Compute.Admin/examples/Get-AzsComputeScaleUnit.md new file mode 100644 index 00000000..650d25a0 --- /dev/null +++ b/src/Azs.Compute.Admin/examples/Get-AzsComputeScaleUnit.md @@ -0,0 +1,10 @@ +### Example 1: Get Compute Scale Unit +```powershell +PS C:\> Get-AzsComputeScaleUnit -Name s-cluster -Location redmond -SubscriptionId "DC773456-D727-484E-8292-AE8FACFDDDF5" + +Scale Unit Name Location Nodes +--------------- -------- ----- +s-cluster redmond {AzSNode1,AzSNode2,AzSNode3,AzSNode4} +``` + +Run `Get-AzsComputeScaleUnit` to get the compute scale unit. \ No newline at end of file diff --git a/src/Azs.Compute.Admin/examples/Update-AzsComputeGlobalFeatureSetting.md b/src/Azs.Compute.Admin/examples/Update-AzsComputeGlobalFeatureSetting.md new file mode 100644 index 00000000..56af38bb --- /dev/null +++ b/src/Azs.Compute.Admin/examples/Update-AzsComputeGlobalFeatureSetting.md @@ -0,0 +1,6 @@ +### Example 1: Update the Global Feature Settings +```powershell +PS C:\> Update-AzsComputeGlobalFeatureSetting -FeatureName Microsoft.Compute.EmergencyVMAccess -GlobalFeatureState Enabled -Location local +``` + +A successful call to update a feature's global settings will not return any output \ No newline at end of file diff --git a/src/Azs.Compute.Admin/readme.md b/src/Azs.Compute.Admin/readme.md index 1f71a31d..930d1123 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -16,6 +16,9 @@ This directory contains the PowerShell module for the ComputeAdmin service. ## Detail This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. +## Module Requirements +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 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 +55,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.0.1 +module-version: 1.2.0 service-name: ComputeAdmin ### File Renames @@ -65,12 +68,30 @@ psm1: Azs.Compute.Admin.psm1 ### Parameter default values ``` yaml directive: + # Prepend Compute for the Feature cmdlets + - where: + subject: Feature* + set: + subject-prefix: Compute + # Prepend Compute for the Quota cmdlets - where: subject: Quota set: subject-prefix: Compute + # Prepend Compute for the ScaleUnit cmdlets + - where: + subject: ScaleUnit + set: + subject-prefix: Compute + + # Rename Tenant to User + - where: + subject: Tenant* + set: + subject: User + # Rename New-AzsPlatformImage to Add-AzsPlatformImage - where: verb: New @@ -92,6 +113,29 @@ directive: set: alias: Start-AzsDiskMigrationJob + # Rename property name Node to Nodes + - where: + property-name: Node + model-name: ScaleUnit + set: + property-name: Nodes + + # Format ScaleUnit returned object + - where: + model-name: ScaleUnit + set: + format-table: + properties: + - ScaleUnitName + - Location + - Nodes + labels: + ScaleUnitName: Scale Unit Name + width: + ScaleUnitName: 17 + Location: 10 + Nodes: 50 + # Default to Format-List for the VMExtension commandlets as there are many important fields - where: model-name: VMExtension @@ -171,6 +215,12 @@ directive: set: suppress-format: true + # Default to Format-List for the MigrationSubTask Object model as there are many important fields + - where: + model-name: MigrationSubTask + set: + suppress-format: true + # Rename DataDisk parameter to DataDisks in Add-AzsPlatformImage for back-compat - where: verb: Add @@ -309,6 +359,12 @@ directive: subject: DiskMigrationJob variant: CancelViaIdentity remove: true + + # Hide the auto-generated Get-AzsDisk and expose it through customized one + - where: + verb: Get + subject: Disk + hide: true # Hide the auto-generated New-AzsDiskMigrationJob and expose it through customized one - where: @@ -337,12 +393,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Compute.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 Changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Compute.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Compute.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 Changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json index c88a69bf..392198d5 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json @@ -1,2459 +1,999 @@ { - "Get-AzsPlatformImage+[NoContext]+TestListPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { + "Get-AzsPlatformImage+[NoContext]+TestListPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["19"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["ab2fbd77-5586-4cf0-98e0-7196aa348eff"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV2T2dmGN0/Is2ioX4ihw02imu7DV08BIif1eF29cMyYwAy2pHvvcHPsl9crB2RJJd6U+ix9Zpzx8kRbtpzIUDFNNXIT9UqvFiy563PaajZuqlK7quJJfT5RXfT0F/yhJNVMLco1RMVUwsEUltxAJ" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13727"], - "x-ms-request-id": ["ab2fbd77-5586-4cf0-98e0-7196aa348eff"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174620Z:ab2fbd77-5586-4cf0-98e0-7196aa348eff" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:20 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["196187"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/ElasticsearchClusterSolution/skus/ElasticsearchClusterSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/JenkinsCICluster/skus/JenkinsCICluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/KafkaCluster/skus/KafkaCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MariaDBwithReplication/skus/MariaDBwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MemcachedMultipleInstance/skus/MemcachedMultipleInstance/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MoodleMultiTierSolution/skus/MoodleMultiTierSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MySQLwithReplication/skus/MySQLwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/NodeJSCluster/skus/NodeJSCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/PostgreSQLwithReplication/skus/PostgreSQLwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/RabbitMQCluster/skus/RabbitMQCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a60bf91041304dba9c2613e217c8a8b7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=1k%2Fn0l8ePLPR94qxqG6Zqz4tmxq8KaydSdHJnOwGpdo%3D\u0026se=2019-04-22T05:02:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/WordPressMultiTierSolution/skus/WordPressMultiTierSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Ubuntu1404LTS.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201808140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/08acaeee3c7e4cc394e9ef81790bda63/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ydNNSz53UkhZG1faRISu%2Frjuw3fQax9DKgBRweZ2Pm4%3D\u0026se=2019-04-23T22:15:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.20180818\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/41281233660241f9a8e074b74f0d5abb/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Qk6P%2FYD5HfFV4%2B6LVzhxBZ7ynbPQx6he%2BYp9N%2FEnCs8%3D\u0026se=2019-04-24T02:31:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-14T06:22:13Z\u0026st=2020-02-13T22:22:13Z\u0026spr=https\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20170811\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Ubuntu1604-20170619.1.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/411e6e144b774457870f77f8fbb95a80/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=9d%2Be%2B%2BNGSnLb2p2AdIjeiXO3XHY%2BHhsLR9BkI%2FAoybA%3D\u0026se=2019-04-25T04:15:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20180831\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7e3878d7cf874ecfab6eece1d0553fce/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UcbqQHS8NNcE7Cy5McWPm%2BSF%2BTCd4MhGL5fyoZ4nIM0%3D\u0026se=2019-04-22T14:00:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.20180911\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/027b00815995491a8986f8ff7e16c38c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T02:20:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CheckPoint/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CoreOS/offers/CoreOS/skus/Stable/versions/1465.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0e40b5a886604bd5a6e153c9d943e47a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=eHxmjiNG9pvjAckaINKQ%2Fu0w63TYyqqJUGBVxgj%2BkD4%3D\u0026se=2019-04-22T07:51:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fdcc8adcec6b45ca914aecd18b2d8dbf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cz03ZesAbyd3hsCTdiE4nQCaiI3nvOIlOCz3pcXQxKs%3D\u0026se=2019-04-22T15:19:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/6.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Fortinet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/411d3bd4a3de4014a3d3eb7d187beed8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T21:55:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/KasperskyLab/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0e53c22baa894df185b51f0a987c8ed2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=huwHQlB8xANDiG62CkCd5kLLPFijNUVCOc%2FNQsAgF88%3D\u0026se=2019-04-24T11:04:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-CentOS/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d84feb2939954cb1a3c2fb460754b84c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Gn7yLA%2F%2BF%2FhS2ISuZYXceT7ycS885MgXMlzCClwIVco%3D\u0026se=2019-04-25T20:24:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026060001\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b7f0116949540a086c3d4c9b251222b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=19lvx6FiSwUn8I%2F1bfbxazUl8wcR3zecXDVIv3FCL2Q%3D\u0026se=2019-04-22T08:45:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/96abbb1d8d0240f3b293955633802812/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AwnlJAFW7lu%2BThnqazrwlV6mKt6IYDCnPLoF%2B%2Fpe3VA%3D\u0026se=2019-04-24T11:38:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-WS2016/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/810b05a219ab47f484d6174133a11159/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=yWnIrRGFQKWofPbPHYAwYV2H6KyH3DMnvsnonfNJWlA%3D\u0026se=2019-04-25T04:23:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Enterprise/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e287e7de89264d4fbbfdf01acd3c39e1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=fkvV%2FI1a7H1N4HVYl26Lez8j2ZB2bR05QW8KT0bUaoQ%3D\u0026se=2019-04-21T01:33:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Express/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f5fa664ec7141b9b2772528b3423942/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=R2skFCHjjh4mb2uq4OPpEi5Da6baoID24BwAwaCWJrg%3D\u0026se=2019-04-25T20:39:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Standard/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b673b3e0112473eba61d6de49ae0a19/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=FP13kvLeTnyWQI6sScc%2FL4D4ed5bT6UGCylQnVPiRGE%3D\u0026se=2019-04-24T12:23:13Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=e3K%2B5IAiUhqQBMMpWDc0huefPITFPlhGfJAhxbnNj8Y%3D\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Enterprise/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d200e6821950484a8d2014f9ebb1bb9b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=yRoeu6Mf9pD3x%2FgEBntVL%2BRIdPnhk%2Fjd30qaemtzdL8%3D\u0026se=2019-04-21T13:02:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/SQLDEV/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c0561c31f0e843efbf65c4ca59a3705e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BCQQB2mGuTPp4Jrlm4DxOVjiC2VsB%2Ft4mjQUOUY8BZo%3D\u0026se=2019-04-24T03:43:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Standard/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bde535a023f54699a2ee96f58574352b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tnmrSNP%2FBcFdGDY7VIB2USaSoTGccwz0f2t50AMcEjo%3D\u0026se=2019-04-24T08:00:23Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Web/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e444e9cf06044fafa8ca87fc825e39d2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=W9WW%2BPuTjb2f25%2Fn%2FhQs8gWYDWZ0umn8DgVG%2BD2XHtk%3D\u0026se=2019-04-24T17:07:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/83d1b9ea66e94bf191d32d4747e5d244/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5%2BVt8IbYCDgW3cpMB1j31OR8oMzQRoVAq1wDkvqMgD8%3D\u0026se=2019-04-21T14:52:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/73c512f0960c454c8384136874f024ae/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=D0%2FhFewg73BV0yxvSEIp84NbhtTqkrhV5BPD0wrTJCA%3D\u0026se=2019-04-22T08:56:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/SQLDEV/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2531eba967bf460ca26be30ff461035d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uX9n7oJujgZhxJV%2BM4vM2eSwbu1n96ZjfkPgD4tHpxM%3D\u0026se=2019-04-24T21:27:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f78eae34cf84343a41dbbec0d3bd5e5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=12CJlaVDbbNlM5CRvsfhYvbmzs0nHvRbFmqpLut2cas%3D\u0026se=2019-04-24T20:41:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2a7288a69064feda3295cc7bcae3324/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=pJ3OrXOnSbH0zgB1otVSvZYL%2FVpytADhYRN4t%2Fcnylc%3D\u0026se=2019-04-24T09:30:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4271130d8f364281ab8a90ed0e08adc4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=laEyOKVmGiQhbhQgpA3iD0SIZGggFueZ5%2Bqmo5U3XMU%3D\u0026se=2019-04-21T19:40:22Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6f1862ef16d745078e41c2302798dd21/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=qIYlYap7%2F7CVmTGZEcVQQ1J7hDAAnyG%2FIoEy31YWi7g%3D\u0026se=2019-04-22T13:15:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/SQLDEV/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5e201cb293ae4dd391ce139c7f86c2c0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KA7THbHIY3svdwW9bi80fmy%2BnhE1go856w5ipKmJURg%3D\u0026se=2019-04-20T23:52:45Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/58d8daf45e814801972fa307a27ae367/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=G4QUTmqGqW129Fz%2BGNmggd0p%2FLSw9JwsDkHeTDWHE1w%3D\u0026se=2019-04-24T02:00:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1cac9c14b0294b7db2be83c8c57830b6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WsbVE1z2RBBjk7dKdY5eR%2BXsL01pcn9IaEDuYlQcoyk%3D\u0026se=2019-04-22T03:15:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a3422bcdf474788a7764ef20524cceb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TmLDJ%2BMSEFRy6Q6%2F%2FQzyM3suTM0SzoAwCijEenH2eZs%3D\u0026se=2019-04-25T00:52:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7fbbe047e9954f7784aeafc1cda3792b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uy5cE9lc%2FRr%2BKgazawCOnLCVEEmSSmGO9sIMHy3IsoI%3D\u0026se=2019-04-22T10:42:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/SQLDEV/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d99835a0b3dd49ae89044a1d9e29eabb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TKtZ4FDlspgBfwb4EMXo1rQwutKK7Swq0UI6yCK3H0Y%3D\u0026se=2019-04-21T08:30:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8c8ab26516044625b1eebd96f534775b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=A972CAbVYOq%2BTQHOCTCenUZ6SKQT%2BfYt0chyvb6lKis%3D\u0026se=2019-04-22T08:24:50Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ef35e9b6f72042b4975308b9fe5860d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KkbhoHgIPx7LMQEOv8uNqJDyTX%2F5KNb%2BZduroV7jiV4%3D\u0026se=2019-04-24T19:47:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2d33a07cd13643ecaefc1c8fcf43a282/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jbQQ7wotE7QQ01Hu8yKFq6Wk4gWgE9u8bbKQjCq72P0%3D\u0026se=2019-04-25T01:14:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4e20599a06a341bbbd19d98584ddfaee/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=sIgrk9ldI6DqYLWPvaJKjyShpS8TusKJNdnJaadxOLU%3D\u0026se=2019-04-22T02:09:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/SQLDEV/versions/14.0.1000204\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6218e0d321a84be9b544abe8f37478cd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IRE75Oe3%2BvxY9T2EBaP96eOqCue%2B%2BKY0P460ZwwyOfY%3D\u0026se=2019-04-25T21:15:57Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/59940b6d0bf646e49998ae2d9c99aecb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hhLjv%2BHMFGjEDf3YFrvhjdIT0dYjJd09ygXV3fhlFaI%3D\u0026se=2019-04-24T16:08:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9401a0f0afdc47158e9d26c7b59523ca/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rnPNcfA95URGpZHlMExTmKVIvr88PacRssUfq517L%2BQ%3D\u0026se=2019-04-24T22:11:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSharepoint/offers/MicrosoftSharePointServer/skus/2013/versions/15.0.4447\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/46cfc189e5fc48a18bd10d205a22f753/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=VL4osFB0hNgVpudsSJAtk99zmtDAlde2veDd67e%2Fhbs%3D\u0026se=2019-04-25T03:28:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSharepoint/offers/MicrosoftSharePointServer/skus/2016/versions/16.0.4359\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1c36c5d778824d218e2df4213879d29f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IWh6PRUMBLRyZffaH7kX2cEDnfm3lFn%2FFJcaHdJ8MvM%3D\u0026se=2019-04-23T18:12:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3673edaa147345e5b25cfbcd712c9f84/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=c0QHVZQ%2F%2Fa4H1z5uc4FNclFHTcjN0%2BiZJXCP0e6CV6U%3D\u0026se=2019-04-21T19:59:01Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180216\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1c04b103b45c4fdd909bde63c08dba07/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MVW9chumZuL3Y6w92mSOUVcsN69QH%2Fvt0LIYX7MZitE%3D\u0026se=2019-04-24T13:10:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/WindowsServer2012R2DatacenterBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/df758a00508848fd89ed21148f68d4e1/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=DsD1saMbwQZimvmraPDIhqLWsoC1gHbHXMxvIiazGCc%3D\u0026se=2019-04-22T03:44:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/de7bfbcc7d9e42f68953c742f2b7ffeb/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=q4QN%2BkhbeWt6fApnINHWeUTvMB6RVzMXnH3adimfrhU%3D\u0026se=2018-11-17T21:55:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Server2016DatacenterCoreBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180717\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2dfbb61edfc0470987695789260b4962/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=DAbE1JrKCehbsboK%2Bl2nWveH5PqT%2BP4ZrwVVxy3h5iA%3D\u0026se=2019-04-21T03:45:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180820\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3caeeabf21144cf38e8be5507fc791a3/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=NdhszFTFZL3I8TJaeXjYuHGpk3jOzHy75543xrX%2ByWY%3D\u0026se=2019-04-21T23:48:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cfeb4f835a7a422ea62688e9c21d1fcf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=xksf9pNKF9nHju4m2HBZ9GXvrhzQVdYuXfTEmEiNWBw%3D\u0026se=2019-04-21T22:31:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Server2016DatacenterFullBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/db7a7f8f517446f7b84585493603aacf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uvJk2fw6nN8KSydqYpzB0ykmlTMRJTqjZWNW226x6v0%3D\u0026se=2019-04-22T12:19:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3e2a7b9ff7f94b14978e1bb065de5a7b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=dtm%2F8BeU6ivA%2B0VQIP39ybwtrslE3lhUgDk8dhol4%2BI%3D\u0026se=2018-11-17T04:47:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2019-Datacenter/versions/2019.127.20190522\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4f701d79e87c4800be7f144d2186cb33/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-09-05T03:45:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/AddOnRP/skus/WindowsServer/versions/1.1906.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2f48d49354794235971d472ac7145388/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-12-05T17:37:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/66a927e4774f496597eae771b36406bd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AwpvJSKWG0CtoFNXZWdriJ5CkB4GJgT4uO1QwTKtEtg%3D\u0026se=2019-04-24T00:49:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a9120cdd68514772aef0e52889a97c78/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hockDbp4QkLasj0kQjT9WUclaSbhjlpBlQhMMNWu%2Bi0%3D\u0026se=2019-04-24T00:50:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9159eb815b6345ad938cdbb621472dfe/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=RHQquuS1dJDAfDoWa6fkRlU7RMI%2Bb5yOFzka5WXBBic%3D\u0026se=2019-04-22T16:09:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/VMSSGalleryItem/skus/VMSS/versions/1.3.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS-LVM/skus/7-LVM/versions/7.5.20180524\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d001446d7e384d8a873fffacfa76b15b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gwwz9IK7iJQ4mfBqhA%2F00UuyW7FOFgJwLpl5SVTzWBU%3D\u0026se=2019-04-23T17:02:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.10/versions/6.10.20180803\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f0e5f463c12f41a7869b722f8b2aa220/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cGHcWbSy9lf71yVBjwceFDjNUS3zcqEuSTc2z5%2FPkuk%3D\u0026se=2019-04-21T07:41:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.9/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/OpenLogic-CentOS-69-20180105.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"training\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.9/versions/6.9.20180118\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ae60540fb616438696923c45af54f15d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uLxmnW4eNczWBjGJ0QvpWZhCTrxZ4YuB%2F3qre1H9%2BGI%3D\u0026se=2019-04-24T11:22:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/7.3/versions/7.3.20170925\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fa72dec1191b46059a29a2d1d736c65a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YMFSyn%2BFEvD5Q04cCXNQyBkR4NJ7dzsjKf8lHnMXvfo%3D\u0026se=2019-04-23T16:35:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/7.5/versions/7.5.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b5701417279a4285a795cfbc1eb95d17/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jwkYyzGUExiL6DRaXblBw%2FbL48RK8bYTp452KjEMSSU%3D\u0026se=2019-04-22T01:35:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Puppet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/11-SP4/versions/2018.07.03\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e7069105a1ae4fb88dec5412d76f57f2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Gw8rs6O%2FBFEIdKbq6LehE7pzd%2FbMHAhwVujYMl64KJ4%3D\u0026se=2019-04-24T11:52:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/12-SP3/versions/2018.07.03\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/dc7a6f2785fa40d786502ee72f32e5d2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2BRTsrNg0bQD8AqdGaPAotyYys60n1lOr1kGnWYVN5FY%3D\u0026se=2019-04-22T12:06:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/15/versions/2018.07.16\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7f409d37db95459fb16b6e0f4454ac85/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TYqlr80oiBJLCzEct4CiIDynzL0t7IRpqiAaeqTydlI%3D\u0026se=2019-04-24T20:18:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SUSE-Manager-Server-BYOS/skus/3.1/versions/2018.05.23\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/81016e8ef9dd4fdba8dd8ef51fecc5ca/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uHzb3x%2FVUhg36DxVTdQCTrCCHVV5aoktjnbjwMfHLFI%3D\u0026se=2019-04-25T01:07:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/a10networks/offers/a10-vthunder-adc/skus/vthunder_byol/versions/4.1.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b4d19cd6f71f4d4b998f3c417eab8132/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=aWxjMiO71NzkBbQ9urfbLVcf7dY6UputTkAqds6Eyjc%3D\u0026se=2019-04-24T01:02:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/arista-networks/offers/veos-router/skus/eos-4_21_0f/versions/4.21.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/337487d0e9e24757912647bca4531c73/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nwjbd2El9Am25r4zFw%2FwA2UPMdyUEuUsT0teQ1fWbEs%3D\u0026se=2019-04-22T15:20:01Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-app-sec-control-center/skus/byol/versions/2.1.100803\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/211d33df3bb641e2bc4070bca48b4f14/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Spp0sG19%2F9GCqyBtjYeobDRVT%2Bh8a3eaEI4Exln%2FWhA%3D\u0026se=2019-04-21T09:07:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"NVDYCK5Z5E4PXIOSOMYBGMMY2P6FURFDPQ3FQYJZILWEQ6FMQ24F5DBWA6BWHPPAT4FEMO2R4ORKO6AS2OVMDGASLVVNHJJTUSUSV5I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-email-security-gateway/skus/byol/versions/7.1.100405\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a696e6a8f38341d59e02cf7ee6e644c3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hNlSfCea6YTYZ62GWlzq1HTMBKIq1C5JMgSpxWzqYro%3D\u0026se=2019-04-24T14:38:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5LJ4GJIS7FDXKIPC52U2QHQCCG2TYBW23DAXF4C7T4MT47OH6HPZ4LLK5EN7DQVCZFTAWUGOLVXY3RZ4JBL35XQ3QIHJLFIHBWC7GTQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-ng-cc/skus/byol/versions/7.2.205701\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d75baf5403c422ebea0ce3a2a1141b4/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TePc0Nx9CMUMpIx5oS6ydr9E%2BXEHvftADEaAGmsrhrE%3D\u0026se=2019-04-24T23:02:38Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-ng-firewall/skus/byol/versions/7.2.205701\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4047d7fe588e44f8a93858954913fce3/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5ZJXinkOh9mYRjTYTOJAf0FAxMpTYaKMaDlr3166%2F24%3D\u0026se=2019-04-23T16:43:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/waf/skus/byol/versions/9.1.001502\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0d50346e3fb1447886153f14ca5880da/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=dTtif%2Fs%2FHp009MJDSHJm7axB5jMExUAmILaxCLG1L2k%3D\u0026se=2019-04-22T06:42:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UAAWCQTKE6QYUG3H462OEWMTVIND7FSYERZYYW2G5CRESODI3QQABXPZEUDD2ZNU7LSKMR7VOD4M7YWJVBVEUEOVSJVDN25UR73YB3Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/abantecart/skus/1-2/versions/1.2.100\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/347f01ec7188438fa67ef00b29d8c4e7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=mYM75vWt5ErOLrBYF7xD9VToHa6Fs9zdRmA1jMdeP%2BI%3D\u0026se=2019-04-21T21:50:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YEBM5WXAGKYT7TRSJ2UXXUTLS5ZXPOWIGNC5HWD72D5LPX45OPQ74F3SV5NLZGKKH2OKB3U32JHBFXJAD6VRV5QLH6QGQ7KNH4ASS2I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/activemq/skus/5-13/versions/5.14.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b672d164006a47599c82d082e02bd47e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=T3esbLAZmDelBZcIS57u%2Bb5I9zCBkR3Ib1Rzy4TQGX0%3D\u0026se=2019-04-22T04:52:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"6NTRW42IUUVRUASZIVLEFNOKXVBXV2HXGKL2HN5NZ2AJCCQEG6YDJX2AORBGKBULWLVW6POZZJRS46WFESOS47PC4LOTEFYDYZRHYYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/akeneo/skus/1-4/versions/1.7.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/40a9ec1360694b6c9e10af1d40abff1c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=R%2FKeRzaOJ0dlBWIw2%2F1t12l19gjQB49mv30S9AlfOSQ%3D\u0026se=2019-04-23T19:46:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EFCXRMLFM4PTCELYQFIGCID4DOH5FF6TL7US6BVQJI7YHA7WVT7SCP4IXUCJSA5JL5OCYWF6JJGS7NZ3766GEYDBR4BGGO3MNXIVF2A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/alfrescocommunity/skus/201602/versions/201704.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b182a4a3ad0415c80db0bd9c6f81c58/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=w8XkEQGUDr5PXj%2Bdijhyg31lEVL8GjdQaK3yONx0%2BBM%3D\u0026se=2019-04-24T22:03:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PWYFNE7FC65D6CK54OR37SCQRGJW7YW2KWGRXIHAZRTAFYOPDMV7JYFMZ3WJ3WNX6DKEKX4EUQNEDWDX2X7U6ZWJ227K23GJ5TB2UYY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/apachesolr/skus/5-5/versions/6.5.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/738cc1551cbb43c4b91aebba9c124b8c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UVkpw7P%2BXZJgFw3tet3rhb31hlWta7i8a5ULZEFDVLo%3D\u0026se=2019-04-21T00:20:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"O6OOMBWC6EP54OPAD6UOCOEOBOMVUTVAQ6IECMEH67ITHDMRWY6OFLMPKURFKHFF4SFHAWYLZ62WETQJ6MM3LZ5CEJUVZCUHZZA6LCI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/artifactory/skus/4-5/versions/5.3.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a07312ae4a644e8f9595480de3f47b34/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uafHwTWKOPpgRf3dFOuXoJVOia0XK0AIJH0V4dMe%2FoI%3D\u0026se=2019-04-22T16:10:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LEV2VYDM2F5SDJXFAKTJCQ2EJH34X7GVQQZFR7NM4M6FKZMJOOTT5L2IF7PLNVT2U7H3OEBSHQADINYJ6AJVGOO6K2IPY5L73CTGTSY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/canvaslms/skus/2016-02/versions/2017.4.22120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7631d0897a94492cbdc91b29f1335ff9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=EW4Z8yLpNttwdQw19Oysa5cv54vTwcEaHJHnfSIsfUY%3D\u0026se=2019-04-24T00:03:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DTP7LZBFEIYGHXEEPAPCTOK54QV3NDHCGPYVUHVQ3DJVT6UCTLE3V4DV5P3G442UOPHE7VFFV4PH4FTEZJDARV5D74OCV7XYE6HAZYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/cassandra/skus/default/versions/3.10.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b965b309a8014fc894d773a74947034f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cHaiU7LIDlQlPeH8RNlcdvEUFj2leT7wil2Wskgzmno%3D\u0026se=2019-04-24T15:17:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YPVB26KOT2GMN4NWLZTHTEDODUG2C3WFZL7STYSBLG3K75ETFL4AFACJMOXXOCTX4H2X7566BIPYBRRNUF72GGUMLCGLXQP4DPS5AXY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/civicrm/skus/4-7/versions/4.7.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3c375836db9843b99e487bdd3793159f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kT%2BS1WvpqHWSPy2rE6itqitNTLeWTpXmGed078yX9Gk%3D\u0026se=2019-04-21T00:11:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"J7IPLXWHOWP3HKXS7VEOKGR2PBJZP4S3FFJYO2SH4LQH3I5LH5ML2WCS6FD3SXEFJPD25SW7246RKTU6OVIHGVXW324EENA5VZSI2JQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/cmsmadesimple/skus/2-1/versions/2.2.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/621b7af6be804119aba9e55e6db84def/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IjPGeHnu8EFZyt8iL7uUOy%2BNKuTVthe%2FYkZnoGGXyQI%3D\u0026se=2019-04-24T11:05:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KBNXH3YTGT63Q63YHCRBYCXTG6LK2MUSERCVKCXRJDXXCEWM4SPWQWZVSPNJYOXRYA4CHZLBB24EZWM3EPSHB4XCQJQ45ZD7NQEDHJY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/codiad/skus/2-7/versions/2.8.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0d9c2264b4b846b98c811b9f6ef3e7f2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=khIxIiw0ZOw1ohsp9uOA4Kk3Tc8Jtqcr2FQbJ%2Br9MHo%3D\u0026se=2019-04-23T22:34:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EIOEYKZNBWRKDDU6SIB4PNZXY256OGIWNMR6YRYLFLM7GCIQ5G6LDJTIQD7DWWXRMVH7RND733LKVITY2HEWPL3RKFZ7OGGSI3XYV6A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/concrete5/skus/5-7/versions/8.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/871015f26ef44e369a8bae53291cfd87/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hc8RbW93NcjxTV5U%2BPSfFE5kLBeUcREg6CJ6TUeKriE%3D\u0026se=2019-04-23T22:45:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FNT4HMN5P5YHUBF34X24FCJYUDVFABK6ZVXFUXFNSGJ5GFE65R7B3EWT7AQVCME3IVHO5XTPNZRIE6NTFAOZJKV6H3LVT64L4KYESXI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/coppermine/skus/1-5/versions/1.5.461\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/707cf4735a474c9a89772420df785057/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AzcBNNRRKef8VpxLJj2njCtXU%2BJTMCZNKUEdeJfV%2FG4%3D\u0026se=2019-04-21T21:34:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"R7TPWFCIJREFXH3B2YUZTCDUTLG6ULKCHIOIEVO2IK3UJMYKX5A4AFRDXMIVJIWTNLCBB65UIJOCDPKNJVEPWNBQV25X3RA6E33PAGA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/couchdb/skus/1-6/versions/2.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d33ad559f0e746389cc6bf5d058e062a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kZcNTTSWvef3zBEirBEghKYYQ3%2FnuGM55WM6WYlqe6c%3D\u0026se=2019-04-22T14:24:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UXAKYALSSOZV2EQWTWR6SGSGOQZD6CZE3LQ22GN2LTTYSZ7CQDQ3XED4R7X34XS4ELHV2P6GALY7Q3AOQ3MYMCKPSL6YITQHD64X7DA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/diaspora/skus/0-5/versions/0.6.600\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d74e60c1b1c2402c8d6f874b1e1935bc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Oznu3mCWDC6rsaBkHAfzjx2knSWgX9CFsGUDAXySD4Y%3D\u0026se=2019-04-24T21:56:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UMZFWP6KXL3CB6TQXY23QSH6PJKBFAFGRBUFZ4P4BYA6VA3KEIJBVNVQNY23HYBHA3GVG5OBCJWCOOX2SY6TQ2AKU26CJWQIYVLHL6I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/discourse/skus/1-4/versions/1.7.80\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/995895798dcc4b4c9bbe1d0a46b69a29/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hnZ1EXzZtztth%2FT4t8DfR2dZsdKd0CMKm2VOP5md%2Fdg%3D\u0026se=2019-04-24T18:20:38Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FPIFN6MJCDPYEENFZTMRDMUYJ2OSADDIKMZ67NKVTASZCYRIGV6WUH34DSCU7CROOMC26YWU2QUDRIIJJ3OS5AMPOMPHO3G273QP5XQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/djangostack/skus/1-8/versions/1.10.60\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/369f8476e0254895955754dc85d7c3ea/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MzRIkAtsnExGb3mAdg9pe9ItuioiDWpCEad9hKUSsA8%3D\u0026se=2019-04-25T03:57:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Y26IANL5G7VB4NMUZ37XL5A6K2Q7WGSP6QFSFXKV2QKMEBF3MEHFWNUNIZQHPJEF7MIJ2MS4JPOBNWLVH7PAXUNYPZ5GB77744FJI3A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dokuwiki/skus/20150810a/versions/201702192.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/72b92e119fe340468a2845fbcdd6d90f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=EcHQGz2Z%2BM0sp2isN1ZFuQUh42%2FEGRAmx76XRRgJjKA%3D\u0026se=2019-04-21T11:24:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"U6KTO7WWX6SA72MPEB6H4UVAGT56J5DFBV7UJWEHN66EDMGFNME2JOLMAPVDLH5CM5PJBNJIUYUKW7XXZTRHD7YYKUC22AZA5W2APCA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dolibarr/skus/3-8/versions/5.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b1f426e3a9cd475287f9e78f6ec8a443/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j%2FjhM2PJ15EBiUgbS1GAj1TqdlbVHynqd7gwbGEB0yo%3D\u0026se=2019-04-24T12:08:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"3DWLMZJGURUHFVIXLEREBUTJYPKO7ANYSIY6PGFLKFJ6BKIQUCC2AWGIMDBARSOEOVFPRJMHU56KCA67XMBSNUO2CSETRFLVLSDX44I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dreamfactory/skus/2-1/versions/2.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/797bff580a3a4f998b4150f486f17247/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L1xFJn2S94l0AJ3Kc8AnaSZ%2FhgcyqsKbxII40fQmexU%3D\u0026se=2019-04-24T19:54:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"T2I7SDYJF4NJIGSHIBF65VXEYSWYHCRSIFTPUP6BPJNN4L7A3AIM2MLLXVQGPGH2A4TWQ5LRNRI3KFW2KNJ5P42RYD2BYR4I4T323OA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/elastic-search/skus/2-2/versions/6.3.1807061010\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f47bc5e8c2614ea99d0d728fc6f38a38/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gCSgaECpElYoi1I0f3A8tkrcXlmi7BomNm8bMpn8SV8%3D\u0026se=2019-04-24T19:13:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/elk/skus/4-6/versions/5.3.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/316676111d5b4e3badd980b961d6d9d3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T02:18:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"33J24WWFPLIJU7K6ES7PIBREFXFYWHOSKTTBBGXIYN7ULUP4ANF4WFK6K2NMWUYD3LH3OCARZZSAU6OYT3VEENXFX4ZSXUZP4MHHMOQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/erpnext/skus/6-21/versions/8.4.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6dac78a5b4c1402fbaf736f8d7d0d1d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=0T2H4iCaLQVBoBWGu7gUHz3YDTkT5y8eD%2BNaUFphqgw%3D\u0026se=2019-04-24T02:10:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"HWDMM6EGVAKFTBKGR2QLV3XVXGSYEZ7KZ2UGM5CX6AJCFYWWG5PYZNMGRMD3JX6GWWJWWA5QACGEEVR5L5FBZ23X6K2PYGBI73HOZ5A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/espocrm/skus/3-9/versions/4.7.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2c38d8908dd94db8b2fb5318e1ddbceb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2F5HmMTyn1g8ATcq%2BPOLCT312ylQFZ1ce%2Bu9RGHvGN6M%3D\u0026se=2019-04-21T09:55:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GTCONGI3NKTUR5M444EXXTSHGABGB5EF4FI6JHANMMDUJJ5APHR6C77PF4PKO57SVYZJLEOEMR6CBSLP64GUI4TK54P2IO3O7N5CV6I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/exoplatform/skus/4/versions/4.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2698f1d2c5be4fa9961a1121ebb6a6c9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=CEIrE%2B9A0MPFsHnYY1vk2%2FfpUskA1IT%2B1aktPFS9JYA%3D\u0026se=2019-04-22T03:27:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VGWXONOL5NK6F7O4XUCRBH3GEOWQ6YZJLWIFI35RLOGHP2AQZZ6PQ7AXZOK6OJZ5CYGM2GGQXMQ3XAUZ6SDB5QGYRSHAWXEA44CCLUI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/fatfreecrm/skus/0-13/versions/0.14.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/09471aeec74f4342a81a24f53a37ade1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=VTpcctARzK5yX02m5xFaaYcupDEaFVRTRYVAi844HrA%3D\u0026se=2019-04-23T23:30:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PZ5XR2GWMXXOPJQPSXD2ZF4DJ7647ICIJ3A4CQHGA7I7QLNEU2R6QOCYQEGQRAEJ6T5WBKYLWPJ3BE46LHNCFWEL5RYNO6OURJ4HF4A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/ghost/skus/0-7/versions/0.11.100\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/912e7023bbed4d429bbddb926d647fa4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YgAdB4AOHxlCccR%2BCSJkrcJbWnYdWIEST2s5EPWLmYc%3D\u0026se=2019-04-21T00:59:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"QEGSQN2DPAX67IZDQVBJ7ZAHJTYADRNUTA3SLDKFSGVOTU4KRTHDVNGLVGEUSO2OH6LV4XSS7HB5ATAHSRLEB5T544CBIHLT3EXXYGY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/gitlab/skus/8-5/versions/11.0.1807052008\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cf372a9952944f6b9885a51262e607e7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gMtzX9hlAyxGNOy9Vr%2FSaJt1qodhuXX5XuY35vx4p5w%3D\u0026se=2019-04-23T20:11:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hadoop/skus/2-7/versions/2.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8664dc6e4ea04a218480fedc529691b7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jWIgvXiPLMT7BRkizHLqetLrS3YarAYIbhRdsE4IX9Q%3D\u0026se=2019-04-22T14:11:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LBQETUSP525JVVGQRPCV4WOSOAQRLBWISMGRR2FT7GCG2ZRV27VQXAJL5TUDQFHHIQ43NWKTV4TZWG6HU7OIC5FOQ6KEMEYVPCHHC7I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hhvmstack/skus/3-9/versions/3.18.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4a24a1a9a46c40479c6a49cb5c12d328/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=iOKv%2FRy2unfB6nnbD01oUj0VLEDYZ47i8lBqDZum1vs%3D\u0026se=2019-04-22T10:31:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JTC2BRZS63NKT4DYUBZBZWNNJ2QTGSIZWQBF4LJXCJIGPZ24TAQMTWNH5FN4MBVSEINP5PHPUFS6LOHV2VUUW3VRVQQRJTTX44RPJVQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hordegroupwarewebmail/skus/5-2/versions/5.2.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c082eea9133f445a924216146fdb861b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WOqv0ZCNAYAIpKoeZSb3QKH4XjhDk%2FButSsgJVJP8%2B4%3D\u0026se=2019-04-22T05:03:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"P2A4HHXJYQIAUQOTYBSWL46EFTBI6SL3GUGSWCT3RTKZTI4N6U47JR242VZLNMPDFITTEFEGGIGK4S6FRH7J4O7SIABBOKGLSXRIFTQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/jenkins/skus/1-650/versions/2.46.21\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2e7d08a94914cf6941f57a088a8e286/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=GGlj5ZC7VEZ8tk370%2BHZnsJTW7ysN4FV9PKGEjxS1yU%3D\u0026se=2019-04-22T05:56:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OHQQJATXJS2Q4ZWQGOEG6FPTCGQVG6AC3SSGY7SAM2CAB2RRK7PPHRCFNGHUNAD4ZNW6JCRMSHUA74CJ3QNZZGWEVPRJBFPWQ4QRAWI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/joomla/skus/3-5/versions/3.7.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/adb195e9dfa54dfea2f192d708afafea/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=OwTaFq8Glgn44v9Sk6DzURcIqvYDnriL2mXMg8iRBLU%3D\u0026se=2019-04-21T05:10:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"D4IRPYJJJAO7KN4VE7UQVNNHZFNFWDWWECWBDD3UHSCAMSBXPCI4U5QVU44LXJF23Q4BL2UQEXEEGSYVASDCXVNEM3F4IJF7ULGRRUI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/jrubystack/skus/9-0/versions/9.1.1200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4e29e64d69ed43eeb3f66dc86e704960/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=aIMN9Ak9ECfRXxrM1JtMbz17Vj3O1m3SsbY6CA37K4w%3D\u0026se=2019-04-22T05:25:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"V4FUQIVH73EXOUYWYWWWJMPVVK5UM2XU2HMUUNSU3OFCWICVNBHADX2YOFKWWIFAEHBXFRUYJ5AMU7CKSUI6OESUUHTZDSTKGMOZVFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/kafka/skus/kafka/versions/1.1.1805301513\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e2e3b9d1aa664fc09297799de328f66f/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nxn8yddfmlsd53xeqUJWkgdvdxWbcgYc8iUw85dJBUY%3D\u0026se=2019-04-25T02:35:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/lampstack/skus/5-6/versions/7.1.1807111007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a344d67ef16f42e8a3417c1301ef3365/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gvlQ%2F4N99TA89dnjax29%2FSS%2FG0%2BFF%2F50BXdOdqyrJeU%3D\u0026se=2019-04-23T22:24:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/lappstack/skus/5-6/versions/5.6.310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/dfce49f9624845a99f731f17a9fdc91c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BAkzLzlGxEL9teVnJ6ETkTvx5m%2FiaYZiqSECT91MnzU%3D\u0026se=2019-04-24T05:22:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KNXLGW54OT45VXFTA7TFEGO242PL576C2JD4Y7XH4CIVBFBRHGTEEEAZCYAJ4Y5BW6PJ4XFCL3J5R3CGZ5AAD7CTTTSELCWJHVZLIVA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/letschat/skus/0-4/versions/0.4.80\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9bf984089fe54b15920595a78b33eaf4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=F%2FHLZobUEpG0ILoBHTfeITX90aZHa%2FveZck6oUAPcyM%3D\u0026se=2019-04-24T15:34:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"CZZ2MUSKMCRZB3LHRSOMOXAVOP7CBC3E7YYN6IGXBGTZ7JZYUOW6OB7DTNMW7YEZFXCRD2GGGXK6HSLFUASA6ROYVQP3LVFPGPLAVXQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/limesurvey/skus/20160228/versions/20170305.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d8273db199574efead6b971a1c5f0373/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6oOSTlZ9DEjMNHh4EmbG4RaT%2BBoWaGlcRYbAKLpDhDo%3D\u0026se=2019-04-21T21:14:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FGJ2BNOPOCGGUB6AZA5KTC7BVVHICBZF2WO4RCDDTPDAVO6I5HJGS4G3XOMBIZTYN4ZD6CHFGMJL2ZN6WATN4BN64BUC5BBO3OJWJPI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/livehelperchat/skus/2-44v/versions/2.6522.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4edd386d3a714bfc8cba36e24149f2e7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jdKs%2FJrRukWM3AdS92smPP63aGLTJPUJP4%2FMOLvmxOs%3D\u0026se=2019-04-22T09:59:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DC2G63D46WDO7O5KDW65EVIA3BLMC4IF5DDB6BAD26KM4CIOTKKW57O6OPALGSVTMYKIFBJFY4SXPNIH4B62V4PGIVIBG45IGW7EJ7Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/magento/skus/2-0/versions/2.1.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7238450c93b847aba366a62ebecb9553/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=eV46E9GtBVpf%2F23o2rrBGlhHV%2BxxWerML%2B4SsYon7zE%3D\u0026se=2019-04-22T06:07:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KWXD5UVT74DQZEUXLGTK77O6O7FE4M7ESGJM3TAIE4SPTR7JRUEFKEQZXJT4IMVLJJPV5NNX2X6IXN5F3KBDAYCQHHMF3F5O6XAJWYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mahara/skus/15-10/versions/17.4.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6c3b148fa69a4d228291215b9f009831/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BDyVosH63gEwJWAwV56AIuJU0L85C8zEHGm9yBWAOnc%3D\u0026se=2019-04-21T00:01:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"IE7SD4CALJYW44IZDPG45W7YWHE4Z7LWNWYUT7EIUEPINWZEVQKWJQDCH7EUQYBIW6AVISCJVTF5HGSTCLY2LYV5LU5MCC6OJ3HH23A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mantis/skus/1-2/versions/2.3.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bf07c46178b344bd9a4369eb95049796/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=q7adt59gXk95ugoEyaZ1EbEYDkE518yKXLZ8cHS572M%3D\u0026se=2019-04-25T21:45:05Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FWOBKW2FGG6JAGLF2J6AQ3HOMN6S4EQ7CYJCTS5RJMHFPFWNLDJR4MIUMRMJE5JREDSKYUUCKOGIDU3IYG5X332VXFY7LQ5FHQOVP7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mattermost/skus/3-6/versions/3.10.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/368e6884343d4561b7d10b1fd16812b6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WubdF3CjcTfvpJjtDAOb21TmuXN4bB65ASZB16%2B0ha4%3D\u0026se=2019-04-25T20:32:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"HKU6GMPNMSCI3NA3ZOCGSK5QALW64VZCXQCFN7OA3WPLX67OHDN2F5NNVS5LTLOFMJKOTWFDCMSBYYBVANUTLQKSOZNUG6OQP3NXK4Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mautic/skus/1-2/versions/2.8.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f72014a6264c46aeafda2e06278277e5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rbb7VaPZbZbkhZSev7%2BKt9rMVWu6hZQOFng8To22zxE%3D\u0026se=2019-04-23T22:55:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YR3B73XQOLQKW2Z5BZLR3RBACCWARCJCHFS5EKZKRJG2MFUSUEGR3U62HXSHULCDTIPI2NUDT37NUQKJCIEY44K7FLVXI6DKAF4CGOQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mean/skus/3-2/versions/3.4.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1e44e0a92a25465d8553552e33ecc506/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=mi6hQKn%2BS5NwJuFJrAl5gIJhG2GFYqS0zAeiTiVpRiY%3D\u0026se=2019-04-22T08:14:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EVJ6R2UVEST7B5SSZ5QFVR45DKVLZU2WANVKHYPWAACT4LFGL5ALAILDXDLSEIKLUNQGYACMDMDPQAI4MZYMLJEBHIORUPPNKE7A5EY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mediawiki/skus/1-26/versions/1.28.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/11a28b3fb2ec445a980b57158097d242/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Ilnxp%2Bg5W2p4xgk7oCkEvyjCi%2Bd7SxBZyp%2F1SNbF5hI%3D\u0026se=2019-04-21T22:10:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"6KHHRVM7SP4FIQGX4AVVONT5HW4ZUU6A72XRA6SKWC7GPF6YPNUJ5NBIGNFTMNIR2YNFE37ZBSCJFPJSO7WCAY5KPIZFPR6FXQLFNSI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/memcached/skus/1-4/versions/1.4.360\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/876f358dec114a1da58f9b1316a4c950/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BW5jmET%2Bf3bENlHu107vLsC3pZXim3124Suf7ic22RQ%3D\u0026se=2019-04-21T02:25:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"532VI6A7CZQEKPEFGVHKNCNG52MQMHBDUESVHYSTLNJFG7KLILDV5IECVEFOQUAYCEVCSR7PNUW63SNSZTSI6EQO4H45SRH4NLFDPNQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/modx/skus/2-4/versions/2.5.716120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/742ace97e8b8429cbfb1250e525c63aa/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=wASgGZo2CkPicSaVZXYh01BP8pwFpQ26AkfgW1X%2FZVM%3D\u0026se=2019-04-24T15:00:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WHS4PF5GPZMQHOVD4C3R7VELAZCUWW733YDMX4OSUZK4QEIYHHPYBIOAMBNLNF6OQGEZBDF47FKRM32CK5PLSKMEHWGDO4T5QGHENQQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mongodb/skus/default/versions/4.0.1807101011\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9abae78c3a33449c93a5538b63e4b104/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6tI%2FdIGDlVo4OuP1Ex8L8oTOi3nBtpJo6aeAM2FFt7c%3D\u0026se=2019-04-20T23:25:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/moodle/skus/3-0/versions/3.5.1807082007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8df1e5e0af854d459f3289378ada1250/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Sg88Q7wufs1EDbW2lt%2B7A%2FpDBrfIAA4mgd4K%2Bm7XfG8%3D\u0026se=2019-04-24T21:19:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/multicraft/skus/public/versions/2.1.12\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a911d75bf40040fdbd7a5cc973b56aa1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YnrKGm2A1jSZPysZC0evrTpKS4eMseB%2FmEhZZsLJePA%3D\u0026se=2019-04-25T00:59:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"AW5VGA3M6GLGW5TTAHADTBH44NNQ3MCTOKDTL3LNVUFFO2Q4ELB4A23K6V3WD2OBSG4A523W56MRKODTMX2WYL7HZF7TD5KBF7LIHFQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mybb/skus/1-8/versions/1.8.120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bbc90ea6a0c546b98e51c9289cd01f97/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=lg%2FajN4pyjmtMBkDECI9kjtAyyUqrl5aej54OYqNFg0%3D\u0026se=2019-04-21T06:50:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"44Z2GWSDWD5RXOSBI2G3PPFB5BFBOAIOUXCKOB76WISONIDLRMA3XH7GVTJYJHNHN5R74GCNV2BFHFNNZGZBXG5HNHRUVERCYRRVXXI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mysql/skus/5-6/versions/5.6.360\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b1a6f753d364bb2b6f502e65ab819fd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=JhKIxS%2FhMb79jOLT867Pxh1Hd4HP6NifiCPD2MA844c%3D\u0026se=2019-04-22T13:26:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LPBPC6RHPKFXU3MSGFCMET4UEZ52WJFWPPSHTO5OIO24O2CEZAUZ6AMGVFDVNFPCOIHKCW6FD6N6N3OJVVV4FOKRCXGWAZEHJTTJULQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/neos/skus/2-0/versions/3.1.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3ed51c0682cb4fb1aa1cf5e4c8896122/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=JJesf0wvXaoS2tuM52I6rw6vxlpocg6i778NJ%2BIfOpc%3D\u0026se=2019-04-24T10:49:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VQFODFNP5DQMYUUJUS3LY6EY6YB4S4TYSQIHFBBOCVXQQKY4XQVA32CRB53BRJCKSPJEZYWAKS6SOI6DUIZ3NLFF63BQNAQRTQRHQUA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/nginxstack/skus/1-9/versions/1.10.14\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1f1545957d1f4c548508d052a5492a96/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=us4B1xEA%2FtW2N%2ByL%2F2oRnldm5EcDitfIlMLlEAZ9%2B7k%3D\u0026se=2019-04-24T20:02:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SJVYXHJCJ76EXLMBXRETI4XJ35HHGAVGM4TB34FQMAMWBLIMI2FVZ5CG2CF6TFEH4MBIVGLFQZ4TBXZHVQEEJTWVVV7DP6BI63XCV2I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/noalyss/skus/6-9/versions/6.9.180\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7255d0e4b8174efe974c5904d2d00d1a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SpsOucZBlXOTP1oczv%2FtD9%2BL3YAiYRo8BpxXtItE2vA%3D\u0026se=2019-04-22T10:10:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GXF7PHAHQ7P2PWMOPQJ4QBSCTWGHLUADHS5R6SCJQSDUBJFGYHBAQ3RASH4ZD6TVBKKEN6KLODR7SOM4CLRL3PKZQIO7PMMDFZ56TFI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/nodejs/skus/4-3/versions/8.1.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cded2bffcd59467aaf44ef99c4196d16/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=XO4iN%2BcL6BM%2FcyVMReOFPpIvNbb6ZKh7sp1Gt1JMp%2BA%3D\u0026se=2019-04-22T01:09:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5OU4IM5YKFWU6UMR7MYRY4NQARI2S4GHM7JCUSPSFP4W3CFZKDDQ2M4SV3BKYULHAGAWR5INMNO6U3F2E6GZNNAYAEW5TANHBF3KMBY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/odoo/skus/9-0/versions/10.0.201706150\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2fec5a5863604fe491c0c2f763d2cc21/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=le%2BqXTQQ8XMJri9tQqm2ZquEPrTuA5f%2Bn1i%2Ff0eNfNM%3D\u0026se=2019-04-22T06:17:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WZKPPR4YW24XVXPT5WOMIZIRWAL2IYMJFAHRUQV3WPUUGA666KCXG7ETDKGKQ2O6FPKA4EDTNFSF7S3SOM4GRVVSA3BFDAQCGI5K35I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openatrium/skus/2-54/versions/2.617.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/255e045c7b7e4ed6b755a90a8a6f7d5c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tJRhUeMEHSdBS1SXK6Oo%2BaTWkyx75JKIGvbJd0vaU18%3D\u0026se=2019-04-21T07:57:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"TFJN4M2RHEJWDPDOAPQRIC4WUBAUUVASLTDXQXMAMXW2AUFD2KRRMBKRR5H67QOFMIXSJ2CADCLMLWKNPQ6HHLJJTYBF463MMLQP36I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/opencart/skus/2-1/versions/3.0.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/69be1b00bf92432fa4ad824bbe71ab7e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j6m2at9aRAyDhGAongjNK7zmcqxwEu1v7adADeCh2G8%3D\u0026se=2019-04-24T00:51:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LUBRXCPOCFS4PMKE37YY3YZR7GFYAVBTGK3LYGD4C2UBBIS5RCE6J3RESV4GWI6IR2RFKSP4CP2CVTPXUY4SJ25QATKNGCDRAN7AM3A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openedx/skus/cypress/versions/6932119.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/424c957b10c94477a8aa95faeaac3b4d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KF%2FZ8tOBRxHg2ArxPHimopWQUsdyUceNk6vgFzs5s2Y%3D\u0026se=2019-04-22T06:59:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JHTYBKDNSZTBG7THCSGT2HOKP7NZY6ARG7L65LTC4IHHECTQTK6DQOUINJGROUETM3YLIPY5KXTJZLR7QQ57Y4EE7MVFIPSUBOYFLGI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openfire/skus/4/versions/4.1.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9e4cba897ab5449a8b2c6a7db91db99e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cb9KExuz5F27Gk41ooejDRJskEAr%2FMx3Oq0mmwk%2BK3A%3D\u0026se=2019-04-21T08:13:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"23NYVV5RLGLLDXBWCBJC7KJKJNITKRLPH3RHJYFYAGAKOT4DES4LCQVIO4PC32YH3EATINN63TMQG3IGAXCB6WXJ2ZI3MSHMDMJPG2Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openproject/skus/5-0/versions/7.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f79dfd529b9249bd817df39a823078b5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ZLhr8q8nHAQpRO3YSz3QRuPE3xwl2EKQY5QC2P84uPc%3D\u0026se=2019-04-22T09:37:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OZU7UPXJ57PHFCAWSBRINR2ADUOVZSY3HV3FD3LRKEJKEQE4MB3UTCKDPYV5QP6SCTXZNQIM53RNQLYALODTWFKDKES5SVIYP7CG2HA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/orangehrm/skus/3-3/versions/3.3.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/efb09f8ce47143078d73302d36aa6721/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=oFm5EIAL5LTWThtLAV5o2vNXCYZJ7uCFabBOp%2FcNXqo%3D\u0026se=2019-04-25T00:45:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BPAZGIG5B72GYHLINHOMMLCJHAGVMR2JLIYFGZ5K6JNS66AUETP3LJGAPOVWMSLUVSGWFKILUJAGZNQVJMHOTTC7SPTETMI2VSQXRNY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/orocrm/skus/1/versions/2.2.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fd260b8eb0564968b4643f03bacd1329/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Abx1W6mYVD7Ir%2FUPPt4sbt3vWulgjtMSDIcyVFCzF0g%3D\u0026se=2019-04-24T20:10:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DWB5MBHQ7FQCPYLMUKZCWN6MRJVHWQIXVBVREMS6MVSLOT54CWOUASZKTMSC7QNFQ53S34LV2V5U4TGTEFVJNS7ICU36RLJOZZW3YGQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/osclass/skus/3-6/versions/3.7.002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f62e1e3a9c364401bc6f82b9f2541670/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=N039Dv0TKEBl%2FHFsD8LPsOjCVEVHQpG5MeyVfkFu6U0%3D\u0026se=2019-04-24T06:02:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5AGBUYUXKPN4FR6XSQQKYC6CN72NWB6LNB2OQKMIQ66EYR5ZUAEMYHV32T2OU7X4ADPVFIDF3YPW5H3XE6FJF3XWAAM5HQQRQOLWDOA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/owncloud/skus/8-2/versions/10.0.1805302016\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7783c84f219a46f4a3ca18335afb6923/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ozPzd4meSnqhlootrJhjgIElepDbIWyq9g1QF6bHmsE%3D\u0026se=2019-04-24T15:52:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/oxid-eshop/skus/4-9/versions/4.10.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a4e42db0ccd4339bb4d6c27ca75a86e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=VZZxDKRbyJe5xtWYa2CUgMJ1S7f2KfFGTkZxbTC3Sks%3D\u0026se=2019-04-25T02:52:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PUICYL2NYR4EMB7IRZPMFOUWCC5GYATMYKBBVCQIY6465AWWSBOPIITA5ZM7OX5JPO6NEK26TKXX54IUUAZXHZPHPLR7KXU7HPHDETQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/phpbb/skus/3-1/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/998be6e7e1df47ba919821197f0f31c2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jvzAAnsG8i9qQ8nm5R6Zp1r%2FSJZHwy9qogJiwZUPwhE%3D\u0026se=2019-04-24T00:29:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"K6SDMWQ5AHIPLF3N4PHAARERK5KLUAULT446P7Y3CJL7DGDGFAO4ALXBYD6FSBNT5QLDAFXMG3YRB6GIHFZB7YVVFTKU4IXLQE3U65A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/phplist/skus/3-2/versions/3.3.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/af7f8ad261f44c1fb7f6e807ef8939a8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ySbEJT8V2Nh0p%2FC1AeizMFJS%2FycKODN6bEUWpoID%2FrI%3D\u0026se=2019-04-23T23:06:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RTSRWQAXSRXWBEOPI7I7MJ7IMU36SXUJHTTDP25UT3LYYN7IB3CDORN5BMJID4TU6GMHLVE5M2HAMXUY56YMJD5MKA4V3XASFIPMHVA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/pimcore/skus/3-1/versions/4.6.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6b52e4f998c54955b7ffc02ffa519d30/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AvwTW5Y5RfaQEM7NulGuFZliX398w5ebAJRlYS1Cx18%3D\u0026se=2019-04-24T00:38:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YBWOGPYU2ZHZ4PI2SEDDPIOUOKQRDAVF6AVXVSZ4HSRD73TEWFJRVWPM264MXDAOFSOY4GITS346ZOZ55MKTH225DNLRMUI76EI37TA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/piwik/skus/2-16/versions/3.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5235ba886336467b90bb497c75f193f7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=t10VrvuYZ%2BpoTjEzuEEFLvWMknEBS4kKmypNlFLNk5Q%3D\u0026se=2019-04-21T11:41:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"AL3FTPOHEFVFMOV5FYJUIIKU5TV5HEB2YU6RSAJEJ456A5YPDAHTCPBXLCE7JXCJF472M7F6HCB2AKKAFGICS3FIAF4ZM47GKNPJYTI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/plone/skus/5-0/versions/5.0.70\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c7481be4d89e4f96a6271330b24ba215/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AD%2BMV34e%2Fb%2B47IlmL6q0fOjnzkmS9IrvaVoECnylmgk%3D\u0026se=2019-04-21T10:49:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"567UPHGNI3PZLHZMGQ3P7QZJ5YKHMYGNTFP3OF7DUTS3H7N4ECNNOLYR73HZBQJF5WSHEK5HVY6346EEJEI3RYTZXT3UVGF6BPXDK5Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/pootle/skus/2-7/versions/2.7.62\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/01462e0fd56a4db7b252831d45bdecdf/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=vq%2FOTCnjTorx%2BtAXsMUq2ZTQ%2BNcwRCXQnovIjWsVAUw%3D\u0026se=2019-04-22T07:40:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OMI63AZNTHJN7AK4JRE5J6IIWH4WPBP6HZF7WIHAZMQLS6PKBG4T4UGBXUWJL4LJEMVSJ63B3FD342YK2IXJGPW6SO7XZEEVWC3ER7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/postgresql/skus/postgresql/versions/10.4.1805302007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8f04bce6b5d3445587df466b293e5e16/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gIhM16cHGoydZmyKXaFeS%2Bxdt0e6pJi50NhViUwqKbU%3D\u0026se=2019-04-24T23:59:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/prestashop/skus/1-6-1/versions/1.7.110\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1186a35cb26c4d0fa44423f1b0f7a7d6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=RENkThmw9MIdNcCLwJy9JK0fjAQu9KBdqH%2Fbmkqb8ho%3D\u0026se=2019-04-21T03:00:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4SPRV4DB5YV3MQDETU2L2XS5U42YFH34AW3Y6PNOG2MBWSLLFHQ4WC2T5MGLOFUQ7L5ZDNJZV5GHSABJVNC4RX3XRFVZ5OENM6XPBPA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processmakerenterprise/skus/3-1/versions/3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fcd909915dfe4aaa8bce73d1360f328d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=HhWNCtlUfX9I8Woy5wx%2FOi1D1nHkHIVtJlQfWyUcrOA%3D\u0026se=2019-04-22T10:21:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"3KHT7OB5T3Z6HK4WMT4HB4JHTZDNOSI2T3SEPPXQU4E4P2KQQUTR75L3UU4TZIUREFNNFKIPCV6LAOMXTMWVEPKHTI2IS6OM7ICOD4I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processmakeropensourceedition/skus/3-0/versions/3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e588eaa094014d06a6b9b51b822b72f8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rc2vzPa46rZwFdAdjcsvfmmBchKdOgNe68SPW%2FIEQMI%3D\u0026se=2019-04-24T06:13:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"A6HWGUSIOY4TKUGGCDC47PHBH7Q6NWCMGUX62KGHPGAWNGGWFJCWFUILFWGVU55GJY4RIN2GU22D6U7J6AG5EHAVZX43RK7WO2LPLUQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processwire/skus/2-7/versions/3.0.620\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fa29a2ececfb42b68d125b04f5e132dc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L5APylk3h3Pbr7zhfo%2Fd3x1fEj89ZGE5Nj0hTGX3xno%3D\u0026se=2019-04-21T11:06:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UK6IQ75QHZCJAYBHRVZ6NOIFJMURQEXWC2VBE2E5QART7NRV6BY4J2G6T4IWEFVIT2P6Y5OFEWG3TDJVGIXJXOOWUH6RD2ZDPR5OUSQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/publify/skus/8-2/versions/8.3.32\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9fcd8a3240ad4bb1863f242510c433b9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=0wgVuGtnK5SS%2BY7ihmxl%2B8y7PnSEANRPJPZA9y7ZJI0%3D\u0026se=2019-04-21T10:15:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5BV2OW7LABM2FS7A47FXQPQUOSC6O3NK3MVT3EDWZ2TTNK4325GMK2F6S5E242PLF6MNMBQC3X2HH6UIUTDTXKRDP4GPALPMGLAWGQQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/rabbitmq/skus/rabbitmq/versions/3.7.1807052008\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5955bfd9e0e64eacbc62d47ef872f6e7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=h42OSV%2FadHQ0Aaq1DFU8j1XA03N7xThe%2B7lS0iNDoOA%3D\u0026se=2019-04-25T00:14:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redash/skus/0-10/versions/1.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1bd4134627c44cffa8865549df7b94c7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hqPnBpQJJOUkQFNWMt%2BHSGUl55gFnP%2B8HlkbvrUT%2F%2Fc%3D\u0026se=2019-04-22T11:55:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GB27VRKNY6U2XVL5MJBFK2TXA7PJI5KS7DPVB5EN6BXSWHWMI2RKWIQ4VQFZ3LUX4ZS3VG6UO4M6RVP7NZQWXWJBINWACVIB6VZD5RA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redis/skus/redis/versions/4.0.1806251509\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4ab9b364a69848ec8a8a1e7461ac68c0/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2Fv3nRiCFtCqW4LFh%2FosgKd4io3%2BRddZbP8FLypdtxCk%3D\u0026se=2019-04-21T17:03:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redmine/skus/3/versions/3.4.1806101514\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c0a771c03e5348fbb1013168b1c35652/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WEI1zs57Q%2BV2Vo3lvZ98VaVJuDZ6rHqqFyOTnDcYKg0%3D\u0026se=2019-04-22T09:48:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redmineplusagile/skus/public/versions/3.4.1806021515\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/729299825cf24a7eb38e279a986b4741/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=XQQMbyBFiposXKSjRWIfaiUi4J10DjUpVW2jfZo2qgI%3D\u0026se=2019-04-23T23:42:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/reportserver/skus/2-2/versions/3.0.26\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3a965e4d83de435383989cd1afeceda8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=NaMEQruEnSunlQVdk9IRVxcr54jwsPJ27MslchAvZYk%3D\u0026se=2019-04-22T14:36:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UZB6KZLL6VDNASOPRADCWWA2JYGJSEZNHH3S7L2T5AJOC5GKUF764XVKKXTPDNWJSIFD4TDJZBPA4TH66T22LVITERFO6AKRYIADQFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/reportserverenterprise/skus/3-0/versions/3.0.26\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a45516e668484fbab14bf06293bd510f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=byZZJYHCn4mpGh01RQ4hJi4JIPZmwf%2FdeLVi%2BimEogc%3D\u0026se=2019-04-21T11:59:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PSMYGQFPYCDMA22MJVBI3GZFK7QAWYHNPGOVBV72KSNZP5CE6UTTHHE2OQDWNMLIFW3KMAQUIHHLKVWQZSPOAYSCL2JOZ3JOIPRDV3I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/resourcespace/skus/7-5/versions/8.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a27f8510d404f53a227bffcf907031a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MwEED8uZomL5ErPZTq8ZSoDWQdZLDqfig0xA0X4tJCA%3D\u0026se=2019-04-22T08:35:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"TPKPWEL6GKA26DUIOKHITTYOXS6FLHUMNSGVGNF55S2LL3FRPHLA3VAY4Z5B3IUADPKDYXRTNJ277NFUQM3W4G2QMXZGITN2SGH3SGI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/roundcube/skus/1-1/versions/1.1.4528\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0c4d054fc29c4e52a3e4469663afbc0f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Howa0abznT6guKf30stGY8hPVPVyZA9g7O5OvrzYg8s%3D\u0026se=2019-04-25T02:44:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BL4YQFBGX64Y5FNVNLMFTZUTT6WKI54MAI67K7R2E327M3RJEL5VBW2SAUMMJBBRVAMX5CVCDIK25JXU2F2RG6DGBSYKTIVIK7ZKEVY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/rubystack/skus/2-0/versions/2.3.15\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2471808a3694f74a541398f6f505888/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5ZFqNiLlqk9PgFH9TalAi55DGIVA8VxVjdHvIlG8ZAY%3D\u0026se=2019-04-25T21:07:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RKIF25AJSHD3E35BAYI7INN3AH6W5CYTZAC7RWDGBMBX3M2K5HSQXWM4WE63CF72YKMYX52W2L4LTK4B6MSM434Z63HUSDMWWKGK6HY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/seopanel/skus/3-8/versions/3.11.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/21a68d19923346fc912357d942d9bc1e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=l6yXdx94hvPkLX4L4LEAZozGzkFwXWSlptVvvivCTuY%3D\u0026se=2019-04-21T09:40:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"IQVW7LOXAPYSAULCW46AXMTAWWFUQDXE5IFKN4NDTJ6U65VK2GEAVPTCL4LRJBQ3NKLI6I33BFSCROFSPFH3CG3Y7PA4DRBE4Y2URCY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/simplemachinesforum/skus/2-0/versions/2.0.140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/183a571bc28341f6a4761ad1548b41ef/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TBJKNSSARYWwHgvekfeDH7uA4pfx5dcwLbW7jX%2Bajqg%3D\u0026se=2019-04-21T03:31:22Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5TVL2K2VL7PM2PCN23MMGBFWADWOWSPT5NDKL3LFN2KPZPKLBJBNS7VTZAPXA2MJVDVFZASNODIX2WPTBAEGTUE6EFEYXHQIZVQT4AQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/spree/skus/3-0/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5cee33a1394d4257ba59ae66ee2ca8a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=n9Ds9CLXvtV1%2BrmyvhikXDeQAqEnb5YfqY1AAPIkxfc%3D\u0026se=2019-04-21T07:06:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DHVT2WSSE6V4PCVTT6MOEHSX6SP2VMI3X7WSYGNVX73QHHFFPGM2NEEURJJPPLLIXFRJWIXWRV5PRL764XZA453OLLFCSPZ5AMIIP6Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/subversion/skus/1-8/versions/1.9.51\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/60e8196bb6764edf8aff2fbc3e8b166f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=s%2BcYk8%2FHFtSOwDMB5Cd3nnrj6DqMtr%2Bx4WcjgFJ2hiE%3D\u0026se=2019-04-23T20:20:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4L6QOI5DM56S5SYYMF2XF3T2WHOLOZ2FG3MQGS3ASFKFE5KEHM35J7PSJM4QCFQ5Y446BCVSRGOWJ7IGXUG5EW3WZQ32ULAQL4B6GFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/suitecrm/skus/7-4/versions/7.8.31\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e9ac086d50634d91a7ea3c5658c078fd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=D6PkB7U%2FdTPy7jzBBtyIrhodPdx1a%2B9%2FXJ%2FUMvwlaCE%3D\u0026se=2019-04-22T05:13:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"T4WPP7DXSHS24JGTGMXVYMVTMH3TNAQUQKAVYPB3IUTFMJ7HVRWDNTKUZTWGLJL2Z6DNL46UCENQXDVQQGNQKFLTX53CU6KBBIEG6ZI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/testlink/skus/1-9/versions/1.9.16001\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f54326dea5a14f0a9e7d98d6309f8539/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2B%2B%2F%2BpWT3Z3my8Ag54ObL8yZZ1%2Fxqq3Fb8cTmHwHdILg%3D\u0026se=2019-04-22T05:46:05Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WO2KT5HP2DXUT4A6D43KIC2HYXN6T7HFVY7A7M5MBJNCFSCQKO6CVMREBA3L4ANHMFBNXQL66XHWEW72Z7JUV54NFLYKRUHABQOH4VA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tikiwikicmsgroupware/skus/14-2/versions/16.2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b519919ade94b09aae3cefcb22dbe03/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SOD4mM3dpoTIEvs%2FbTUS%2BRAzVHNIWJNpSOOml7I3aVg%3D\u0026se=2019-04-21T19:17:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PWZDXD6Y3ELNZMJYC2DID33V3AOGR2SEZUBIW7UUC42MMBKYIVRWEZAD5DULFEQXDGXGIZZIIVOVQMS4SOSPY7HJSHAXHSWX4QS5LSA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tinytinyrss/skus/20160220/versions/17.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e689566ffb594d62a651277cdfc5b699/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gWc6z%2Be7yV26Vm5mrTun9oH1klupo4Hs08fNYx%2FNGmM%3D\u0026se=2019-04-24T07:46:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FNRMLRVSQQLM65NIVPGGYYPX7SKB6MHKTJ7D6EW37EEH554GTYQ2RMV24JXKG372XUGTEEENLEH64ZMLKKC7WOOY5LVFI4VUDXTIMYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tom-cat/skus/7-0/versions/8.0.440\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/150e2016ae7b4ccf8a93c0cd7f64609c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=4b0polHYgxf4MnPBs6u%2BgnaiWs4WpMEVuSVWwGOvP8M%3D\u0026se=2019-04-25T00:37:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GYHHP7RYGYWZL73XJ3KW2KDF3XYA4AOILACVNJOK6WEIQWLAL52GTB4UQLKVI2WHGMTTKULGZ5MDZDGFHOPALAS5VVDEVO3MHEJX5JY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/trac/skus/1-0/versions/1.0.150\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/778069a7bc894cfdac955b06e77fb4c5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=47HIb3YMcaY8wFYO%2BSWpTSXejArp5f2L0ugQuCAgjN4%3D\u0026se=2019-04-22T08:02:39Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VQHOBULMXBXDHRHNHBHZM5LG5PGOZPGEXP4OBX6S6YWBTIYBA2LC47YIWFO5H3DQAHUSWLLV4YQLRIOFTEF2JT3TKMFZWQA3RNA33RY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/typo3/skus/7-6/versions/8.7.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/98ee14a7c4a14ed7b7249eaa590a006d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=b0ybisTFumVEgr%2Fdm5SxevmkTv%2FkTeUKpFiM1KeiCzE%3D\u0026se=2019-04-21T07:21:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"NTSW6YPEEN2I2GZJ5LC3DWCBPBUYXQHFZTM7PPQA7OOKNQKLFT26DJNLWVFI7QG74BWDE3URHXWJLFAXYMRBOAYWR6V4GE5CZQEOZNI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/weblate/skus/2-4/versions/2.15.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/87af3458122044a2982855b44d484dc3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Vve2cffL4spLte5cU16jcFsvXkhic8VGZAE1mOZrgv4%3D\u0026se=2019-04-22T05:35:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Z73BLDMTDRJNBFDPSLHDLTDYHBF2UWX2JQ6U5E6I37QASZXWP36VSQ3CS3IXXPTSEYTNQ3D23TLL3MXNEESWWKJQ2GNCULGWPMJ6AMA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/webmailpro/skus/public/versions/7.7.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/669bb550e1b44e94bcfe8971e4ba40cb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cvTESk%2FA7%2F3ZCTX0Q%2BwPKyWi4pYKVn%2F6cNxFNbNcKro%3D\u0026se=2019-04-25T04:05:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SGDT5FWB7ZDIA24HWNJ3ZLWWQSW6FPEMSW2VNZW5FUMEG377CQHEDOPLEVCKE47TNXDG22YKQNHFWFSGV6WGMTW5M4JXTXA7BLLKFDQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wildfly/skus/10-0/versions/11.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/aad93b263516426b8725f29c3be5c0ba/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=zBd%2BtWW4ILXKf8BaD2x39YoO99uDNVX8uhb8QuUJBuQ%3D\u0026se=2019-04-22T07:20:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BL2K4SJL556Z5I35AAN5OF7I2UO26AQ6Q25HF7PTVFY5QZ5CTVJMNPI3D6VE7SAYIAEPQNKHEGNYIGAUHIJ5CUDL3NLFYSTLB32MTII\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wordpress/skus/4-4/versions/4.9.1807060508\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/20d0f93779904e68bf29ea69af7272f6/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Kg4M5URSM10kOriSLaCM8e6jwQ6yHpccoftHEeAB1Lk%3D\u0026se=2019-04-22T10:52:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wordpresspro/skus/default/versions/4.9.1807060508\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/86fbd19206a345e6957b28644f4358cc/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tzvT5X%2BmaKGR0bHEuhYMKMpkoyDP1uGKdGkvVul3YvQ%3D\u0026se=2019-04-24T14:25:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/x2enginesalescrm/skus/5-5/versions/6.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d755ae93def408299a7be35347af6ad/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=guAS%2Bo5fQMy%2FARninrQvfpsnfgspigY4aSIwEsxLrTc%3D\u0026se=2019-04-24T20:30:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UNCU2LIEYA4XD75K5XS2JUF7KQROMRYX246NJCTE6YWICZ4AWEVRGAB6TEZSOBN6SCSBYVNCVYWPSU5ACOCBCN53JVRHZMU6JMUSLYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/xoops/skus/2-5/versions/2.5.811\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b26f33de420a4a60816ee28bf0395539/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=87B%2Fi8V1O1BGUsvhnmokAZpQRiNeHlQwN6k3GTWwRBs%3D\u0026se=2019-04-24T22:55:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"C2KK3A7GO2G2IZB35TSOIA2RJQSM6MNUTDHRM6XK7MNUA6IUMSBYMR32EYPIXNHQJT5FXJ6WVFBLQUPYZUSC6RCPIIBEPAL2ZRY7KGY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/zurmo/skus/3-1/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d396f05994844eb7b695f2c876b6ebb9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jn%2FkaxqDvxQWvN56inbInbcxodWS6Wcl133OblrIL%2F8%3D\u0026se=2019-04-23T23:52:31Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4RVJLZ7BVTEKMVN6MFRTXH27CLIDGOKXHRKM5BHYWZV45Y7PFFVOZWZXNDKRUIA555TXMVICZDWMNZSBJR5EFUXLTLH25IUYH6GFC4A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-cg-stack-r8030/skus/mgmt-byol/versions/8030.900200.0542\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cba550aa600f4a0c88c3be093b1c2e38/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-10-04T01:32:01Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-cg-stack-r8030/skus/sg-byol/versions/8030.900273.0542\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/61c2244171cc4152bc961f1aad0f0d48/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-10-04T01:31:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-vsec-r80/skus/sg-byol/versions/8010.90013.0226\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/00028f863a22426d8838fb68a3495148/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5nahpFghUpP1GkrLkiEDM5YdFajcJNgo1h6S4DZEWag%3D\u0026se=2019-04-24T02:50:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UZ4TFGIR4NAGZW2CNWENAJFJWLQETMMSYL4LZDE6DVO2O4OTANT4PWIUVHCONFP5PPBOPNJH6PRJIKAWFWPL3HHA4R77GYHNVP2G2MQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/vSECTemplate/skus/template/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/chef-software/offers/chef-automateallinone/skus/template/versions/1.0.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/basic/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e73192f132484dd7bf8d3038488bc03c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IwTcl7oeU47yUMasXPuJqnO7%2FqLRo%2By9p5VsLJfEs9M%3D\u0026se=2019-04-22T11:03:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Q7FKTL4VWRISOX4CTDASPDLFAGCUIRFJWIN6EJWBX4SJGCRC7TPLGWLN6I7YMTBVMO4YJK2C7HNJ3AD262NJ4QSOZ7X7ITEKF52ZRQI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/containers/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/58aa4d35347947a3888c681eac1eb3ff/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=g%2FbhwAYQEjlmJ5bwZgqGbOGgvlLaicRTO5CeEXW9CJQ%3D\u0026se=2019-04-21T05:26:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FG2JJDJ5XDLZDV4M5I5PXBCPZDL5HH3OKQYHPG3JG3KMPBOGBFPMPOAG5REX7W7XIHWRWZTS24FNLF2N3LEIFPDY7DR5JXGSGYHVOVI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/machine-learning/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/eacf587346094f62beaabaefbf8d6f69/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kbcoAmw%2FTvVzDWj3PxWkkEaX5acS0%2FAe5CeDA3juIrw%3D\u0026se=2019-04-24T19:23:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"2DSQ3T3IXLC4XCTF2PNVJJBHFDUIJEG7IY46BKDIDUKQZPXHNRQGWJJLJZATUBK42VVA5C4CJZPC5W5HI76OJNDJ6TE7PNGZPU4CIEQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-66-byol/versions/6.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0a3b85b5685c4ee698afea909a7f7519/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SH0ZBOyoV5tT%2BfSZrjsCFO3kl9JYc%2FFbhPe2zhupmek%3D\u0026se=2019-04-24T14:11:50Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4NBIY5JVU7TDMB7Q6KWTEXVY6JRRYQFVQ3TLCJKSART22CVIHPW75B3URWWBNZADARQVLVV6UXYJBZS4N4WHUT2YMZB2IOHZSKZPZ7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-67-byol/versions/6.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6cdf2a9d49154106b31cb286c9be097c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5SF5P98139ytxVfYReo3MMNVATk3z96Cs2nwWKC3SAc%3D\u0026se=2019-04-24T21:12:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-68-byol/versions/6.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ed5446ee5bc34db7ade0956bc4656363/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Lctfu5LMJolDi7txGv%2Fi6lKk2h1Cd5AqFqnXlqLPAig%3D\u0026se=2019-04-23T19:36:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/commvault/offers/commvault/skus/commvaulttrial/versions/11.13.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/100a27d085f145789e939e820a9aa26e/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Dl%2FkcYIQAvtSMxqBTQzeXKbUmaOP1jTfLz5PWy%2BevEc%3D\u0026se=2019-04-24T04:41:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Debian8_latest.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"training\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/8.0.201805160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9afee22d5cd049188d1905613a02db88/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uNDVkZ34VmLjvqYnHhUSLYiQUOeQegnxiMJFhzQHJS8%3D\u0026se=2019-04-24T09:15:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/8.0.201807160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ba1d710daebb4d61bacf2ae82b6751b5/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UIuBJoSqv4fOVdCoY8%2BAglrXmlpHwET69iLZwvIZmec%3D\u0026se=2019-04-24T16:58:42Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/9/versions/9.0.201805160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bda08b0ac3194a129760d64fcef4e89f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=f8GRsVPu7LMBftOyZZL%2BYqc0OxngVXLFptYdZ1Mai%2Fk%3D\u0026se=2019-04-21T10:32:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/9/versions/9.0.201807160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4edb48208e94472483999a4a9de48eaa/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=HTlcfBqFln7GbPKtb7JnJnwSjNPX3c3ZRDoycXt0MU8%3D\u0026se=2019-04-22T01:52:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/eventtracker/offers/eventtracker-siem/skus/etlm/versions/9.1.19\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a462aa9d33e745ab8d72a33cea2ad8dd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=smWJHsUgs9ElfzfQWQoLlGeylpRBORz8PkyDUr9H53I%3D\u0026se=2019-04-21T05:36:47Z\u0026sp=r\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a462aa9d33e745ab8d72a33cea2ad8dd/Data/0.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hfyXXSHx9eL7abtki55E9h7408Bm%2FwOe2RCQak89ua0%3D\u0026se=2019-04-21T05:36:47Z\u0026sp=r\"}],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/eventtracker/offers/eventtracker-siem/skus/etsc/versions/9.1.19\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0218d6671b9544f28b47b7b6d7648666/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=joeh84dLQfwghoHQj70SpI2o6SIz4i9RdepzwOo7D1g%3D\u0026se=2019-04-23T18:49:44Z\u0026sp=r\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0218d6671b9544f28b47b7b6d7648666/Data/0.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Jxf7AKjrA4RTOIvCZSt9tMiUoCT6uOIDLHCL5whSfs0%3D\u0026se=2019-04-23T18:49:44Z\u0026sp=r\"}],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/exivity/offers/exivity-vm/skus/exivity-vm-v2-0-5/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a309a9bdb07e422188ece728463787da/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=8guzHbD2iMAHjq19lVjDkWxRZ2K0%2FM6P4NTGuoVNn7k%3D\u0026se=2019-04-23T20:30:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-best/skus/f5-bigip-virtual-edition-best-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d44a90aaff6b45e88c4a2dbd7b13dc8d/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=d9kOdZcCSWcY2AxsCYjG%2FLpBs7YC3phPmcaRiBiqD5c%3D\u0026se=2019-04-25T01:58:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-best/skus/f5-bigip-virtual-edition-best-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e9ba311d31004874b80e666d51267fb8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=v%2BMRMyBFBfZAxwOzAaI70hfTK7ruX2ELydRdJ9wE%2Flc%3D\u0026se=2019-04-24T19:28:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-better/skus/f5-bigip-virtual-edition-better-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7e128f73e71142e797ab9340eee2f33c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Hu%2FtJ8cjH7waZvSP9%2Fwo9x0PZF%2F1QbW%2F5%2FNB7gRozOQ%3D\u0026se=2019-04-22T15:23:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-better/skus/f5-bigip-virtual-edition-better-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/70d870b757f5407f89c3cc8b12cc9a85/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j30yVsNO%2BStv6Azw1M7Qa771f4C1Q06RUtoIlIapX74%3D\u0026se=2019-04-21T01:08:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/78c3ea106352460f8e917e5f2ff8db32/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=i7PmpWwOdEv6goMDw4rZ%2FcUgfQ2uRMFDE1Jk2qZBv6c%3D\u0026se=2019-04-22T13:37:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7a062de55e9e4561a56c7a04210eeee1/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=u4pjcUMOvL5vcgwMIKGKh1%2B6TlHhjp73qEm9%2BtYxn%2Bc%3D\u0026se=2019-04-24T03:22:31Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2dd8c0fc8fa4455bb9d0c3e77298cadf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ykW5psxqpzLt6MHHBaa38JC4stdbrDygi5lzLVeAvMA%3D\u0026se=2019-04-20T23:36:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7a0e7a2ea7d94f85a4e2727a8b8704cc/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=p4393qwj2ln8Xn%2BS%2F2mOiozu5p5rkWMlYcSHN8YV%2Bmw%3D\u0026se=2019-04-24T07:13:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cf15643185964f72a0506685d2de6c56/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=8dCRJrrb%2FJXRr9UoE25FgR8Oc%2B3aezSTqrP1qbSxt%2Fs%3D\u0026se=2019-04-24T05:32:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6b963476d5ad45c1832cc24be31d2def/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=QAsrtXm1WPYvyihIvWfGs1yDoFpVt1BMyo8WuppV%2BhI%3D\u0026se=2019-04-22T11:12:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/62849c5788924c39b9e3fcd46597d905/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=phh6N1hcequw2zblnSjIelckKbH9JuUibNF4vSNtecQ%3D\u0026se=2019-04-21T07:35:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/59fe214265594be793f94672f4d7ff19/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=qkVpU%2BcQ2VVYjbqYfIWbmNKCL2XEP7K6hMzfuVYkVzY%3D\u0026se=2019-04-22T14:59:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/578f563bdfa44f3c968ae26015093a6a/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=i4FjA8Wml2g%2BDf4AD%2FB6FSmT%2BmxWXerzL2JFFEwGoag%3D\u0026se=2019-04-21T08:59:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/27f57b98114242f782ea7c01a85dfb1c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=P0VxNwHQvEJEInDQ%2BLT8u2VfiEhoBjVvJFbvn094pFY%3D\u0026se=2019-04-20T23:12:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/252f555495344d2ba62a5050ec5bf8d8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j%2BVrWJymSofeQeFQ1Ov4kN%2BYw9G541%2Bin2ojych84Kg%3D\u0026se=2019-04-21T02:40:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9dbdf1f926f64c35aa0a930b44d9560b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=pkE%2BsphZtda1KB6Sss0ktqaF2btonQYP4WVQwA6%2BxpM%3D\u0026se=2019-04-22T03:01:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-good/skus/f5-bigip-virtual-edition-good-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/42a85a22aacd4a59a0066d23005ee28d/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=O8JT7w0nf6FESxNFDiDBKTjPPTAkItuIJOJiQIMOYGo%3D\u0026se=2019-04-22T06:28:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-good/skus/f5-bigip-virtual-edition-good-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2ec46135199847ba812e98617485a699/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gbnaY%2Bku4N6cJUTPmsaBFI9nvOxyhS0cJUPd6z0qmto%3D\u0026se=2019-04-21T12:39:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/fortinet/offers/fortinet_fortigate-vm_v5/skus/fortinet_fg-vm/versions/6.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8ffb13d0b3514892b333f653b0a0d779/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TLdUbNbV2FagiLbi%2BXr0caHZ5Q2BjwbdZLB%2B11a8lqM%3D\u0026se=2019-04-24T20:28:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/fortinet/offers/fortinet_fortigate-vm_v5/skus/fortinet_fg-vm/versions/6.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/00ffdf36a69446e1a431d9c08f6a43e5/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IjXdhUo7ly0NADUmX%2BPx0GjPTClqhj6XwEsq%2B5Al%2FIo%3D\u0026se=2019-04-24T20:29:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/hannahspublisher/offers/hannahsoffer/skus/hannahssku/versions/1.2.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-13T08:20:06Z\u0026st=2020-02-13T00:20:06Z\u0026spr=https\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/hortonworks/offers/hortonworks-sandbox/skus/sandbox25/versions/2.5.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ff47b22391074321836bf01230362b1a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AP9Cn2cgziUP6zTJDA2NXjpwx5fCtpCD6evMuuIvofQ%3D\u0026se=2019-04-24T10:25:41Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PYEDSE7MRMX75WA6BLCOXAMRE3Q7VXMFMBPXIAUITESBRT5XSEKW3EKROGGR32FYDDOR2GBG7KVZV7TD22PWKJB3SILALNDNDLH53XQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/kaspersky_lab/offers/kaspersky_hybrid_cloud_security_vm/skus/khcs_azure_byol_vm/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d0fbd32b879148009308d304d5c73c00/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6VdeX30fPUVAGKqWeGLxqZoEAD7NOLyCXMKvyOQ6LrQ%3D\u0026se=2019-04-24T06:26:42Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/kemptech/offers/vlm-azure/skus/basic-byol/versions/7.2.430016425\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d08f695522242c9b0de85842e35e1dd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=o7avaX5x%2FsUxgsRA1PMce5w9jmRv8XzkDetn42%2BNoMM%3D\u0026se=2019-04-21T00:30:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/noobaa/offers/noobaa-hybrid-s3-archive-05/skus/pay-per-usage/versions/2.1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/05bdcf26c6f74702be34817d537f24d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=negJvoAuNnrw20gxqhT0vP8tHOxDGa6Ps8vrDQEhrKg%3D\u0026se=2019-04-24T18:29:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"R65CBNLVR7YUTMBOGT737INIGP6RTEERIYO7UYI6WKEQVGPO4HQ4RS3KRLCCPTMW2FUDJVRBKSSYNTMWYXSNMTPLCDMV3CF4COUWSFA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/nri/offers/mplatmc2018-vm/skus/mplatmc2018-win-vm/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a9495be1b5424734b9fe9675ce2849c2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=wOvRZ81XPKGLgCMuoFk071z5tVOPHsOoULGg8VfdB1k%3D\u0026se=2019-04-25T02:59:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UVH7FNWK52PITIBXHMPRN2WVXGKZT6CBKNNBY7QBONZJKFHX4VQ5LGAWRGFPNSEKEDFKTDWP3XHNEEMI3RRWJ3R4EJZQXSVEZS7KBHY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/paloaltonetworks/offers/vmseries1/skus/byol/versions/8.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8e1f9849346e4a6bbedf4920148e3dd0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TelBGCALZEP5V9cvbi8Bm%2BsMHr8JhPkNYQp11kjHOaM%3D\u0026se=2019-04-25T00:23:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SR23IDILM4Y4VFWYPDJBDOPNU5T72ZR3ZDZ6HGPZN3DSWT6NP4F54QZUUWRNR3YPTWTL27LHYPQSIMB2DSAZKS5QHRRBM2VYTMPUQCQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/ptsecurity/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/ptsecurity/offers/ptaf-vm/skus/byol/versions/3.6.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7223baf4841b42e993662254c2589007/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=P2Q4ef6T4cu7iKNlrNNtFhC1xSlggWj8txuw2KSVlNI%3D\u0026se=2019-04-22T14:47:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RAXJLQHAXDCMU6GVL3G7FW7OQPN6PY547X6JUTQQEF4GLXY7R253VQC3WJAKGT6HBINIXX67Y3EH7X5O7P4OP7QQHDJG2O4JV65BBXY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/puppet/offers/puppet-enterprise/skus/2017-2/versions/2017.2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d61a5cea5f9f412682790c2e73528dcc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j28AQTjHnfMZm0g9DX0jFvHe0J37PWp5fK4n%2ByDUvyY%3D\u0026se=2019-04-24T02:41:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RICT25UZBGSXPU5G7CEMQLWN2HAUZSK5GNUBNBQ5DMPR2YPRK3JIHPNZNS6DFBSP3O5QDTOPZDWFCDCN4ONQ42NYHGM36Q53QKM3OYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/quest/offers/rapid-recovery-core-vm/skus/quest_rapid_recovery_core_vm/versions/620.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cd0781a5b1314b81915a86aa3430ad88/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=n38PaaDjxFiAUI6YhLoIbask9AqdWTQXYhvieg39V1U%3D\u0026se=2019-04-23T17:19:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JDJ5IS5HDKFWAZYHNAXOS26GA2W6QLSSOBONENPU7CM6IFK53KXJN3GXWYLS5TQQTFX7MZW2N2PDDAITXR5KV4R4OMHIF34ZMDUBWIY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/tata_communications/offers/netfoundry_cloud_gateway/skus/netfoundry-cloud-gateway/versions/2.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0bc4fe0560124ed192a5aa8c7cffcf5b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YrbIlkFl8NtJFRWp%2BnUXf1yx1fZJ0ep82GxZYUNVlS4%3D\u0026se=2019-04-22T07:09:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/tata_communications/offers/netfoundry_cloud_gateway/skus/netfoundry-cloud-gateway/versions/2.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ac4900e34ebf4d7282950d721113ec13/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L5anuyefUAWDZlwq9kH%2B0iHTWQP%2BeMwtmE6gtyCUfMM%3D\u0026se=2019-04-25T00:07:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/thales-vormetric/offers/ciphertrust-ckm/skus/ciphertrust-ckm/versions/1.0.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/07d890da45eb44d8ada0d2e00c4a4f6c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=d%2F8NyVZiyCOIO%2BNBkoPw9n%2F6pjkcgdohlTabbsfC7Ss%3D\u0026se=2019-04-24T17:36:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/zerodown_software/offers/stackbcaas/skus/stackzdsbcaas/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/544c62f6ed6b44e68368a3dfb5fb9598/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nnYIBZZ4r5wE1bTGL%2FY3KKwXA879esLTrJF%2B%2Fnsl7m0%3D\u0026se=2019-04-22T07:30:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-14T06:22:13Z\u0026st=2020-02-13T22:22:13Z\u0026spr=https\u0026sig=EOaOB00ALYHrt14nFn%2BFMNEdXHc7cFfvLpglO3m%2BocI%3D\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Failed\"}}]" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetPlatformImage+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["20"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["52238523-b6c5-4da3-990a-3317256b8383"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrmeq9zIpCJP3YShPPGxIb6XJQfw2JrV4wyz5OsBZVHi5phnCiXTGTP2C7Dv1qIrZe8NCpgXbEkfk+ozJT2paL/9xfUKO3WRHytIibkhacTBHT4VEh5t2G4Hxjbc6jDv132mKCs7c0mjBn2FCG51R" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13726"], - "x-ms-request-id": ["52238523-b6c5-4da3-990a-3317256b8383"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174624Z:52238523-b6c5-4da3-990a-3317256b8383" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:23 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["196187"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/ElasticsearchClusterSolution/skus/ElasticsearchClusterSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/JenkinsCICluster/skus/JenkinsCICluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/KafkaCluster/skus/KafkaCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MariaDBwithReplication/skus/MariaDBwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MemcachedMultipleInstance/skus/MemcachedMultipleInstance/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MoodleMultiTierSolution/skus/MoodleMultiTierSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MySQLwithReplication/skus/MySQLwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/NodeJSCluster/skus/NodeJSCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/PostgreSQLwithReplication/skus/PostgreSQLwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/RabbitMQCluster/skus/RabbitMQCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a60bf91041304dba9c2613e217c8a8b7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=1k%2Fn0l8ePLPR94qxqG6Zqz4tmxq8KaydSdHJnOwGpdo%3D\u0026se=2019-04-22T05:02:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/WordPressMultiTierSolution/skus/WordPressMultiTierSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Ubuntu1404LTS.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201808140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/08acaeee3c7e4cc394e9ef81790bda63/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ydNNSz53UkhZG1faRISu%2Frjuw3fQax9DKgBRweZ2Pm4%3D\u0026se=2019-04-23T22:15:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.20180818\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/41281233660241f9a8e074b74f0d5abb/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Qk6P%2FYD5HfFV4%2B6LVzhxBZ7ynbPQx6he%2BYp9N%2FEnCs8%3D\u0026se=2019-04-24T02:31:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-14T06:22:13Z\u0026st=2020-02-13T22:22:13Z\u0026spr=https\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20170811\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Ubuntu1604-20170619.1.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/411e6e144b774457870f77f8fbb95a80/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=9d%2Be%2B%2BNGSnLb2p2AdIjeiXO3XHY%2BHhsLR9BkI%2FAoybA%3D\u0026se=2019-04-25T04:15:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20180831\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7e3878d7cf874ecfab6eece1d0553fce/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UcbqQHS8NNcE7Cy5McWPm%2BSF%2BTCd4MhGL5fyoZ4nIM0%3D\u0026se=2019-04-22T14:00:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.20180911\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/027b00815995491a8986f8ff7e16c38c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T02:20:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CheckPoint/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CoreOS/offers/CoreOS/skus/Stable/versions/1465.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0e40b5a886604bd5a6e153c9d943e47a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=eHxmjiNG9pvjAckaINKQ%2Fu0w63TYyqqJUGBVxgj%2BkD4%3D\u0026se=2019-04-22T07:51:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fdcc8adcec6b45ca914aecd18b2d8dbf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cz03ZesAbyd3hsCTdiE4nQCaiI3nvOIlOCz3pcXQxKs%3D\u0026se=2019-04-22T15:19:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/6.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Fortinet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/411d3bd4a3de4014a3d3eb7d187beed8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T21:55:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/KasperskyLab/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0e53c22baa894df185b51f0a987c8ed2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=huwHQlB8xANDiG62CkCd5kLLPFijNUVCOc%2FNQsAgF88%3D\u0026se=2019-04-24T11:04:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-CentOS/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d84feb2939954cb1a3c2fb460754b84c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Gn7yLA%2F%2BF%2FhS2ISuZYXceT7ycS885MgXMlzCClwIVco%3D\u0026se=2019-04-25T20:24:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026060001\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b7f0116949540a086c3d4c9b251222b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=19lvx6FiSwUn8I%2F1bfbxazUl8wcR3zecXDVIv3FCL2Q%3D\u0026se=2019-04-22T08:45:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/96abbb1d8d0240f3b293955633802812/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AwnlJAFW7lu%2BThnqazrwlV6mKt6IYDCnPLoF%2B%2Fpe3VA%3D\u0026se=2019-04-24T11:38:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-WS2016/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/810b05a219ab47f484d6174133a11159/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=yWnIrRGFQKWofPbPHYAwYV2H6KyH3DMnvsnonfNJWlA%3D\u0026se=2019-04-25T04:23:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Enterprise/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e287e7de89264d4fbbfdf01acd3c39e1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=fkvV%2FI1a7H1N4HVYl26Lez8j2ZB2bR05QW8KT0bUaoQ%3D\u0026se=2019-04-21T01:33:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Express/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f5fa664ec7141b9b2772528b3423942/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=R2skFCHjjh4mb2uq4OPpEi5Da6baoID24BwAwaCWJrg%3D\u0026se=2019-04-25T20:39:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Standard/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b673b3e0112473eba61d6de49ae0a19/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=FP13kvLeTnyWQI6sScc%2FL4D4ed5bT6UGCylQnVPiRGE%3D\u0026se=2019-04-24T12:23:13Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=e3K%2B5IAiUhqQBMMpWDc0huefPITFPlhGfJAhxbnNj8Y%3D\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Enterprise/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d200e6821950484a8d2014f9ebb1bb9b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=yRoeu6Mf9pD3x%2FgEBntVL%2BRIdPnhk%2Fjd30qaemtzdL8%3D\u0026se=2019-04-21T13:02:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/SQLDEV/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c0561c31f0e843efbf65c4ca59a3705e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BCQQB2mGuTPp4Jrlm4DxOVjiC2VsB%2Ft4mjQUOUY8BZo%3D\u0026se=2019-04-24T03:43:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Standard/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bde535a023f54699a2ee96f58574352b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tnmrSNP%2FBcFdGDY7VIB2USaSoTGccwz0f2t50AMcEjo%3D\u0026se=2019-04-24T08:00:23Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Web/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e444e9cf06044fafa8ca87fc825e39d2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=W9WW%2BPuTjb2f25%2Fn%2FhQs8gWYDWZ0umn8DgVG%2BD2XHtk%3D\u0026se=2019-04-24T17:07:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/83d1b9ea66e94bf191d32d4747e5d244/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5%2BVt8IbYCDgW3cpMB1j31OR8oMzQRoVAq1wDkvqMgD8%3D\u0026se=2019-04-21T14:52:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/73c512f0960c454c8384136874f024ae/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=D0%2FhFewg73BV0yxvSEIp84NbhtTqkrhV5BPD0wrTJCA%3D\u0026se=2019-04-22T08:56:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/SQLDEV/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2531eba967bf460ca26be30ff461035d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uX9n7oJujgZhxJV%2BM4vM2eSwbu1n96ZjfkPgD4tHpxM%3D\u0026se=2019-04-24T21:27:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f78eae34cf84343a41dbbec0d3bd5e5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=12CJlaVDbbNlM5CRvsfhYvbmzs0nHvRbFmqpLut2cas%3D\u0026se=2019-04-24T20:41:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2a7288a69064feda3295cc7bcae3324/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=pJ3OrXOnSbH0zgB1otVSvZYL%2FVpytADhYRN4t%2Fcnylc%3D\u0026se=2019-04-24T09:30:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4271130d8f364281ab8a90ed0e08adc4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=laEyOKVmGiQhbhQgpA3iD0SIZGggFueZ5%2Bqmo5U3XMU%3D\u0026se=2019-04-21T19:40:22Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6f1862ef16d745078e41c2302798dd21/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=qIYlYap7%2F7CVmTGZEcVQQ1J7hDAAnyG%2FIoEy31YWi7g%3D\u0026se=2019-04-22T13:15:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/SQLDEV/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5e201cb293ae4dd391ce139c7f86c2c0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KA7THbHIY3svdwW9bi80fmy%2BnhE1go856w5ipKmJURg%3D\u0026se=2019-04-20T23:52:45Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/58d8daf45e814801972fa307a27ae367/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=G4QUTmqGqW129Fz%2BGNmggd0p%2FLSw9JwsDkHeTDWHE1w%3D\u0026se=2019-04-24T02:00:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1cac9c14b0294b7db2be83c8c57830b6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WsbVE1z2RBBjk7dKdY5eR%2BXsL01pcn9IaEDuYlQcoyk%3D\u0026se=2019-04-22T03:15:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a3422bcdf474788a7764ef20524cceb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TmLDJ%2BMSEFRy6Q6%2F%2FQzyM3suTM0SzoAwCijEenH2eZs%3D\u0026se=2019-04-25T00:52:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7fbbe047e9954f7784aeafc1cda3792b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uy5cE9lc%2FRr%2BKgazawCOnLCVEEmSSmGO9sIMHy3IsoI%3D\u0026se=2019-04-22T10:42:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/SQLDEV/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d99835a0b3dd49ae89044a1d9e29eabb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TKtZ4FDlspgBfwb4EMXo1rQwutKK7Swq0UI6yCK3H0Y%3D\u0026se=2019-04-21T08:30:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8c8ab26516044625b1eebd96f534775b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=A972CAbVYOq%2BTQHOCTCenUZ6SKQT%2BfYt0chyvb6lKis%3D\u0026se=2019-04-22T08:24:50Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ef35e9b6f72042b4975308b9fe5860d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KkbhoHgIPx7LMQEOv8uNqJDyTX%2F5KNb%2BZduroV7jiV4%3D\u0026se=2019-04-24T19:47:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2d33a07cd13643ecaefc1c8fcf43a282/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jbQQ7wotE7QQ01Hu8yKFq6Wk4gWgE9u8bbKQjCq72P0%3D\u0026se=2019-04-25T01:14:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4e20599a06a341bbbd19d98584ddfaee/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=sIgrk9ldI6DqYLWPvaJKjyShpS8TusKJNdnJaadxOLU%3D\u0026se=2019-04-22T02:09:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/SQLDEV/versions/14.0.1000204\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6218e0d321a84be9b544abe8f37478cd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IRE75Oe3%2BvxY9T2EBaP96eOqCue%2B%2BKY0P460ZwwyOfY%3D\u0026se=2019-04-25T21:15:57Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/59940b6d0bf646e49998ae2d9c99aecb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hhLjv%2BHMFGjEDf3YFrvhjdIT0dYjJd09ygXV3fhlFaI%3D\u0026se=2019-04-24T16:08:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9401a0f0afdc47158e9d26c7b59523ca/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rnPNcfA95URGpZHlMExTmKVIvr88PacRssUfq517L%2BQ%3D\u0026se=2019-04-24T22:11:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSharepoint/offers/MicrosoftSharePointServer/skus/2013/versions/15.0.4447\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/46cfc189e5fc48a18bd10d205a22f753/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=VL4osFB0hNgVpudsSJAtk99zmtDAlde2veDd67e%2Fhbs%3D\u0026se=2019-04-25T03:28:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSharepoint/offers/MicrosoftSharePointServer/skus/2016/versions/16.0.4359\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1c36c5d778824d218e2df4213879d29f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IWh6PRUMBLRyZffaH7kX2cEDnfm3lFn%2FFJcaHdJ8MvM%3D\u0026se=2019-04-23T18:12:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2008-R2-SP1/versions/2.127.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3673edaa147345e5b25cfbcd712c9f84/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=c0QHVZQ%2F%2Fa4H1z5uc4FNclFHTcjN0%2BiZJXCP0e6CV6U%3D\u0026se=2019-04-21T19:59:01Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180216\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1c04b103b45c4fdd909bde63c08dba07/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MVW9chumZuL3Y6w92mSOUVcsN69QH%2Fvt0LIYX7MZitE%3D\u0026se=2019-04-24T13:10:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/WindowsServer2012R2DatacenterBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/df758a00508848fd89ed21148f68d4e1/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=DsD1saMbwQZimvmraPDIhqLWsoC1gHbHXMxvIiazGCc%3D\u0026se=2019-04-22T03:44:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/de7bfbcc7d9e42f68953c742f2b7ffeb/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=q4QN%2BkhbeWt6fApnINHWeUTvMB6RVzMXnH3adimfrhU%3D\u0026se=2018-11-17T21:55:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Server2016DatacenterCoreBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180717\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2dfbb61edfc0470987695789260b4962/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=DAbE1JrKCehbsboK%2Bl2nWveH5PqT%2BP4ZrwVVxy3h5iA%3D\u0026se=2019-04-21T03:45:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180820\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3caeeabf21144cf38e8be5507fc791a3/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=NdhszFTFZL3I8TJaeXjYuHGpk3jOzHy75543xrX%2ByWY%3D\u0026se=2019-04-21T23:48:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cfeb4f835a7a422ea62688e9c21d1fcf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=xksf9pNKF9nHju4m2HBZ9GXvrhzQVdYuXfTEmEiNWBw%3D\u0026se=2019-04-21T22:31:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Server2016DatacenterFullBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/db7a7f8f517446f7b84585493603aacf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uvJk2fw6nN8KSydqYpzB0ykmlTMRJTqjZWNW226x6v0%3D\u0026se=2019-04-22T12:19:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3e2a7b9ff7f94b14978e1bb065de5a7b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=dtm%2F8BeU6ivA%2B0VQIP39ybwtrslE3lhUgDk8dhol4%2BI%3D\u0026se=2018-11-17T04:47:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2019-Datacenter/versions/2019.127.20190522\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4f701d79e87c4800be7f144d2186cb33/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-09-05T03:45:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/AddOnRP/skus/WindowsServer/versions/1.1906.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2f48d49354794235971d472ac7145388/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-12-05T17:37:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/66a927e4774f496597eae771b36406bd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AwpvJSKWG0CtoFNXZWdriJ5CkB4GJgT4uO1QwTKtEtg%3D\u0026se=2019-04-24T00:49:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a9120cdd68514772aef0e52889a97c78/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hockDbp4QkLasj0kQjT9WUclaSbhjlpBlQhMMNWu%2Bi0%3D\u0026se=2019-04-24T00:50:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9159eb815b6345ad938cdbb621472dfe/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=RHQquuS1dJDAfDoWa6fkRlU7RMI%2Bb5yOFzka5WXBBic%3D\u0026se=2019-04-22T16:09:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/VMSSGalleryItem/skus/VMSS/versions/1.3.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS-LVM/skus/7-LVM/versions/7.5.20180524\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d001446d7e384d8a873fffacfa76b15b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gwwz9IK7iJQ4mfBqhA%2F00UuyW7FOFgJwLpl5SVTzWBU%3D\u0026se=2019-04-23T17:02:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.10/versions/6.10.20180803\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f0e5f463c12f41a7869b722f8b2aa220/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cGHcWbSy9lf71yVBjwceFDjNUS3zcqEuSTc2z5%2FPkuk%3D\u0026se=2019-04-21T07:41:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.9/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/OpenLogic-CentOS-69-20180105.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"training\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.9/versions/6.9.20180118\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ae60540fb616438696923c45af54f15d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uLxmnW4eNczWBjGJ0QvpWZhCTrxZ4YuB%2F3qre1H9%2BGI%3D\u0026se=2019-04-24T11:22:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/7.3/versions/7.3.20170925\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fa72dec1191b46059a29a2d1d736c65a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YMFSyn%2BFEvD5Q04cCXNQyBkR4NJ7dzsjKf8lHnMXvfo%3D\u0026se=2019-04-23T16:35:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/7.5/versions/7.5.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b5701417279a4285a795cfbc1eb95d17/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jwkYyzGUExiL6DRaXblBw%2FbL48RK8bYTp452KjEMSSU%3D\u0026se=2019-04-22T01:35:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Puppet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/11-SP4/versions/2018.07.03\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e7069105a1ae4fb88dec5412d76f57f2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Gw8rs6O%2FBFEIdKbq6LehE7pzd%2FbMHAhwVujYMl64KJ4%3D\u0026se=2019-04-24T11:52:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/12-SP3/versions/2018.07.03\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/dc7a6f2785fa40d786502ee72f32e5d2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2BRTsrNg0bQD8AqdGaPAotyYys60n1lOr1kGnWYVN5FY%3D\u0026se=2019-04-22T12:06:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/15/versions/2018.07.16\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7f409d37db95459fb16b6e0f4454ac85/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TYqlr80oiBJLCzEct4CiIDynzL0t7IRpqiAaeqTydlI%3D\u0026se=2019-04-24T20:18:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SUSE-Manager-Server-BYOS/skus/3.1/versions/2018.05.23\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/81016e8ef9dd4fdba8dd8ef51fecc5ca/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uHzb3x%2FVUhg36DxVTdQCTrCCHVV5aoktjnbjwMfHLFI%3D\u0026se=2019-04-25T01:07:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/a10networks/offers/a10-vthunder-adc/skus/vthunder_byol/versions/4.1.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b4d19cd6f71f4d4b998f3c417eab8132/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=aWxjMiO71NzkBbQ9urfbLVcf7dY6UputTkAqds6Eyjc%3D\u0026se=2019-04-24T01:02:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/arista-networks/offers/veos-router/skus/eos-4_21_0f/versions/4.21.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/337487d0e9e24757912647bca4531c73/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nwjbd2El9Am25r4zFw%2FwA2UPMdyUEuUsT0teQ1fWbEs%3D\u0026se=2019-04-22T15:20:01Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-app-sec-control-center/skus/byol/versions/2.1.100803\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/211d33df3bb641e2bc4070bca48b4f14/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Spp0sG19%2F9GCqyBtjYeobDRVT%2Bh8a3eaEI4Exln%2FWhA%3D\u0026se=2019-04-21T09:07:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"NVDYCK5Z5E4PXIOSOMYBGMMY2P6FURFDPQ3FQYJZILWEQ6FMQ24F5DBWA6BWHPPAT4FEMO2R4ORKO6AS2OVMDGASLVVNHJJTUSUSV5I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-email-security-gateway/skus/byol/versions/7.1.100405\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a696e6a8f38341d59e02cf7ee6e644c3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hNlSfCea6YTYZ62GWlzq1HTMBKIq1C5JMgSpxWzqYro%3D\u0026se=2019-04-24T14:38:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5LJ4GJIS7FDXKIPC52U2QHQCCG2TYBW23DAXF4C7T4MT47OH6HPZ4LLK5EN7DQVCZFTAWUGOLVXY3RZ4JBL35XQ3QIHJLFIHBWC7GTQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-ng-cc/skus/byol/versions/7.2.205701\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d75baf5403c422ebea0ce3a2a1141b4/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TePc0Nx9CMUMpIx5oS6ydr9E%2BXEHvftADEaAGmsrhrE%3D\u0026se=2019-04-24T23:02:38Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-ng-firewall/skus/byol/versions/7.2.205701\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4047d7fe588e44f8a93858954913fce3/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5ZJXinkOh9mYRjTYTOJAf0FAxMpTYaKMaDlr3166%2F24%3D\u0026se=2019-04-23T16:43:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/waf/skus/byol/versions/9.1.001502\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0d50346e3fb1447886153f14ca5880da/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=dTtif%2Fs%2FHp009MJDSHJm7axB5jMExUAmILaxCLG1L2k%3D\u0026se=2019-04-22T06:42:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UAAWCQTKE6QYUG3H462OEWMTVIND7FSYERZYYW2G5CRESODI3QQABXPZEUDD2ZNU7LSKMR7VOD4M7YWJVBVEUEOVSJVDN25UR73YB3Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/abantecart/skus/1-2/versions/1.2.100\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/347f01ec7188438fa67ef00b29d8c4e7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=mYM75vWt5ErOLrBYF7xD9VToHa6Fs9zdRmA1jMdeP%2BI%3D\u0026se=2019-04-21T21:50:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YEBM5WXAGKYT7TRSJ2UXXUTLS5ZXPOWIGNC5HWD72D5LPX45OPQ74F3SV5NLZGKKH2OKB3U32JHBFXJAD6VRV5QLH6QGQ7KNH4ASS2I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/activemq/skus/5-13/versions/5.14.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b672d164006a47599c82d082e02bd47e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=T3esbLAZmDelBZcIS57u%2Bb5I9zCBkR3Ib1Rzy4TQGX0%3D\u0026se=2019-04-22T04:52:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"6NTRW42IUUVRUASZIVLEFNOKXVBXV2HXGKL2HN5NZ2AJCCQEG6YDJX2AORBGKBULWLVW6POZZJRS46WFESOS47PC4LOTEFYDYZRHYYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/akeneo/skus/1-4/versions/1.7.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/40a9ec1360694b6c9e10af1d40abff1c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=R%2FKeRzaOJ0dlBWIw2%2F1t12l19gjQB49mv30S9AlfOSQ%3D\u0026se=2019-04-23T19:46:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EFCXRMLFM4PTCELYQFIGCID4DOH5FF6TL7US6BVQJI7YHA7WVT7SCP4IXUCJSA5JL5OCYWF6JJGS7NZ3766GEYDBR4BGGO3MNXIVF2A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/alfrescocommunity/skus/201602/versions/201704.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b182a4a3ad0415c80db0bd9c6f81c58/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=w8XkEQGUDr5PXj%2Bdijhyg31lEVL8GjdQaK3yONx0%2BBM%3D\u0026se=2019-04-24T22:03:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PWYFNE7FC65D6CK54OR37SCQRGJW7YW2KWGRXIHAZRTAFYOPDMV7JYFMZ3WJ3WNX6DKEKX4EUQNEDWDX2X7U6ZWJ227K23GJ5TB2UYY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/apachesolr/skus/5-5/versions/6.5.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/738cc1551cbb43c4b91aebba9c124b8c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UVkpw7P%2BXZJgFw3tet3rhb31hlWta7i8a5ULZEFDVLo%3D\u0026se=2019-04-21T00:20:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"O6OOMBWC6EP54OPAD6UOCOEOBOMVUTVAQ6IECMEH67ITHDMRWY6OFLMPKURFKHFF4SFHAWYLZ62WETQJ6MM3LZ5CEJUVZCUHZZA6LCI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/artifactory/skus/4-5/versions/5.3.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a07312ae4a644e8f9595480de3f47b34/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uafHwTWKOPpgRf3dFOuXoJVOia0XK0AIJH0V4dMe%2FoI%3D\u0026se=2019-04-22T16:10:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LEV2VYDM2F5SDJXFAKTJCQ2EJH34X7GVQQZFR7NM4M6FKZMJOOTT5L2IF7PLNVT2U7H3OEBSHQADINYJ6AJVGOO6K2IPY5L73CTGTSY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/canvaslms/skus/2016-02/versions/2017.4.22120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7631d0897a94492cbdc91b29f1335ff9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=EW4Z8yLpNttwdQw19Oysa5cv54vTwcEaHJHnfSIsfUY%3D\u0026se=2019-04-24T00:03:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DTP7LZBFEIYGHXEEPAPCTOK54QV3NDHCGPYVUHVQ3DJVT6UCTLE3V4DV5P3G442UOPHE7VFFV4PH4FTEZJDARV5D74OCV7XYE6HAZYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/cassandra/skus/default/versions/3.10.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b965b309a8014fc894d773a74947034f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cHaiU7LIDlQlPeH8RNlcdvEUFj2leT7wil2Wskgzmno%3D\u0026se=2019-04-24T15:17:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YPVB26KOT2GMN4NWLZTHTEDODUG2C3WFZL7STYSBLG3K75ETFL4AFACJMOXXOCTX4H2X7566BIPYBRRNUF72GGUMLCGLXQP4DPS5AXY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/civicrm/skus/4-7/versions/4.7.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3c375836db9843b99e487bdd3793159f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kT%2BS1WvpqHWSPy2rE6itqitNTLeWTpXmGed078yX9Gk%3D\u0026se=2019-04-21T00:11:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"J7IPLXWHOWP3HKXS7VEOKGR2PBJZP4S3FFJYO2SH4LQH3I5LH5ML2WCS6FD3SXEFJPD25SW7246RKTU6OVIHGVXW324EENA5VZSI2JQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/cmsmadesimple/skus/2-1/versions/2.2.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/621b7af6be804119aba9e55e6db84def/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IjPGeHnu8EFZyt8iL7uUOy%2BNKuTVthe%2FYkZnoGGXyQI%3D\u0026se=2019-04-24T11:05:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KBNXH3YTGT63Q63YHCRBYCXTG6LK2MUSERCVKCXRJDXXCEWM4SPWQWZVSPNJYOXRYA4CHZLBB24EZWM3EPSHB4XCQJQ45ZD7NQEDHJY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/codiad/skus/2-7/versions/2.8.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0d9c2264b4b846b98c811b9f6ef3e7f2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=khIxIiw0ZOw1ohsp9uOA4Kk3Tc8Jtqcr2FQbJ%2Br9MHo%3D\u0026se=2019-04-23T22:34:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EIOEYKZNBWRKDDU6SIB4PNZXY256OGIWNMR6YRYLFLM7GCIQ5G6LDJTIQD7DWWXRMVH7RND733LKVITY2HEWPL3RKFZ7OGGSI3XYV6A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/concrete5/skus/5-7/versions/8.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/871015f26ef44e369a8bae53291cfd87/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hc8RbW93NcjxTV5U%2BPSfFE5kLBeUcREg6CJ6TUeKriE%3D\u0026se=2019-04-23T22:45:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FNT4HMN5P5YHUBF34X24FCJYUDVFABK6ZVXFUXFNSGJ5GFE65R7B3EWT7AQVCME3IVHO5XTPNZRIE6NTFAOZJKV6H3LVT64L4KYESXI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/coppermine/skus/1-5/versions/1.5.461\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/707cf4735a474c9a89772420df785057/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AzcBNNRRKef8VpxLJj2njCtXU%2BJTMCZNKUEdeJfV%2FG4%3D\u0026se=2019-04-21T21:34:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"R7TPWFCIJREFXH3B2YUZTCDUTLG6ULKCHIOIEVO2IK3UJMYKX5A4AFRDXMIVJIWTNLCBB65UIJOCDPKNJVEPWNBQV25X3RA6E33PAGA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/couchdb/skus/1-6/versions/2.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d33ad559f0e746389cc6bf5d058e062a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kZcNTTSWvef3zBEirBEghKYYQ3%2FnuGM55WM6WYlqe6c%3D\u0026se=2019-04-22T14:24:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UXAKYALSSOZV2EQWTWR6SGSGOQZD6CZE3LQ22GN2LTTYSZ7CQDQ3XED4R7X34XS4ELHV2P6GALY7Q3AOQ3MYMCKPSL6YITQHD64X7DA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/diaspora/skus/0-5/versions/0.6.600\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d74e60c1b1c2402c8d6f874b1e1935bc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Oznu3mCWDC6rsaBkHAfzjx2knSWgX9CFsGUDAXySD4Y%3D\u0026se=2019-04-24T21:56:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UMZFWP6KXL3CB6TQXY23QSH6PJKBFAFGRBUFZ4P4BYA6VA3KEIJBVNVQNY23HYBHA3GVG5OBCJWCOOX2SY6TQ2AKU26CJWQIYVLHL6I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/discourse/skus/1-4/versions/1.7.80\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/995895798dcc4b4c9bbe1d0a46b69a29/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hnZ1EXzZtztth%2FT4t8DfR2dZsdKd0CMKm2VOP5md%2Fdg%3D\u0026se=2019-04-24T18:20:38Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FPIFN6MJCDPYEENFZTMRDMUYJ2OSADDIKMZ67NKVTASZCYRIGV6WUH34DSCU7CROOMC26YWU2QUDRIIJJ3OS5AMPOMPHO3G273QP5XQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/djangostack/skus/1-8/versions/1.10.60\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/369f8476e0254895955754dc85d7c3ea/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MzRIkAtsnExGb3mAdg9pe9ItuioiDWpCEad9hKUSsA8%3D\u0026se=2019-04-25T03:57:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Y26IANL5G7VB4NMUZ37XL5A6K2Q7WGSP6QFSFXKV2QKMEBF3MEHFWNUNIZQHPJEF7MIJ2MS4JPOBNWLVH7PAXUNYPZ5GB77744FJI3A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dokuwiki/skus/20150810a/versions/201702192.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/72b92e119fe340468a2845fbcdd6d90f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=EcHQGz2Z%2BM0sp2isN1ZFuQUh42%2FEGRAmx76XRRgJjKA%3D\u0026se=2019-04-21T11:24:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"U6KTO7WWX6SA72MPEB6H4UVAGT56J5DFBV7UJWEHN66EDMGFNME2JOLMAPVDLH5CM5PJBNJIUYUKW7XXZTRHD7YYKUC22AZA5W2APCA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dolibarr/skus/3-8/versions/5.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b1f426e3a9cd475287f9e78f6ec8a443/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j%2FjhM2PJ15EBiUgbS1GAj1TqdlbVHynqd7gwbGEB0yo%3D\u0026se=2019-04-24T12:08:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"3DWLMZJGURUHFVIXLEREBUTJYPKO7ANYSIY6PGFLKFJ6BKIQUCC2AWGIMDBARSOEOVFPRJMHU56KCA67XMBSNUO2CSETRFLVLSDX44I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dreamfactory/skus/2-1/versions/2.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/797bff580a3a4f998b4150f486f17247/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L1xFJn2S94l0AJ3Kc8AnaSZ%2FhgcyqsKbxII40fQmexU%3D\u0026se=2019-04-24T19:54:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"T2I7SDYJF4NJIGSHIBF65VXEYSWYHCRSIFTPUP6BPJNN4L7A3AIM2MLLXVQGPGH2A4TWQ5LRNRI3KFW2KNJ5P42RYD2BYR4I4T323OA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/elastic-search/skus/2-2/versions/6.3.1807061010\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f47bc5e8c2614ea99d0d728fc6f38a38/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gCSgaECpElYoi1I0f3A8tkrcXlmi7BomNm8bMpn8SV8%3D\u0026se=2019-04-24T19:13:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/elk/skus/4-6/versions/5.3.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/316676111d5b4e3badd980b961d6d9d3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T02:18:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"33J24WWFPLIJU7K6ES7PIBREFXFYWHOSKTTBBGXIYN7ULUP4ANF4WFK6K2NMWUYD3LH3OCARZZSAU6OYT3VEENXFX4ZSXUZP4MHHMOQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/erpnext/skus/6-21/versions/8.4.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6dac78a5b4c1402fbaf736f8d7d0d1d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=0T2H4iCaLQVBoBWGu7gUHz3YDTkT5y8eD%2BNaUFphqgw%3D\u0026se=2019-04-24T02:10:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"HWDMM6EGVAKFTBKGR2QLV3XVXGSYEZ7KZ2UGM5CX6AJCFYWWG5PYZNMGRMD3JX6GWWJWWA5QACGEEVR5L5FBZ23X6K2PYGBI73HOZ5A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/espocrm/skus/3-9/versions/4.7.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2c38d8908dd94db8b2fb5318e1ddbceb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2F5HmMTyn1g8ATcq%2BPOLCT312ylQFZ1ce%2Bu9RGHvGN6M%3D\u0026se=2019-04-21T09:55:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GTCONGI3NKTUR5M444EXXTSHGABGB5EF4FI6JHANMMDUJJ5APHR6C77PF4PKO57SVYZJLEOEMR6CBSLP64GUI4TK54P2IO3O7N5CV6I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/exoplatform/skus/4/versions/4.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2698f1d2c5be4fa9961a1121ebb6a6c9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=CEIrE%2B9A0MPFsHnYY1vk2%2FfpUskA1IT%2B1aktPFS9JYA%3D\u0026se=2019-04-22T03:27:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VGWXONOL5NK6F7O4XUCRBH3GEOWQ6YZJLWIFI35RLOGHP2AQZZ6PQ7AXZOK6OJZ5CYGM2GGQXMQ3XAUZ6SDB5QGYRSHAWXEA44CCLUI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/fatfreecrm/skus/0-13/versions/0.14.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/09471aeec74f4342a81a24f53a37ade1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=VTpcctARzK5yX02m5xFaaYcupDEaFVRTRYVAi844HrA%3D\u0026se=2019-04-23T23:30:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PZ5XR2GWMXXOPJQPSXD2ZF4DJ7647ICIJ3A4CQHGA7I7QLNEU2R6QOCYQEGQRAEJ6T5WBKYLWPJ3BE46LHNCFWEL5RYNO6OURJ4HF4A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/ghost/skus/0-7/versions/0.11.100\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/912e7023bbed4d429bbddb926d647fa4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YgAdB4AOHxlCccR%2BCSJkrcJbWnYdWIEST2s5EPWLmYc%3D\u0026se=2019-04-21T00:59:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"QEGSQN2DPAX67IZDQVBJ7ZAHJTYADRNUTA3SLDKFSGVOTU4KRTHDVNGLVGEUSO2OH6LV4XSS7HB5ATAHSRLEB5T544CBIHLT3EXXYGY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/gitlab/skus/8-5/versions/11.0.1807052008\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cf372a9952944f6b9885a51262e607e7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gMtzX9hlAyxGNOy9Vr%2FSaJt1qodhuXX5XuY35vx4p5w%3D\u0026se=2019-04-23T20:11:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hadoop/skus/2-7/versions/2.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8664dc6e4ea04a218480fedc529691b7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jWIgvXiPLMT7BRkizHLqetLrS3YarAYIbhRdsE4IX9Q%3D\u0026se=2019-04-22T14:11:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LBQETUSP525JVVGQRPCV4WOSOAQRLBWISMGRR2FT7GCG2ZRV27VQXAJL5TUDQFHHIQ43NWKTV4TZWG6HU7OIC5FOQ6KEMEYVPCHHC7I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hhvmstack/skus/3-9/versions/3.18.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4a24a1a9a46c40479c6a49cb5c12d328/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=iOKv%2FRy2unfB6nnbD01oUj0VLEDYZ47i8lBqDZum1vs%3D\u0026se=2019-04-22T10:31:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JTC2BRZS63NKT4DYUBZBZWNNJ2QTGSIZWQBF4LJXCJIGPZ24TAQMTWNH5FN4MBVSEINP5PHPUFS6LOHV2VUUW3VRVQQRJTTX44RPJVQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hordegroupwarewebmail/skus/5-2/versions/5.2.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c082eea9133f445a924216146fdb861b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WOqv0ZCNAYAIpKoeZSb3QKH4XjhDk%2FButSsgJVJP8%2B4%3D\u0026se=2019-04-22T05:03:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"P2A4HHXJYQIAUQOTYBSWL46EFTBI6SL3GUGSWCT3RTKZTI4N6U47JR242VZLNMPDFITTEFEGGIGK4S6FRH7J4O7SIABBOKGLSXRIFTQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/jenkins/skus/1-650/versions/2.46.21\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2e7d08a94914cf6941f57a088a8e286/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=GGlj5ZC7VEZ8tk370%2BHZnsJTW7ysN4FV9PKGEjxS1yU%3D\u0026se=2019-04-22T05:56:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OHQQJATXJS2Q4ZWQGOEG6FPTCGQVG6AC3SSGY7SAM2CAB2RRK7PPHRCFNGHUNAD4ZNW6JCRMSHUA74CJ3QNZZGWEVPRJBFPWQ4QRAWI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/joomla/skus/3-5/versions/3.7.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/adb195e9dfa54dfea2f192d708afafea/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=OwTaFq8Glgn44v9Sk6DzURcIqvYDnriL2mXMg8iRBLU%3D\u0026se=2019-04-21T05:10:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"D4IRPYJJJAO7KN4VE7UQVNNHZFNFWDWWECWBDD3UHSCAMSBXPCI4U5QVU44LXJF23Q4BL2UQEXEEGSYVASDCXVNEM3F4IJF7ULGRRUI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/jrubystack/skus/9-0/versions/9.1.1200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4e29e64d69ed43eeb3f66dc86e704960/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=aIMN9Ak9ECfRXxrM1JtMbz17Vj3O1m3SsbY6CA37K4w%3D\u0026se=2019-04-22T05:25:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"V4FUQIVH73EXOUYWYWWWJMPVVK5UM2XU2HMUUNSU3OFCWICVNBHADX2YOFKWWIFAEHBXFRUYJ5AMU7CKSUI6OESUUHTZDSTKGMOZVFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/kafka/skus/kafka/versions/1.1.1805301513\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e2e3b9d1aa664fc09297799de328f66f/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nxn8yddfmlsd53xeqUJWkgdvdxWbcgYc8iUw85dJBUY%3D\u0026se=2019-04-25T02:35:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/lampstack/skus/5-6/versions/7.1.1807111007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a344d67ef16f42e8a3417c1301ef3365/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gvlQ%2F4N99TA89dnjax29%2FSS%2FG0%2BFF%2F50BXdOdqyrJeU%3D\u0026se=2019-04-23T22:24:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/lappstack/skus/5-6/versions/5.6.310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/dfce49f9624845a99f731f17a9fdc91c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BAkzLzlGxEL9teVnJ6ETkTvx5m%2FiaYZiqSECT91MnzU%3D\u0026se=2019-04-24T05:22:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KNXLGW54OT45VXFTA7TFEGO242PL576C2JD4Y7XH4CIVBFBRHGTEEEAZCYAJ4Y5BW6PJ4XFCL3J5R3CGZ5AAD7CTTTSELCWJHVZLIVA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/letschat/skus/0-4/versions/0.4.80\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9bf984089fe54b15920595a78b33eaf4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=F%2FHLZobUEpG0ILoBHTfeITX90aZHa%2FveZck6oUAPcyM%3D\u0026se=2019-04-24T15:34:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"CZZ2MUSKMCRZB3LHRSOMOXAVOP7CBC3E7YYN6IGXBGTZ7JZYUOW6OB7DTNMW7YEZFXCRD2GGGXK6HSLFUASA6ROYVQP3LVFPGPLAVXQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/limesurvey/skus/20160228/versions/20170305.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d8273db199574efead6b971a1c5f0373/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6oOSTlZ9DEjMNHh4EmbG4RaT%2BBoWaGlcRYbAKLpDhDo%3D\u0026se=2019-04-21T21:14:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FGJ2BNOPOCGGUB6AZA5KTC7BVVHICBZF2WO4RCDDTPDAVO6I5HJGS4G3XOMBIZTYN4ZD6CHFGMJL2ZN6WATN4BN64BUC5BBO3OJWJPI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/livehelperchat/skus/2-44v/versions/2.6522.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4edd386d3a714bfc8cba36e24149f2e7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jdKs%2FJrRukWM3AdS92smPP63aGLTJPUJP4%2FMOLvmxOs%3D\u0026se=2019-04-22T09:59:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DC2G63D46WDO7O5KDW65EVIA3BLMC4IF5DDB6BAD26KM4CIOTKKW57O6OPALGSVTMYKIFBJFY4SXPNIH4B62V4PGIVIBG45IGW7EJ7Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/magento/skus/2-0/versions/2.1.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7238450c93b847aba366a62ebecb9553/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=eV46E9GtBVpf%2F23o2rrBGlhHV%2BxxWerML%2B4SsYon7zE%3D\u0026se=2019-04-22T06:07:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KWXD5UVT74DQZEUXLGTK77O6O7FE4M7ESGJM3TAIE4SPTR7JRUEFKEQZXJT4IMVLJJPV5NNX2X6IXN5F3KBDAYCQHHMF3F5O6XAJWYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mahara/skus/15-10/versions/17.4.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6c3b148fa69a4d228291215b9f009831/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BDyVosH63gEwJWAwV56AIuJU0L85C8zEHGm9yBWAOnc%3D\u0026se=2019-04-21T00:01:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"IE7SD4CALJYW44IZDPG45W7YWHE4Z7LWNWYUT7EIUEPINWZEVQKWJQDCH7EUQYBIW6AVISCJVTF5HGSTCLY2LYV5LU5MCC6OJ3HH23A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mantis/skus/1-2/versions/2.3.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bf07c46178b344bd9a4369eb95049796/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=q7adt59gXk95ugoEyaZ1EbEYDkE518yKXLZ8cHS572M%3D\u0026se=2019-04-25T21:45:05Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FWOBKW2FGG6JAGLF2J6AQ3HOMN6S4EQ7CYJCTS5RJMHFPFWNLDJR4MIUMRMJE5JREDSKYUUCKOGIDU3IYG5X332VXFY7LQ5FHQOVP7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mattermost/skus/3-6/versions/3.10.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/368e6884343d4561b7d10b1fd16812b6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WubdF3CjcTfvpJjtDAOb21TmuXN4bB65ASZB16%2B0ha4%3D\u0026se=2019-04-25T20:32:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"HKU6GMPNMSCI3NA3ZOCGSK5QALW64VZCXQCFN7OA3WPLX67OHDN2F5NNVS5LTLOFMJKOTWFDCMSBYYBVANUTLQKSOZNUG6OQP3NXK4Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mautic/skus/1-2/versions/2.8.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f72014a6264c46aeafda2e06278277e5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rbb7VaPZbZbkhZSev7%2BKt9rMVWu6hZQOFng8To22zxE%3D\u0026se=2019-04-23T22:55:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YR3B73XQOLQKW2Z5BZLR3RBACCWARCJCHFS5EKZKRJG2MFUSUEGR3U62HXSHULCDTIPI2NUDT37NUQKJCIEY44K7FLVXI6DKAF4CGOQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mean/skus/3-2/versions/3.4.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1e44e0a92a25465d8553552e33ecc506/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=mi6hQKn%2BS5NwJuFJrAl5gIJhG2GFYqS0zAeiTiVpRiY%3D\u0026se=2019-04-22T08:14:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EVJ6R2UVEST7B5SSZ5QFVR45DKVLZU2WANVKHYPWAACT4LFGL5ALAILDXDLSEIKLUNQGYACMDMDPQAI4MZYMLJEBHIORUPPNKE7A5EY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mediawiki/skus/1-26/versions/1.28.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/11a28b3fb2ec445a980b57158097d242/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Ilnxp%2Bg5W2p4xgk7oCkEvyjCi%2Bd7SxBZyp%2F1SNbF5hI%3D\u0026se=2019-04-21T22:10:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"6KHHRVM7SP4FIQGX4AVVONT5HW4ZUU6A72XRA6SKWC7GPF6YPNUJ5NBIGNFTMNIR2YNFE37ZBSCJFPJSO7WCAY5KPIZFPR6FXQLFNSI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/memcached/skus/1-4/versions/1.4.360\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/876f358dec114a1da58f9b1316a4c950/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BW5jmET%2Bf3bENlHu107vLsC3pZXim3124Suf7ic22RQ%3D\u0026se=2019-04-21T02:25:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"532VI6A7CZQEKPEFGVHKNCNG52MQMHBDUESVHYSTLNJFG7KLILDV5IECVEFOQUAYCEVCSR7PNUW63SNSZTSI6EQO4H45SRH4NLFDPNQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/modx/skus/2-4/versions/2.5.716120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/742ace97e8b8429cbfb1250e525c63aa/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=wASgGZo2CkPicSaVZXYh01BP8pwFpQ26AkfgW1X%2FZVM%3D\u0026se=2019-04-24T15:00:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WHS4PF5GPZMQHOVD4C3R7VELAZCUWW733YDMX4OSUZK4QEIYHHPYBIOAMBNLNF6OQGEZBDF47FKRM32CK5PLSKMEHWGDO4T5QGHENQQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mongodb/skus/default/versions/4.0.1807101011\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9abae78c3a33449c93a5538b63e4b104/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6tI%2FdIGDlVo4OuP1Ex8L8oTOi3nBtpJo6aeAM2FFt7c%3D\u0026se=2019-04-20T23:25:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/moodle/skus/3-0/versions/3.5.1807082007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8df1e5e0af854d459f3289378ada1250/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Sg88Q7wufs1EDbW2lt%2B7A%2FpDBrfIAA4mgd4K%2Bm7XfG8%3D\u0026se=2019-04-24T21:19:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/multicraft/skus/public/versions/2.1.12\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a911d75bf40040fdbd7a5cc973b56aa1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YnrKGm2A1jSZPysZC0evrTpKS4eMseB%2FmEhZZsLJePA%3D\u0026se=2019-04-25T00:59:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"AW5VGA3M6GLGW5TTAHADTBH44NNQ3MCTOKDTL3LNVUFFO2Q4ELB4A23K6V3WD2OBSG4A523W56MRKODTMX2WYL7HZF7TD5KBF7LIHFQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mybb/skus/1-8/versions/1.8.120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bbc90ea6a0c546b98e51c9289cd01f97/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=lg%2FajN4pyjmtMBkDECI9kjtAyyUqrl5aej54OYqNFg0%3D\u0026se=2019-04-21T06:50:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"44Z2GWSDWD5RXOSBI2G3PPFB5BFBOAIOUXCKOB76WISONIDLRMA3XH7GVTJYJHNHN5R74GCNV2BFHFNNZGZBXG5HNHRUVERCYRRVXXI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mysql/skus/5-6/versions/5.6.360\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b1a6f753d364bb2b6f502e65ab819fd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=JhKIxS%2FhMb79jOLT867Pxh1Hd4HP6NifiCPD2MA844c%3D\u0026se=2019-04-22T13:26:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LPBPC6RHPKFXU3MSGFCMET4UEZ52WJFWPPSHTO5OIO24O2CEZAUZ6AMGVFDVNFPCOIHKCW6FD6N6N3OJVVV4FOKRCXGWAZEHJTTJULQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/neos/skus/2-0/versions/3.1.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3ed51c0682cb4fb1aa1cf5e4c8896122/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=JJesf0wvXaoS2tuM52I6rw6vxlpocg6i778NJ%2BIfOpc%3D\u0026se=2019-04-24T10:49:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VQFODFNP5DQMYUUJUS3LY6EY6YB4S4TYSQIHFBBOCVXQQKY4XQVA32CRB53BRJCKSPJEZYWAKS6SOI6DUIZ3NLFF63BQNAQRTQRHQUA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/nginxstack/skus/1-9/versions/1.10.14\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1f1545957d1f4c548508d052a5492a96/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=us4B1xEA%2FtW2N%2ByL%2F2oRnldm5EcDitfIlMLlEAZ9%2B7k%3D\u0026se=2019-04-24T20:02:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SJVYXHJCJ76EXLMBXRETI4XJ35HHGAVGM4TB34FQMAMWBLIMI2FVZ5CG2CF6TFEH4MBIVGLFQZ4TBXZHVQEEJTWVVV7DP6BI63XCV2I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/noalyss/skus/6-9/versions/6.9.180\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7255d0e4b8174efe974c5904d2d00d1a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SpsOucZBlXOTP1oczv%2FtD9%2BL3YAiYRo8BpxXtItE2vA%3D\u0026se=2019-04-22T10:10:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GXF7PHAHQ7P2PWMOPQJ4QBSCTWGHLUADHS5R6SCJQSDUBJFGYHBAQ3RASH4ZD6TVBKKEN6KLODR7SOM4CLRL3PKZQIO7PMMDFZ56TFI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/nodejs/skus/4-3/versions/8.1.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cded2bffcd59467aaf44ef99c4196d16/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=XO4iN%2BcL6BM%2FcyVMReOFPpIvNbb6ZKh7sp1Gt1JMp%2BA%3D\u0026se=2019-04-22T01:09:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5OU4IM5YKFWU6UMR7MYRY4NQARI2S4GHM7JCUSPSFP4W3CFZKDDQ2M4SV3BKYULHAGAWR5INMNO6U3F2E6GZNNAYAEW5TANHBF3KMBY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/odoo/skus/9-0/versions/10.0.201706150\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2fec5a5863604fe491c0c2f763d2cc21/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=le%2BqXTQQ8XMJri9tQqm2ZquEPrTuA5f%2Bn1i%2Ff0eNfNM%3D\u0026se=2019-04-22T06:17:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WZKPPR4YW24XVXPT5WOMIZIRWAL2IYMJFAHRUQV3WPUUGA666KCXG7ETDKGKQ2O6FPKA4EDTNFSF7S3SOM4GRVVSA3BFDAQCGI5K35I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openatrium/skus/2-54/versions/2.617.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/255e045c7b7e4ed6b755a90a8a6f7d5c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tJRhUeMEHSdBS1SXK6Oo%2BaTWkyx75JKIGvbJd0vaU18%3D\u0026se=2019-04-21T07:57:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"TFJN4M2RHEJWDPDOAPQRIC4WUBAUUVASLTDXQXMAMXW2AUFD2KRRMBKRR5H67QOFMIXSJ2CADCLMLWKNPQ6HHLJJTYBF463MMLQP36I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/opencart/skus/2-1/versions/3.0.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/69be1b00bf92432fa4ad824bbe71ab7e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j6m2at9aRAyDhGAongjNK7zmcqxwEu1v7adADeCh2G8%3D\u0026se=2019-04-24T00:51:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LUBRXCPOCFS4PMKE37YY3YZR7GFYAVBTGK3LYGD4C2UBBIS5RCE6J3RESV4GWI6IR2RFKSP4CP2CVTPXUY4SJ25QATKNGCDRAN7AM3A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openedx/skus/cypress/versions/6932119.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/424c957b10c94477a8aa95faeaac3b4d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KF%2FZ8tOBRxHg2ArxPHimopWQUsdyUceNk6vgFzs5s2Y%3D\u0026se=2019-04-22T06:59:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JHTYBKDNSZTBG7THCSGT2HOKP7NZY6ARG7L65LTC4IHHECTQTK6DQOUINJGROUETM3YLIPY5KXTJZLR7QQ57Y4EE7MVFIPSUBOYFLGI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openfire/skus/4/versions/4.1.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9e4cba897ab5449a8b2c6a7db91db99e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cb9KExuz5F27Gk41ooejDRJskEAr%2FMx3Oq0mmwk%2BK3A%3D\u0026se=2019-04-21T08:13:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"23NYVV5RLGLLDXBWCBJC7KJKJNITKRLPH3RHJYFYAGAKOT4DES4LCQVIO4PC32YH3EATINN63TMQG3IGAXCB6WXJ2ZI3MSHMDMJPG2Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openproject/skus/5-0/versions/7.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f79dfd529b9249bd817df39a823078b5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ZLhr8q8nHAQpRO3YSz3QRuPE3xwl2EKQY5QC2P84uPc%3D\u0026se=2019-04-22T09:37:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OZU7UPXJ57PHFCAWSBRINR2ADUOVZSY3HV3FD3LRKEJKEQE4MB3UTCKDPYV5QP6SCTXZNQIM53RNQLYALODTWFKDKES5SVIYP7CG2HA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/orangehrm/skus/3-3/versions/3.3.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/efb09f8ce47143078d73302d36aa6721/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=oFm5EIAL5LTWThtLAV5o2vNXCYZJ7uCFabBOp%2FcNXqo%3D\u0026se=2019-04-25T00:45:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BPAZGIG5B72GYHLINHOMMLCJHAGVMR2JLIYFGZ5K6JNS66AUETP3LJGAPOVWMSLUVSGWFKILUJAGZNQVJMHOTTC7SPTETMI2VSQXRNY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/orocrm/skus/1/versions/2.2.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fd260b8eb0564968b4643f03bacd1329/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Abx1W6mYVD7Ir%2FUPPt4sbt3vWulgjtMSDIcyVFCzF0g%3D\u0026se=2019-04-24T20:10:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DWB5MBHQ7FQCPYLMUKZCWN6MRJVHWQIXVBVREMS6MVSLOT54CWOUASZKTMSC7QNFQ53S34LV2V5U4TGTEFVJNS7ICU36RLJOZZW3YGQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/osclass/skus/3-6/versions/3.7.002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f62e1e3a9c364401bc6f82b9f2541670/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=N039Dv0TKEBl%2FHFsD8LPsOjCVEVHQpG5MeyVfkFu6U0%3D\u0026se=2019-04-24T06:02:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5AGBUYUXKPN4FR6XSQQKYC6CN72NWB6LNB2OQKMIQ66EYR5ZUAEMYHV32T2OU7X4ADPVFIDF3YPW5H3XE6FJF3XWAAM5HQQRQOLWDOA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/owncloud/skus/8-2/versions/10.0.1805302016\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7783c84f219a46f4a3ca18335afb6923/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ozPzd4meSnqhlootrJhjgIElepDbIWyq9g1QF6bHmsE%3D\u0026se=2019-04-24T15:52:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/oxid-eshop/skus/4-9/versions/4.10.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a4e42db0ccd4339bb4d6c27ca75a86e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=VZZxDKRbyJe5xtWYa2CUgMJ1S7f2KfFGTkZxbTC3Sks%3D\u0026se=2019-04-25T02:52:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PUICYL2NYR4EMB7IRZPMFOUWCC5GYATMYKBBVCQIY6465AWWSBOPIITA5ZM7OX5JPO6NEK26TKXX54IUUAZXHZPHPLR7KXU7HPHDETQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/phpbb/skus/3-1/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/998be6e7e1df47ba919821197f0f31c2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jvzAAnsG8i9qQ8nm5R6Zp1r%2FSJZHwy9qogJiwZUPwhE%3D\u0026se=2019-04-24T00:29:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"K6SDMWQ5AHIPLF3N4PHAARERK5KLUAULT446P7Y3CJL7DGDGFAO4ALXBYD6FSBNT5QLDAFXMG3YRB6GIHFZB7YVVFTKU4IXLQE3U65A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/phplist/skus/3-2/versions/3.3.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/af7f8ad261f44c1fb7f6e807ef8939a8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ySbEJT8V2Nh0p%2FC1AeizMFJS%2FycKODN6bEUWpoID%2FrI%3D\u0026se=2019-04-23T23:06:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RTSRWQAXSRXWBEOPI7I7MJ7IMU36SXUJHTTDP25UT3LYYN7IB3CDORN5BMJID4TU6GMHLVE5M2HAMXUY56YMJD5MKA4V3XASFIPMHVA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/pimcore/skus/3-1/versions/4.6.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6b52e4f998c54955b7ffc02ffa519d30/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AvwTW5Y5RfaQEM7NulGuFZliX398w5ebAJRlYS1Cx18%3D\u0026se=2019-04-24T00:38:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YBWOGPYU2ZHZ4PI2SEDDPIOUOKQRDAVF6AVXVSZ4HSRD73TEWFJRVWPM264MXDAOFSOY4GITS346ZOZ55MKTH225DNLRMUI76EI37TA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/piwik/skus/2-16/versions/3.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5235ba886336467b90bb497c75f193f7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=t10VrvuYZ%2BpoTjEzuEEFLvWMknEBS4kKmypNlFLNk5Q%3D\u0026se=2019-04-21T11:41:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"AL3FTPOHEFVFMOV5FYJUIIKU5TV5HEB2YU6RSAJEJ456A5YPDAHTCPBXLCE7JXCJF472M7F6HCB2AKKAFGICS3FIAF4ZM47GKNPJYTI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/plone/skus/5-0/versions/5.0.70\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c7481be4d89e4f96a6271330b24ba215/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AD%2BMV34e%2Fb%2B47IlmL6q0fOjnzkmS9IrvaVoECnylmgk%3D\u0026se=2019-04-21T10:49:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"567UPHGNI3PZLHZMGQ3P7QZJ5YKHMYGNTFP3OF7DUTS3H7N4ECNNOLYR73HZBQJF5WSHEK5HVY6346EEJEI3RYTZXT3UVGF6BPXDK5Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/pootle/skus/2-7/versions/2.7.62\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/01462e0fd56a4db7b252831d45bdecdf/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=vq%2FOTCnjTorx%2BtAXsMUq2ZTQ%2BNcwRCXQnovIjWsVAUw%3D\u0026se=2019-04-22T07:40:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OMI63AZNTHJN7AK4JRE5J6IIWH4WPBP6HZF7WIHAZMQLS6PKBG4T4UGBXUWJL4LJEMVSJ63B3FD342YK2IXJGPW6SO7XZEEVWC3ER7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/postgresql/skus/postgresql/versions/10.4.1805302007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8f04bce6b5d3445587df466b293e5e16/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gIhM16cHGoydZmyKXaFeS%2Bxdt0e6pJi50NhViUwqKbU%3D\u0026se=2019-04-24T23:59:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/prestashop/skus/1-6-1/versions/1.7.110\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1186a35cb26c4d0fa44423f1b0f7a7d6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=RENkThmw9MIdNcCLwJy9JK0fjAQu9KBdqH%2Fbmkqb8ho%3D\u0026se=2019-04-21T03:00:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4SPRV4DB5YV3MQDETU2L2XS5U42YFH34AW3Y6PNOG2MBWSLLFHQ4WC2T5MGLOFUQ7L5ZDNJZV5GHSABJVNC4RX3XRFVZ5OENM6XPBPA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processmakerenterprise/skus/3-1/versions/3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fcd909915dfe4aaa8bce73d1360f328d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=HhWNCtlUfX9I8Woy5wx%2FOi1D1nHkHIVtJlQfWyUcrOA%3D\u0026se=2019-04-22T10:21:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"3KHT7OB5T3Z6HK4WMT4HB4JHTZDNOSI2T3SEPPXQU4E4P2KQQUTR75L3UU4TZIUREFNNFKIPCV6LAOMXTMWVEPKHTI2IS6OM7ICOD4I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processmakeropensourceedition/skus/3-0/versions/3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e588eaa094014d06a6b9b51b822b72f8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rc2vzPa46rZwFdAdjcsvfmmBchKdOgNe68SPW%2FIEQMI%3D\u0026se=2019-04-24T06:13:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"A6HWGUSIOY4TKUGGCDC47PHBH7Q6NWCMGUX62KGHPGAWNGGWFJCWFUILFWGVU55GJY4RIN2GU22D6U7J6AG5EHAVZX43RK7WO2LPLUQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processwire/skus/2-7/versions/3.0.620\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fa29a2ececfb42b68d125b04f5e132dc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L5APylk3h3Pbr7zhfo%2Fd3x1fEj89ZGE5Nj0hTGX3xno%3D\u0026se=2019-04-21T11:06:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UK6IQ75QHZCJAYBHRVZ6NOIFJMURQEXWC2VBE2E5QART7NRV6BY4J2G6T4IWEFVIT2P6Y5OFEWG3TDJVGIXJXOOWUH6RD2ZDPR5OUSQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/publify/skus/8-2/versions/8.3.32\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9fcd8a3240ad4bb1863f242510c433b9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=0wgVuGtnK5SS%2BY7ihmxl%2B8y7PnSEANRPJPZA9y7ZJI0%3D\u0026se=2019-04-21T10:15:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5BV2OW7LABM2FS7A47FXQPQUOSC6O3NK3MVT3EDWZ2TTNK4325GMK2F6S5E242PLF6MNMBQC3X2HH6UIUTDTXKRDP4GPALPMGLAWGQQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/rabbitmq/skus/rabbitmq/versions/3.7.1807052008\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5955bfd9e0e64eacbc62d47ef872f6e7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=h42OSV%2FadHQ0Aaq1DFU8j1XA03N7xThe%2B7lS0iNDoOA%3D\u0026se=2019-04-25T00:14:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redash/skus/0-10/versions/1.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1bd4134627c44cffa8865549df7b94c7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hqPnBpQJJOUkQFNWMt%2BHSGUl55gFnP%2B8HlkbvrUT%2F%2Fc%3D\u0026se=2019-04-22T11:55:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GB27VRKNY6U2XVL5MJBFK2TXA7PJI5KS7DPVB5EN6BXSWHWMI2RKWIQ4VQFZ3LUX4ZS3VG6UO4M6RVP7NZQWXWJBINWACVIB6VZD5RA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redis/skus/redis/versions/4.0.1806251509\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4ab9b364a69848ec8a8a1e7461ac68c0/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2Fv3nRiCFtCqW4LFh%2FosgKd4io3%2BRddZbP8FLypdtxCk%3D\u0026se=2019-04-21T17:03:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redmine/skus/3/versions/3.4.1806101514\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c0a771c03e5348fbb1013168b1c35652/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WEI1zs57Q%2BV2Vo3lvZ98VaVJuDZ6rHqqFyOTnDcYKg0%3D\u0026se=2019-04-22T09:48:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redmineplusagile/skus/public/versions/3.4.1806021515\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/729299825cf24a7eb38e279a986b4741/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=XQQMbyBFiposXKSjRWIfaiUi4J10DjUpVW2jfZo2qgI%3D\u0026se=2019-04-23T23:42:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/reportserver/skus/2-2/versions/3.0.26\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3a965e4d83de435383989cd1afeceda8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=NaMEQruEnSunlQVdk9IRVxcr54jwsPJ27MslchAvZYk%3D\u0026se=2019-04-22T14:36:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UZB6KZLL6VDNASOPRADCWWA2JYGJSEZNHH3S7L2T5AJOC5GKUF764XVKKXTPDNWJSIFD4TDJZBPA4TH66T22LVITERFO6AKRYIADQFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/reportserverenterprise/skus/3-0/versions/3.0.26\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a45516e668484fbab14bf06293bd510f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=byZZJYHCn4mpGh01RQ4hJi4JIPZmwf%2FdeLVi%2BimEogc%3D\u0026se=2019-04-21T11:59:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PSMYGQFPYCDMA22MJVBI3GZFK7QAWYHNPGOVBV72KSNZP5CE6UTTHHE2OQDWNMLIFW3KMAQUIHHLKVWQZSPOAYSCL2JOZ3JOIPRDV3I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/resourcespace/skus/7-5/versions/8.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a27f8510d404f53a227bffcf907031a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MwEED8uZomL5ErPZTq8ZSoDWQdZLDqfig0xA0X4tJCA%3D\u0026se=2019-04-22T08:35:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"TPKPWEL6GKA26DUIOKHITTYOXS6FLHUMNSGVGNF55S2LL3FRPHLA3VAY4Z5B3IUADPKDYXRTNJ277NFUQM3W4G2QMXZGITN2SGH3SGI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/roundcube/skus/1-1/versions/1.1.4528\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0c4d054fc29c4e52a3e4469663afbc0f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Howa0abznT6guKf30stGY8hPVPVyZA9g7O5OvrzYg8s%3D\u0026se=2019-04-25T02:44:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BL4YQFBGX64Y5FNVNLMFTZUTT6WKI54MAI67K7R2E327M3RJEL5VBW2SAUMMJBBRVAMX5CVCDIK25JXU2F2RG6DGBSYKTIVIK7ZKEVY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/rubystack/skus/2-0/versions/2.3.15\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2471808a3694f74a541398f6f505888/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5ZFqNiLlqk9PgFH9TalAi55DGIVA8VxVjdHvIlG8ZAY%3D\u0026se=2019-04-25T21:07:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RKIF25AJSHD3E35BAYI7INN3AH6W5CYTZAC7RWDGBMBX3M2K5HSQXWM4WE63CF72YKMYX52W2L4LTK4B6MSM434Z63HUSDMWWKGK6HY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/seopanel/skus/3-8/versions/3.11.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/21a68d19923346fc912357d942d9bc1e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=l6yXdx94hvPkLX4L4LEAZozGzkFwXWSlptVvvivCTuY%3D\u0026se=2019-04-21T09:40:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"IQVW7LOXAPYSAULCW46AXMTAWWFUQDXE5IFKN4NDTJ6U65VK2GEAVPTCL4LRJBQ3NKLI6I33BFSCROFSPFH3CG3Y7PA4DRBE4Y2URCY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/simplemachinesforum/skus/2-0/versions/2.0.140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/183a571bc28341f6a4761ad1548b41ef/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TBJKNSSARYWwHgvekfeDH7uA4pfx5dcwLbW7jX%2Bajqg%3D\u0026se=2019-04-21T03:31:22Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5TVL2K2VL7PM2PCN23MMGBFWADWOWSPT5NDKL3LFN2KPZPKLBJBNS7VTZAPXA2MJVDVFZASNODIX2WPTBAEGTUE6EFEYXHQIZVQT4AQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/spree/skus/3-0/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5cee33a1394d4257ba59ae66ee2ca8a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=n9Ds9CLXvtV1%2BrmyvhikXDeQAqEnb5YfqY1AAPIkxfc%3D\u0026se=2019-04-21T07:06:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DHVT2WSSE6V4PCVTT6MOEHSX6SP2VMI3X7WSYGNVX73QHHFFPGM2NEEURJJPPLLIXFRJWIXWRV5PRL764XZA453OLLFCSPZ5AMIIP6Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/subversion/skus/1-8/versions/1.9.51\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/60e8196bb6764edf8aff2fbc3e8b166f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=s%2BcYk8%2FHFtSOwDMB5Cd3nnrj6DqMtr%2Bx4WcjgFJ2hiE%3D\u0026se=2019-04-23T20:20:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4L6QOI5DM56S5SYYMF2XF3T2WHOLOZ2FG3MQGS3ASFKFE5KEHM35J7PSJM4QCFQ5Y446BCVSRGOWJ7IGXUG5EW3WZQ32ULAQL4B6GFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/suitecrm/skus/7-4/versions/7.8.31\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e9ac086d50634d91a7ea3c5658c078fd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=D6PkB7U%2FdTPy7jzBBtyIrhodPdx1a%2B9%2FXJ%2FUMvwlaCE%3D\u0026se=2019-04-22T05:13:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"T4WPP7DXSHS24JGTGMXVYMVTMH3TNAQUQKAVYPB3IUTFMJ7HVRWDNTKUZTWGLJL2Z6DNL46UCENQXDVQQGNQKFLTX53CU6KBBIEG6ZI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/testlink/skus/1-9/versions/1.9.16001\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f54326dea5a14f0a9e7d98d6309f8539/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2B%2B%2F%2BpWT3Z3my8Ag54ObL8yZZ1%2Fxqq3Fb8cTmHwHdILg%3D\u0026se=2019-04-22T05:46:05Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WO2KT5HP2DXUT4A6D43KIC2HYXN6T7HFVY7A7M5MBJNCFSCQKO6CVMREBA3L4ANHMFBNXQL66XHWEW72Z7JUV54NFLYKRUHABQOH4VA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tikiwikicmsgroupware/skus/14-2/versions/16.2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b519919ade94b09aae3cefcb22dbe03/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SOD4mM3dpoTIEvs%2FbTUS%2BRAzVHNIWJNpSOOml7I3aVg%3D\u0026se=2019-04-21T19:17:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PWZDXD6Y3ELNZMJYC2DID33V3AOGR2SEZUBIW7UUC42MMBKYIVRWEZAD5DULFEQXDGXGIZZIIVOVQMS4SOSPY7HJSHAXHSWX4QS5LSA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tinytinyrss/skus/20160220/versions/17.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e689566ffb594d62a651277cdfc5b699/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gWc6z%2Be7yV26Vm5mrTun9oH1klupo4Hs08fNYx%2FNGmM%3D\u0026se=2019-04-24T07:46:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FNRMLRVSQQLM65NIVPGGYYPX7SKB6MHKTJ7D6EW37EEH554GTYQ2RMV24JXKG372XUGTEEENLEH64ZMLKKC7WOOY5LVFI4VUDXTIMYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tom-cat/skus/7-0/versions/8.0.440\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/150e2016ae7b4ccf8a93c0cd7f64609c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=4b0polHYgxf4MnPBs6u%2BgnaiWs4WpMEVuSVWwGOvP8M%3D\u0026se=2019-04-25T00:37:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GYHHP7RYGYWZL73XJ3KW2KDF3XYA4AOILACVNJOK6WEIQWLAL52GTB4UQLKVI2WHGMTTKULGZ5MDZDGFHOPALAS5VVDEVO3MHEJX5JY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/trac/skus/1-0/versions/1.0.150\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/778069a7bc894cfdac955b06e77fb4c5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=47HIb3YMcaY8wFYO%2BSWpTSXejArp5f2L0ugQuCAgjN4%3D\u0026se=2019-04-22T08:02:39Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VQHOBULMXBXDHRHNHBHZM5LG5PGOZPGEXP4OBX6S6YWBTIYBA2LC47YIWFO5H3DQAHUSWLLV4YQLRIOFTEF2JT3TKMFZWQA3RNA33RY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/typo3/skus/7-6/versions/8.7.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/98ee14a7c4a14ed7b7249eaa590a006d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=b0ybisTFumVEgr%2Fdm5SxevmkTv%2FkTeUKpFiM1KeiCzE%3D\u0026se=2019-04-21T07:21:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"NTSW6YPEEN2I2GZJ5LC3DWCBPBUYXQHFZTM7PPQA7OOKNQKLFT26DJNLWVFI7QG74BWDE3URHXWJLFAXYMRBOAYWR6V4GE5CZQEOZNI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/weblate/skus/2-4/versions/2.15.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/87af3458122044a2982855b44d484dc3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Vve2cffL4spLte5cU16jcFsvXkhic8VGZAE1mOZrgv4%3D\u0026se=2019-04-22T05:35:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Z73BLDMTDRJNBFDPSLHDLTDYHBF2UWX2JQ6U5E6I37QASZXWP36VSQ3CS3IXXPTSEYTNQ3D23TLL3MXNEESWWKJQ2GNCULGWPMJ6AMA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/webmailpro/skus/public/versions/7.7.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/669bb550e1b44e94bcfe8971e4ba40cb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cvTESk%2FA7%2F3ZCTX0Q%2BwPKyWi4pYKVn%2F6cNxFNbNcKro%3D\u0026se=2019-04-25T04:05:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SGDT5FWB7ZDIA24HWNJ3ZLWWQSW6FPEMSW2VNZW5FUMEG377CQHEDOPLEVCKE47TNXDG22YKQNHFWFSGV6WGMTW5M4JXTXA7BLLKFDQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wildfly/skus/10-0/versions/11.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/aad93b263516426b8725f29c3be5c0ba/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=zBd%2BtWW4ILXKf8BaD2x39YoO99uDNVX8uhb8QuUJBuQ%3D\u0026se=2019-04-22T07:20:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BL2K4SJL556Z5I35AAN5OF7I2UO26AQ6Q25HF7PTVFY5QZ5CTVJMNPI3D6VE7SAYIAEPQNKHEGNYIGAUHIJ5CUDL3NLFYSTLB32MTII\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wordpress/skus/4-4/versions/4.9.1807060508\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/20d0f93779904e68bf29ea69af7272f6/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Kg4M5URSM10kOriSLaCM8e6jwQ6yHpccoftHEeAB1Lk%3D\u0026se=2019-04-22T10:52:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wordpresspro/skus/default/versions/4.9.1807060508\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/86fbd19206a345e6957b28644f4358cc/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tzvT5X%2BmaKGR0bHEuhYMKMpkoyDP1uGKdGkvVul3YvQ%3D\u0026se=2019-04-24T14:25:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/x2enginesalescrm/skus/5-5/versions/6.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d755ae93def408299a7be35347af6ad/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=guAS%2Bo5fQMy%2FARninrQvfpsnfgspigY4aSIwEsxLrTc%3D\u0026se=2019-04-24T20:30:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UNCU2LIEYA4XD75K5XS2JUF7KQROMRYX246NJCTE6YWICZ4AWEVRGAB6TEZSOBN6SCSBYVNCVYWPSU5ACOCBCN53JVRHZMU6JMUSLYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/xoops/skus/2-5/versions/2.5.811\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b26f33de420a4a60816ee28bf0395539/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=87B%2Fi8V1O1BGUsvhnmokAZpQRiNeHlQwN6k3GTWwRBs%3D\u0026se=2019-04-24T22:55:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"C2KK3A7GO2G2IZB35TSOIA2RJQSM6MNUTDHRM6XK7MNUA6IUMSBYMR32EYPIXNHQJT5FXJ6WVFBLQUPYZUSC6RCPIIBEPAL2ZRY7KGY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/zurmo/skus/3-1/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d396f05994844eb7b695f2c876b6ebb9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jn%2FkaxqDvxQWvN56inbInbcxodWS6Wcl133OblrIL%2F8%3D\u0026se=2019-04-23T23:52:31Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4RVJLZ7BVTEKMVN6MFRTXH27CLIDGOKXHRKM5BHYWZV45Y7PFFVOZWZXNDKRUIA555TXMVICZDWMNZSBJR5EFUXLTLH25IUYH6GFC4A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-cg-stack-r8030/skus/mgmt-byol/versions/8030.900200.0542\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cba550aa600f4a0c88c3be093b1c2e38/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-10-04T01:32:01Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-cg-stack-r8030/skus/sg-byol/versions/8030.900273.0542\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/61c2244171cc4152bc961f1aad0f0d48/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-10-04T01:31:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-vsec-r80/skus/sg-byol/versions/8010.90013.0226\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/00028f863a22426d8838fb68a3495148/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5nahpFghUpP1GkrLkiEDM5YdFajcJNgo1h6S4DZEWag%3D\u0026se=2019-04-24T02:50:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UZ4TFGIR4NAGZW2CNWENAJFJWLQETMMSYL4LZDE6DVO2O4OTANT4PWIUVHCONFP5PPBOPNJH6PRJIKAWFWPL3HHA4R77GYHNVP2G2MQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/vSECTemplate/skus/template/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/chef-software/offers/chef-automateallinone/skus/template/versions/1.0.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/basic/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e73192f132484dd7bf8d3038488bc03c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IwTcl7oeU47yUMasXPuJqnO7%2FqLRo%2By9p5VsLJfEs9M%3D\u0026se=2019-04-22T11:03:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Q7FKTL4VWRISOX4CTDASPDLFAGCUIRFJWIN6EJWBX4SJGCRC7TPLGWLN6I7YMTBVMO4YJK2C7HNJ3AD262NJ4QSOZ7X7ITEKF52ZRQI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/containers/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/58aa4d35347947a3888c681eac1eb3ff/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=g%2FbhwAYQEjlmJ5bwZgqGbOGgvlLaicRTO5CeEXW9CJQ%3D\u0026se=2019-04-21T05:26:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FG2JJDJ5XDLZDV4M5I5PXBCPZDL5HH3OKQYHPG3JG3KMPBOGBFPMPOAG5REX7W7XIHWRWZTS24FNLF2N3LEIFPDY7DR5JXGSGYHVOVI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/machine-learning/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/eacf587346094f62beaabaefbf8d6f69/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kbcoAmw%2FTvVzDWj3PxWkkEaX5acS0%2FAe5CeDA3juIrw%3D\u0026se=2019-04-24T19:23:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"2DSQ3T3IXLC4XCTF2PNVJJBHFDUIJEG7IY46BKDIDUKQZPXHNRQGWJJLJZATUBK42VVA5C4CJZPC5W5HI76OJNDJ6TE7PNGZPU4CIEQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-66-byol/versions/6.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0a3b85b5685c4ee698afea909a7f7519/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SH0ZBOyoV5tT%2BfSZrjsCFO3kl9JYc%2FFbhPe2zhupmek%3D\u0026se=2019-04-24T14:11:50Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4NBIY5JVU7TDMB7Q6KWTEXVY6JRRYQFVQ3TLCJKSART22CVIHPW75B3URWWBNZADARQVLVV6UXYJBZS4N4WHUT2YMZB2IOHZSKZPZ7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-67-byol/versions/6.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6cdf2a9d49154106b31cb286c9be097c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5SF5P98139ytxVfYReo3MMNVATk3z96Cs2nwWKC3SAc%3D\u0026se=2019-04-24T21:12:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-68-byol/versions/6.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ed5446ee5bc34db7ade0956bc4656363/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Lctfu5LMJolDi7txGv%2Fi6lKk2h1Cd5AqFqnXlqLPAig%3D\u0026se=2019-04-23T19:36:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/commvault/offers/commvault/skus/commvaulttrial/versions/11.13.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/100a27d085f145789e939e820a9aa26e/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Dl%2FkcYIQAvtSMxqBTQzeXKbUmaOP1jTfLz5PWy%2BevEc%3D\u0026se=2019-04-24T04:41:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Debian8_latest.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"training\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/8.0.201805160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9afee22d5cd049188d1905613a02db88/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uNDVkZ34VmLjvqYnHhUSLYiQUOeQegnxiMJFhzQHJS8%3D\u0026se=2019-04-24T09:15:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/8.0.201807160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ba1d710daebb4d61bacf2ae82b6751b5/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UIuBJoSqv4fOVdCoY8%2BAglrXmlpHwET69iLZwvIZmec%3D\u0026se=2019-04-24T16:58:42Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/9/versions/9.0.201805160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bda08b0ac3194a129760d64fcef4e89f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=f8GRsVPu7LMBftOyZZL%2BYqc0OxngVXLFptYdZ1Mai%2Fk%3D\u0026se=2019-04-21T10:32:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/9/versions/9.0.201807160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4edb48208e94472483999a4a9de48eaa/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=HTlcfBqFln7GbPKtb7JnJnwSjNPX3c3ZRDoycXt0MU8%3D\u0026se=2019-04-22T01:52:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/eventtracker/offers/eventtracker-siem/skus/etlm/versions/9.1.19\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a462aa9d33e745ab8d72a33cea2ad8dd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=smWJHsUgs9ElfzfQWQoLlGeylpRBORz8PkyDUr9H53I%3D\u0026se=2019-04-21T05:36:47Z\u0026sp=r\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a462aa9d33e745ab8d72a33cea2ad8dd/Data/0.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hfyXXSHx9eL7abtki55E9h7408Bm%2FwOe2RCQak89ua0%3D\u0026se=2019-04-21T05:36:47Z\u0026sp=r\"}],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/eventtracker/offers/eventtracker-siem/skus/etsc/versions/9.1.19\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0218d6671b9544f28b47b7b6d7648666/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=joeh84dLQfwghoHQj70SpI2o6SIz4i9RdepzwOo7D1g%3D\u0026se=2019-04-23T18:49:44Z\u0026sp=r\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0218d6671b9544f28b47b7b6d7648666/Data/0.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Jxf7AKjrA4RTOIvCZSt9tMiUoCT6uOIDLHCL5whSfs0%3D\u0026se=2019-04-23T18:49:44Z\u0026sp=r\"}],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/exivity/offers/exivity-vm/skus/exivity-vm-v2-0-5/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a309a9bdb07e422188ece728463787da/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=8guzHbD2iMAHjq19lVjDkWxRZ2K0%2FM6P4NTGuoVNn7k%3D\u0026se=2019-04-23T20:30:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-best/skus/f5-bigip-virtual-edition-best-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d44a90aaff6b45e88c4a2dbd7b13dc8d/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=d9kOdZcCSWcY2AxsCYjG%2FLpBs7YC3phPmcaRiBiqD5c%3D\u0026se=2019-04-25T01:58:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-best/skus/f5-bigip-virtual-edition-best-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e9ba311d31004874b80e666d51267fb8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=v%2BMRMyBFBfZAxwOzAaI70hfTK7ruX2ELydRdJ9wE%2Flc%3D\u0026se=2019-04-24T19:28:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-better/skus/f5-bigip-virtual-edition-better-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7e128f73e71142e797ab9340eee2f33c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Hu%2FtJ8cjH7waZvSP9%2Fwo9x0PZF%2F1QbW%2F5%2FNB7gRozOQ%3D\u0026se=2019-04-22T15:23:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-better/skus/f5-bigip-virtual-edition-better-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/70d870b757f5407f89c3cc8b12cc9a85/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j30yVsNO%2BStv6Azw1M7Qa771f4C1Q06RUtoIlIapX74%3D\u0026se=2019-04-21T01:08:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/78c3ea106352460f8e917e5f2ff8db32/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=i7PmpWwOdEv6goMDw4rZ%2FcUgfQ2uRMFDE1Jk2qZBv6c%3D\u0026se=2019-04-22T13:37:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7a062de55e9e4561a56c7a04210eeee1/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=u4pjcUMOvL5vcgwMIKGKh1%2B6TlHhjp73qEm9%2BtYxn%2Bc%3D\u0026se=2019-04-24T03:22:31Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2dd8c0fc8fa4455bb9d0c3e77298cadf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ykW5psxqpzLt6MHHBaa38JC4stdbrDygi5lzLVeAvMA%3D\u0026se=2019-04-20T23:36:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7a0e7a2ea7d94f85a4e2727a8b8704cc/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=p4393qwj2ln8Xn%2BS%2F2mOiozu5p5rkWMlYcSHN8YV%2Bmw%3D\u0026se=2019-04-24T07:13:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cf15643185964f72a0506685d2de6c56/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=8dCRJrrb%2FJXRr9UoE25FgR8Oc%2B3aezSTqrP1qbSxt%2Fs%3D\u0026se=2019-04-24T05:32:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6b963476d5ad45c1832cc24be31d2def/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=QAsrtXm1WPYvyihIvWfGs1yDoFpVt1BMyo8WuppV%2BhI%3D\u0026se=2019-04-22T11:12:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/62849c5788924c39b9e3fcd46597d905/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=phh6N1hcequw2zblnSjIelckKbH9JuUibNF4vSNtecQ%3D\u0026se=2019-04-21T07:35:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/59fe214265594be793f94672f4d7ff19/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=qkVpU%2BcQ2VVYjbqYfIWbmNKCL2XEP7K6hMzfuVYkVzY%3D\u0026se=2019-04-22T14:59:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/578f563bdfa44f3c968ae26015093a6a/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=i4FjA8Wml2g%2BDf4AD%2FB6FSmT%2BmxWXerzL2JFFEwGoag%3D\u0026se=2019-04-21T08:59:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/27f57b98114242f782ea7c01a85dfb1c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=P0VxNwHQvEJEInDQ%2BLT8u2VfiEhoBjVvJFbvn094pFY%3D\u0026se=2019-04-20T23:12:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/252f555495344d2ba62a5050ec5bf8d8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j%2BVrWJymSofeQeFQ1Ov4kN%2BYw9G541%2Bin2ojych84Kg%3D\u0026se=2019-04-21T02:40:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9dbdf1f926f64c35aa0a930b44d9560b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=pkE%2BsphZtda1KB6Sss0ktqaF2btonQYP4WVQwA6%2BxpM%3D\u0026se=2019-04-22T03:01:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-good/skus/f5-bigip-virtual-edition-good-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/42a85a22aacd4a59a0066d23005ee28d/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=O8JT7w0nf6FESxNFDiDBKTjPPTAkItuIJOJiQIMOYGo%3D\u0026se=2019-04-22T06:28:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-good/skus/f5-bigip-virtual-edition-good-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2ec46135199847ba812e98617485a699/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gbnaY%2Bku4N6cJUTPmsaBFI9nvOxyhS0cJUPd6z0qmto%3D\u0026se=2019-04-21T12:39:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/fortinet/offers/fortinet_fortigate-vm_v5/skus/fortinet_fg-vm/versions/6.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8ffb13d0b3514892b333f653b0a0d779/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TLdUbNbV2FagiLbi%2BXr0caHZ5Q2BjwbdZLB%2B11a8lqM%3D\u0026se=2019-04-24T20:28:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/fortinet/offers/fortinet_fortigate-vm_v5/skus/fortinet_fg-vm/versions/6.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/00ffdf36a69446e1a431d9c08f6a43e5/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IjXdhUo7ly0NADUmX%2BPx0GjPTClqhj6XwEsq%2B5Al%2FIo%3D\u0026se=2019-04-24T20:29:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/hannahspublisher/offers/hannahsoffer/skus/hannahssku/versions/1.2.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-13T08:20:06Z\u0026st=2020-02-13T00:20:06Z\u0026spr=https\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/hortonworks/offers/hortonworks-sandbox/skus/sandbox25/versions/2.5.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ff47b22391074321836bf01230362b1a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AP9Cn2cgziUP6zTJDA2NXjpwx5fCtpCD6evMuuIvofQ%3D\u0026se=2019-04-24T10:25:41Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PYEDSE7MRMX75WA6BLCOXAMRE3Q7VXMFMBPXIAUITESBRT5XSEKW3EKROGGR32FYDDOR2GBG7KVZV7TD22PWKJB3SILALNDNDLH53XQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/kaspersky_lab/offers/kaspersky_hybrid_cloud_security_vm/skus/khcs_azure_byol_vm/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d0fbd32b879148009308d304d5c73c00/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6VdeX30fPUVAGKqWeGLxqZoEAD7NOLyCXMKvyOQ6LrQ%3D\u0026se=2019-04-24T06:26:42Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/kemptech/offers/vlm-azure/skus/basic-byol/versions/7.2.430016425\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d08f695522242c9b0de85842e35e1dd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=o7avaX5x%2FsUxgsRA1PMce5w9jmRv8XzkDetn42%2BNoMM%3D\u0026se=2019-04-21T00:30:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/noobaa/offers/noobaa-hybrid-s3-archive-05/skus/pay-per-usage/versions/2.1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/05bdcf26c6f74702be34817d537f24d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=negJvoAuNnrw20gxqhT0vP8tHOxDGa6Ps8vrDQEhrKg%3D\u0026se=2019-04-24T18:29:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"R65CBNLVR7YUTMBOGT737INIGP6RTEERIYO7UYI6WKEQVGPO4HQ4RS3KRLCCPTMW2FUDJVRBKSSYNTMWYXSNMTPLCDMV3CF4COUWSFA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/nri/offers/mplatmc2018-vm/skus/mplatmc2018-win-vm/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a9495be1b5424734b9fe9675ce2849c2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=wOvRZ81XPKGLgCMuoFk071z5tVOPHsOoULGg8VfdB1k%3D\u0026se=2019-04-25T02:59:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UVH7FNWK52PITIBXHMPRN2WVXGKZT6CBKNNBY7QBONZJKFHX4VQ5LGAWRGFPNSEKEDFKTDWP3XHNEEMI3RRWJ3R4EJZQXSVEZS7KBHY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/paloaltonetworks/offers/vmseries1/skus/byol/versions/8.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8e1f9849346e4a6bbedf4920148e3dd0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TelBGCALZEP5V9cvbi8Bm%2BsMHr8JhPkNYQp11kjHOaM%3D\u0026se=2019-04-25T00:23:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SR23IDILM4Y4VFWYPDJBDOPNU5T72ZR3ZDZ6HGPZN3DSWT6NP4F54QZUUWRNR3YPTWTL27LHYPQSIMB2DSAZKS5QHRRBM2VYTMPUQCQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/ptsecurity/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/ptsecurity/offers/ptaf-vm/skus/byol/versions/3.6.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7223baf4841b42e993662254c2589007/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=P2Q4ef6T4cu7iKNlrNNtFhC1xSlggWj8txuw2KSVlNI%3D\u0026se=2019-04-22T14:47:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RAXJLQHAXDCMU6GVL3G7FW7OQPN6PY547X6JUTQQEF4GLXY7R253VQC3WJAKGT6HBINIXX67Y3EH7X5O7P4OP7QQHDJG2O4JV65BBXY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/puppet/offers/puppet-enterprise/skus/2017-2/versions/2017.2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d61a5cea5f9f412682790c2e73528dcc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j28AQTjHnfMZm0g9DX0jFvHe0J37PWp5fK4n%2ByDUvyY%3D\u0026se=2019-04-24T02:41:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RICT25UZBGSXPU5G7CEMQLWN2HAUZSK5GNUBNBQ5DMPR2YPRK3JIHPNZNS6DFBSP3O5QDTOPZDWFCDCN4ONQ42NYHGM36Q53QKM3OYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/quest/offers/rapid-recovery-core-vm/skus/quest_rapid_recovery_core_vm/versions/620.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cd0781a5b1314b81915a86aa3430ad88/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=n38PaaDjxFiAUI6YhLoIbask9AqdWTQXYhvieg39V1U%3D\u0026se=2019-04-23T17:19:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JDJ5IS5HDKFWAZYHNAXOS26GA2W6QLSSOBONENPU7CM6IFK53KXJN3GXWYLS5TQQTFX7MZW2N2PDDAITXR5KV4R4OMHIF34ZMDUBWIY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/tata_communications/offers/netfoundry_cloud_gateway/skus/netfoundry-cloud-gateway/versions/2.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0bc4fe0560124ed192a5aa8c7cffcf5b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YrbIlkFl8NtJFRWp%2BnUXf1yx1fZJ0ep82GxZYUNVlS4%3D\u0026se=2019-04-22T07:09:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/tata_communications/offers/netfoundry_cloud_gateway/skus/netfoundry-cloud-gateway/versions/2.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ac4900e34ebf4d7282950d721113ec13/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L5anuyefUAWDZlwq9kH%2B0iHTWQP%2BeMwtmE6gtyCUfMM%3D\u0026se=2019-04-25T00:07:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/thales-vormetric/offers/ciphertrust-ckm/skus/ciphertrust-ckm/versions/1.0.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/07d890da45eb44d8ada0d2e00c4a4f6c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=d%2F8NyVZiyCOIO%2BNBkoPw9n%2F6pjkcgdohlTabbsfC7Ss%3D\u0026se=2019-04-24T17:36:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/zerodown_software/offers/stackbcaas/skus/stackzdsbcaas/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/544c62f6ed6b44e68368a3dfb5fb9598/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nnYIBZZ4r5wE1bTGL%2FY3KKwXA879esLTrJF%2B%2Fnsl7m0%3D\u0026se=2019-04-22T07:30:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-14T06:22:13Z\u0026st=2020-02-13T22:22:13Z\u0026spr=https\u0026sig=EOaOB00ALYHrt14nFn%2BFMNEdXHc7cFfvLpglO3m%2BocI%3D\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Failed\"}}]" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetPlatformImage+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0?api-version=2015-12-01-preview+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["21"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["3b5deab9-9281-4605-9480-b2beb0cb305b"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdi2s/sjOfpt8kJW+7pJEBxG+AYcQezfI9SIV/CDhNgpBxRJBb+1ZULOOtzkazXfDhvEWcDgmghS8m+Shm6fdmch+4hgxEoex6097OrQoXIbbYQiuQqq4MY9RutevVP+Cd2O1wEajBrPesAuiIdVH" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13725"], - "x-ms-request-id": ["3b5deab9-9281-4605-9480-b2beb0cb305b"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174624Z:3b5deab9-9281-4605-9480-b2beb0cb305b" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:24 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["567"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["22"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["bdcc7398-fe13-470d-9087-dc5fbe4a0a8f"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQYrGXd+UCK2LSIoKJlIRk+0CfHnWLRdTL5bX//zzeZksgT3UpyvZ27Ms7ZLqg48Ig0Cf1DAlb915HHUMQvSuOMljXe8aKVdplRGiQaVn2nA/BpbK5F35zn1zEP989OHf/AJAAwpv7p56HNcA9rE5" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13724"], - "x-ms-request-id": ["bdcc7398-fe13-470d-9087-dc5fbe4a0a8f"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174625Z:bdcc7398-fe13-470d-9087-dc5fbe4a0a8f" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:24 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["196187"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/ElasticsearchClusterSolution/skus/ElasticsearchClusterSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/JenkinsCICluster/skus/JenkinsCICluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/KafkaCluster/skus/KafkaCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MariaDBwithReplication/skus/MariaDBwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MemcachedMultipleInstance/skus/MemcachedMultipleInstance/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MoodleMultiTierSolution/skus/MoodleMultiTierSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MySQLwithReplication/skus/MySQLwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/NodeJSCluster/skus/NodeJSCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/PostgreSQLwithReplication/skus/PostgreSQLwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/RabbitMQCluster/skus/RabbitMQCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a60bf91041304dba9c2613e217c8a8b7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=1k%2Fn0l8ePLPR94qxqG6Zqz4tmxq8KaydSdHJnOwGpdo%3D\u0026se=2019-04-22T05:02:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/WordPressMultiTierSolution/skus/WordPressMultiTierSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Ubuntu1404LTS.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201808140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/08acaeee3c7e4cc394e9ef81790bda63/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ydNNSz53UkhZG1faRISu%2Frjuw3fQax9DKgBRweZ2Pm4%3D\u0026se=2019-04-23T22:15:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.20180818\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/41281233660241f9a8e074b74f0d5abb/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Qk6P%2FYD5HfFV4%2B6LVzhxBZ7ynbPQx6he%2BYp9N%2FEnCs8%3D\u0026se=2019-04-24T02:31:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-14T06:22:13Z\u0026st=2020-02-13T22:22:13Z\u0026spr=https\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20170811\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Ubuntu1604-20170619.1.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/411e6e144b774457870f77f8fbb95a80/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=9d%2Be%2B%2BNGSnLb2p2AdIjeiXO3XHY%2BHhsLR9BkI%2FAoybA%3D\u0026se=2019-04-25T04:15:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20180831\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7e3878d7cf874ecfab6eece1d0553fce/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UcbqQHS8NNcE7Cy5McWPm%2BSF%2BTCd4MhGL5fyoZ4nIM0%3D\u0026se=2019-04-22T14:00:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.20180911\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/027b00815995491a8986f8ff7e16c38c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T02:20:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CheckPoint/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CoreOS/offers/CoreOS/skus/Stable/versions/1465.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0e40b5a886604bd5a6e153c9d943e47a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=eHxmjiNG9pvjAckaINKQ%2Fu0w63TYyqqJUGBVxgj%2BkD4%3D\u0026se=2019-04-22T07:51:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fdcc8adcec6b45ca914aecd18b2d8dbf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cz03ZesAbyd3hsCTdiE4nQCaiI3nvOIlOCz3pcXQxKs%3D\u0026se=2019-04-22T15:19:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/6.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Fortinet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/411d3bd4a3de4014a3d3eb7d187beed8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T21:55:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/KasperskyLab/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0e53c22baa894df185b51f0a987c8ed2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=huwHQlB8xANDiG62CkCd5kLLPFijNUVCOc%2FNQsAgF88%3D\u0026se=2019-04-24T11:04:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-CentOS/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d84feb2939954cb1a3c2fb460754b84c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Gn7yLA%2F%2BF%2FhS2ISuZYXceT7ycS885MgXMlzCClwIVco%3D\u0026se=2019-04-25T20:24:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026060001\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b7f0116949540a086c3d4c9b251222b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=19lvx6FiSwUn8I%2F1bfbxazUl8wcR3zecXDVIv3FCL2Q%3D\u0026se=2019-04-22T08:45:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/96abbb1d8d0240f3b293955633802812/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AwnlJAFW7lu%2BThnqazrwlV6mKt6IYDCnPLoF%2B%2Fpe3VA%3D\u0026se=2019-04-24T11:38:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-WS2016/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/810b05a219ab47f484d6174133a11159/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=yWnIrRGFQKWofPbPHYAwYV2H6KyH3DMnvsnonfNJWlA%3D\u0026se=2019-04-25T04:23:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Enterprise/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e287e7de89264d4fbbfdf01acd3c39e1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=fkvV%2FI1a7H1N4HVYl26Lez8j2ZB2bR05QW8KT0bUaoQ%3D\u0026se=2019-04-21T01:33:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Express/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f5fa664ec7141b9b2772528b3423942/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=R2skFCHjjh4mb2uq4OPpEi5Da6baoID24BwAwaCWJrg%3D\u0026se=2019-04-25T20:39:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Standard/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b673b3e0112473eba61d6de49ae0a19/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=FP13kvLeTnyWQI6sScc%2FL4D4ed5bT6UGCylQnVPiRGE%3D\u0026se=2019-04-24T12:23:13Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=e3K%2B5IAiUhqQBMMpWDc0huefPITFPlhGfJAhxbnNj8Y%3D\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Enterprise/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d200e6821950484a8d2014f9ebb1bb9b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=yRoeu6Mf9pD3x%2FgEBntVL%2BRIdPnhk%2Fjd30qaemtzdL8%3D\u0026se=2019-04-21T13:02:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/SQLDEV/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c0561c31f0e843efbf65c4ca59a3705e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BCQQB2mGuTPp4Jrlm4DxOVjiC2VsB%2Ft4mjQUOUY8BZo%3D\u0026se=2019-04-24T03:43:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Standard/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bde535a023f54699a2ee96f58574352b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tnmrSNP%2FBcFdGDY7VIB2USaSoTGccwz0f2t50AMcEjo%3D\u0026se=2019-04-24T08:00:23Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Web/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e444e9cf06044fafa8ca87fc825e39d2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=W9WW%2BPuTjb2f25%2Fn%2FhQs8gWYDWZ0umn8DgVG%2BD2XHtk%3D\u0026se=2019-04-24T17:07:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/83d1b9ea66e94bf191d32d4747e5d244/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5%2BVt8IbYCDgW3cpMB1j31OR8oMzQRoVAq1wDkvqMgD8%3D\u0026se=2019-04-21T14:52:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/73c512f0960c454c8384136874f024ae/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=D0%2FhFewg73BV0yxvSEIp84NbhtTqkrhV5BPD0wrTJCA%3D\u0026se=2019-04-22T08:56:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/SQLDEV/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2531eba967bf460ca26be30ff461035d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uX9n7oJujgZhxJV%2BM4vM2eSwbu1n96ZjfkPgD4tHpxM%3D\u0026se=2019-04-24T21:27:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f78eae34cf84343a41dbbec0d3bd5e5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=12CJlaVDbbNlM5CRvsfhYvbmzs0nHvRbFmqpLut2cas%3D\u0026se=2019-04-24T20:41:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2a7288a69064feda3295cc7bcae3324/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=pJ3OrXOnSbH0zgB1otVSvZYL%2FVpytADhYRN4t%2Fcnylc%3D\u0026se=2019-04-24T09:30:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4271130d8f364281ab8a90ed0e08adc4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=laEyOKVmGiQhbhQgpA3iD0SIZGggFueZ5%2Bqmo5U3XMU%3D\u0026se=2019-04-21T19:40:22Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6f1862ef16d745078e41c2302798dd21/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=qIYlYap7%2F7CVmTGZEcVQQ1J7hDAAnyG%2FIoEy31YWi7g%3D\u0026se=2019-04-22T13:15:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/SQLDEV/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5e201cb293ae4dd391ce139c7f86c2c0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KA7THbHIY3svdwW9bi80fmy%2BnhE1go856w5ipKmJURg%3D\u0026se=2019-04-20T23:52:45Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/58d8daf45e814801972fa307a27ae367/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=G4QUTmqGqW129Fz%2BGNmggd0p%2FLSw9JwsDkHeTDWHE1w%3D\u0026se=2019-04-24T02:00:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1cac9c14b0294b7db2be83c8c57830b6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WsbVE1z2RBBjk7dKdY5eR%2BXsL01pcn9IaEDuYlQcoyk%3D\u0026se=2019-04-22T03:15:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a3422bcdf474788a7764ef20524cceb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TmLDJ%2BMSEFRy6Q6%2F%2FQzyM3suTM0SzoAwCijEenH2eZs%3D\u0026se=2019-04-25T00:52:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7fbbe047e9954f7784aeafc1cda3792b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uy5cE9lc%2FRr%2BKgazawCOnLCVEEmSSmGO9sIMHy3IsoI%3D\u0026se=2019-04-22T10:42:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/SQLDEV/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d99835a0b3dd49ae89044a1d9e29eabb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TKtZ4FDlspgBfwb4EMXo1rQwutKK7Swq0UI6yCK3H0Y%3D\u0026se=2019-04-21T08:30:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8c8ab26516044625b1eebd96f534775b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=A972CAbVYOq%2BTQHOCTCenUZ6SKQT%2BfYt0chyvb6lKis%3D\u0026se=2019-04-22T08:24:50Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ef35e9b6f72042b4975308b9fe5860d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KkbhoHgIPx7LMQEOv8uNqJDyTX%2F5KNb%2BZduroV7jiV4%3D\u0026se=2019-04-24T19:47:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Enterprise/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2d33a07cd13643ecaefc1c8fcf43a282/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jbQQ7wotE7QQ01Hu8yKFq6Wk4gWgE9u8bbKQjCq72P0%3D\u0026se=2019-04-25T01:14:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Express/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4e20599a06a341bbbd19d98584ddfaee/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=sIgrk9ldI6DqYLWPvaJKjyShpS8TusKJNdnJaadxOLU%3D\u0026se=2019-04-22T02:09:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/SQLDEV/versions/14.0.1000204\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6218e0d321a84be9b544abe8f37478cd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IRE75Oe3%2BvxY9T2EBaP96eOqCue%2B%2BKY0P460ZwwyOfY%3D\u0026se=2019-04-25T21:15:57Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Standard/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/59940b6d0bf646e49998ae2d9c99aecb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hhLjv%2BHMFGjEDf3YFrvhjdIT0dYjJd09ygXV3fhlFaI%3D\u0026se=2019-04-24T16:08:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Web/versions/14.0.1000320\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9401a0f0afdc47158e9d26c7b59523ca/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rnPNcfA95URGpZHlMExTmKVIvr88PacRssUfq517L%2BQ%3D\u0026se=2019-04-24T22:11:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-Datacenter/versions/3.127.20180216\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1c04b103b45c4fdd909bde63c08dba07/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MVW9chumZuL3Y6w92mSOUVcsN69QH%2Fvt0LIYX7MZitE%3D\u0026se=2019-04-24T13:10:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/WindowsServer2012R2DatacenterBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/df758a00508848fd89ed21148f68d4e1/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=DsD1saMbwQZimvmraPDIhqLWsoC1gHbHXMxvIiazGCc%3D\u0026se=2019-04-22T03:44:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/de7bfbcc7d9e42f68953c742f2b7ffeb/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=q4QN%2BkhbeWt6fApnINHWeUTvMB6RVzMXnH3adimfrhU%3D\u0026se=2018-11-17T21:55:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Server2016DatacenterCoreBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-Server-Core/versions/2016.127.20180717\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2dfbb61edfc0470987695789260b4962/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=DAbE1JrKCehbsboK%2Bl2nWveH5PqT%2BP4ZrwVVxy3h5iA%3D\u0026se=2019-04-21T03:45:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180820\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3caeeabf21144cf38e8be5507fc791a3/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=NdhszFTFZL3I8TJaeXjYuHGpk3jOzHy75543xrX%2ByWY%3D\u0026se=2019-04-21T23:48:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter-with-Containers/versions/2016.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cfeb4f835a7a422ea62688e9c21d1fcf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=xksf9pNKF9nHju4m2HBZ9GXvrhzQVdYuXfTEmEiNWBw%3D\u0026se=2019-04-21T22:31:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Server2016DatacenterFullBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/db7a7f8f517446f7b84585493603aacf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uvJk2fw6nN8KSydqYpzB0ykmlTMRJTqjZWNW226x6v0%3D\u0026se=2019-04-22T12:19:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2016-Datacenter/versions/2016.127.20180912\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3e2a7b9ff7f94b14978e1bb065de5a7b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=dtm%2F8BeU6ivA%2B0VQIP39ybwtrslE3lhUgDk8dhol4%2BI%3D\u0026se=2018-11-17T04:47:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2019-Datacenter/versions/2019.127.20190522\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4f701d79e87c4800be7f144d2186cb33/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-09-05T03:45:21Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/AddOnRP/skus/WindowsServer/versions/1.1906.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2f48d49354794235971d472ac7145388/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-12-05T17:37:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/66a927e4774f496597eae771b36406bd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AwpvJSKWG0CtoFNXZWdriJ5CkB4GJgT4uO1QwTKtEtg%3D\u0026se=2019-04-24T00:49:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/0.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a9120cdd68514772aef0e52889a97c78/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hockDbp4QkLasj0kQjT9WUclaSbhjlpBlQhMMNWu%2Bi0%3D\u0026se=2019-04-24T00:50:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9159eb815b6345ad938cdbb621472dfe/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=RHQquuS1dJDAfDoWa6fkRlU7RMI%2Bb5yOFzka5WXBBic%3D\u0026se=2019-04-22T16:09:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/VMSSGalleryItem/skus/VMSS/versions/1.3.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS-LVM/skus/7-LVM/versions/7.5.20180524\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d001446d7e384d8a873fffacfa76b15b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gwwz9IK7iJQ4mfBqhA%2F00UuyW7FOFgJwLpl5SVTzWBU%3D\u0026se=2019-04-23T17:02:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.10/versions/6.10.20180803\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f0e5f463c12f41a7869b722f8b2aa220/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cGHcWbSy9lf71yVBjwceFDjNUS3zcqEuSTc2z5%2FPkuk%3D\u0026se=2019-04-21T07:41:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.9/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/OpenLogic-CentOS-69-20180105.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"training\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/6.9/versions/6.9.20180118\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ae60540fb616438696923c45af54f15d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uLxmnW4eNczWBjGJ0QvpWZhCTrxZ4YuB%2F3qre1H9%2BGI%3D\u0026se=2019-04-24T11:22:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/7.3/versions/7.3.20170925\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fa72dec1191b46059a29a2d1d736c65a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YMFSyn%2BFEvD5Q04cCXNQyBkR4NJ7dzsjKf8lHnMXvfo%3D\u0026se=2019-04-23T16:35:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/OpenLogic/offers/CentOS/skus/7.5/versions/7.5.20180815\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b5701417279a4285a795cfbc1eb95d17/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jwkYyzGUExiL6DRaXblBw%2FbL48RK8bYTp452KjEMSSU%3D\u0026se=2019-04-22T01:35:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Puppet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/11-SP4/versions/2018.07.03\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e7069105a1ae4fb88dec5412d76f57f2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Gw8rs6O%2FBFEIdKbq6LehE7pzd%2FbMHAhwVujYMl64KJ4%3D\u0026se=2019-04-24T11:52:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/12-SP3/versions/2018.07.03\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/dc7a6f2785fa40d786502ee72f32e5d2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2BRTsrNg0bQD8AqdGaPAotyYys60n1lOr1kGnWYVN5FY%3D\u0026se=2019-04-22T12:06:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SLES-BYOS/skus/15/versions/2018.07.16\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7f409d37db95459fb16b6e0f4454ac85/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TYqlr80oiBJLCzEct4CiIDynzL0t7IRpqiAaeqTydlI%3D\u0026se=2019-04-24T20:18:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/SUSE/offers/SUSE-Manager-Server-BYOS/skus/3.1/versions/2018.05.23\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/81016e8ef9dd4fdba8dd8ef51fecc5ca/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uHzb3x%2FVUhg36DxVTdQCTrCCHVV5aoktjnbjwMfHLFI%3D\u0026se=2019-04-25T01:07:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/a10networks/offers/a10-vthunder-adc/skus/vthunder_byol/versions/4.1.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b4d19cd6f71f4d4b998f3c417eab8132/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=aWxjMiO71NzkBbQ9urfbLVcf7dY6UputTkAqds6Eyjc%3D\u0026se=2019-04-24T01:02:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/arista-networks/offers/veos-router/skus/eos-4_21_0f/versions/4.21.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/337487d0e9e24757912647bca4531c73/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nwjbd2El9Am25r4zFw%2FwA2UPMdyUEuUsT0teQ1fWbEs%3D\u0026se=2019-04-22T15:20:01Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-app-sec-control-center/skus/byol/versions/2.1.100803\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/211d33df3bb641e2bc4070bca48b4f14/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Spp0sG19%2F9GCqyBtjYeobDRVT%2Bh8a3eaEI4Exln%2FWhA%3D\u0026se=2019-04-21T09:07:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"NVDYCK5Z5E4PXIOSOMYBGMMY2P6FURFDPQ3FQYJZILWEQ6FMQ24F5DBWA6BWHPPAT4FEMO2R4ORKO6AS2OVMDGASLVVNHJJTUSUSV5I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-email-security-gateway/skus/byol/versions/7.1.100405\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a696e6a8f38341d59e02cf7ee6e644c3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hNlSfCea6YTYZ62GWlzq1HTMBKIq1C5JMgSpxWzqYro%3D\u0026se=2019-04-24T14:38:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5LJ4GJIS7FDXKIPC52U2QHQCCG2TYBW23DAXF4C7T4MT47OH6HPZ4LLK5EN7DQVCZFTAWUGOLVXY3RZ4JBL35XQ3QIHJLFIHBWC7GTQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-ng-cc/skus/byol/versions/7.2.205701\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d75baf5403c422ebea0ce3a2a1141b4/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TePc0Nx9CMUMpIx5oS6ydr9E%2BXEHvftADEaAGmsrhrE%3D\u0026se=2019-04-24T23:02:38Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/barracuda-ng-firewall/skus/byol/versions/7.2.205701\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4047d7fe588e44f8a93858954913fce3/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5ZJXinkOh9mYRjTYTOJAf0FAxMpTYaKMaDlr3166%2F24%3D\u0026se=2019-04-23T16:43:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/barracudanetworks/offers/waf/skus/byol/versions/9.1.001502\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0d50346e3fb1447886153f14ca5880da/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=dTtif%2Fs%2FHp009MJDSHJm7axB5jMExUAmILaxCLG1L2k%3D\u0026se=2019-04-22T06:42:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UAAWCQTKE6QYUG3H462OEWMTVIND7FSYERZYYW2G5CRESODI3QQABXPZEUDD2ZNU7LSKMR7VOD4M7YWJVBVEUEOVSJVDN25UR73YB3Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/abantecart/skus/1-2/versions/1.2.100\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/347f01ec7188438fa67ef00b29d8c4e7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=mYM75vWt5ErOLrBYF7xD9VToHa6Fs9zdRmA1jMdeP%2BI%3D\u0026se=2019-04-21T21:50:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YEBM5WXAGKYT7TRSJ2UXXUTLS5ZXPOWIGNC5HWD72D5LPX45OPQ74F3SV5NLZGKKH2OKB3U32JHBFXJAD6VRV5QLH6QGQ7KNH4ASS2I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/activemq/skus/5-13/versions/5.14.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b672d164006a47599c82d082e02bd47e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=T3esbLAZmDelBZcIS57u%2Bb5I9zCBkR3Ib1Rzy4TQGX0%3D\u0026se=2019-04-22T04:52:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"6NTRW42IUUVRUASZIVLEFNOKXVBXV2HXGKL2HN5NZ2AJCCQEG6YDJX2AORBGKBULWLVW6POZZJRS46WFESOS47PC4LOTEFYDYZRHYYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/akeneo/skus/1-4/versions/1.7.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/40a9ec1360694b6c9e10af1d40abff1c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=R%2FKeRzaOJ0dlBWIw2%2F1t12l19gjQB49mv30S9AlfOSQ%3D\u0026se=2019-04-23T19:46:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EFCXRMLFM4PTCELYQFIGCID4DOH5FF6TL7US6BVQJI7YHA7WVT7SCP4IXUCJSA5JL5OCYWF6JJGS7NZ3766GEYDBR4BGGO3MNXIVF2A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/alfrescocommunity/skus/201602/versions/201704.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b182a4a3ad0415c80db0bd9c6f81c58/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=w8XkEQGUDr5PXj%2Bdijhyg31lEVL8GjdQaK3yONx0%2BBM%3D\u0026se=2019-04-24T22:03:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PWYFNE7FC65D6CK54OR37SCQRGJW7YW2KWGRXIHAZRTAFYOPDMV7JYFMZ3WJ3WNX6DKEKX4EUQNEDWDX2X7U6ZWJ227K23GJ5TB2UYY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/apachesolr/skus/5-5/versions/6.5.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/738cc1551cbb43c4b91aebba9c124b8c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UVkpw7P%2BXZJgFw3tet3rhb31hlWta7i8a5ULZEFDVLo%3D\u0026se=2019-04-21T00:20:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"O6OOMBWC6EP54OPAD6UOCOEOBOMVUTVAQ6IECMEH67ITHDMRWY6OFLMPKURFKHFF4SFHAWYLZ62WETQJ6MM3LZ5CEJUVZCUHZZA6LCI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/artifactory/skus/4-5/versions/5.3.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a07312ae4a644e8f9595480de3f47b34/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uafHwTWKOPpgRf3dFOuXoJVOia0XK0AIJH0V4dMe%2FoI%3D\u0026se=2019-04-22T16:10:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LEV2VYDM2F5SDJXFAKTJCQ2EJH34X7GVQQZFR7NM4M6FKZMJOOTT5L2IF7PLNVT2U7H3OEBSHQADINYJ6AJVGOO6K2IPY5L73CTGTSY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/canvaslms/skus/2016-02/versions/2017.4.22120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7631d0897a94492cbdc91b29f1335ff9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=EW4Z8yLpNttwdQw19Oysa5cv54vTwcEaHJHnfSIsfUY%3D\u0026se=2019-04-24T00:03:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DTP7LZBFEIYGHXEEPAPCTOK54QV3NDHCGPYVUHVQ3DJVT6UCTLE3V4DV5P3G442UOPHE7VFFV4PH4FTEZJDARV5D74OCV7XYE6HAZYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/cassandra/skus/default/versions/3.10.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b965b309a8014fc894d773a74947034f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cHaiU7LIDlQlPeH8RNlcdvEUFj2leT7wil2Wskgzmno%3D\u0026se=2019-04-24T15:17:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YPVB26KOT2GMN4NWLZTHTEDODUG2C3WFZL7STYSBLG3K75ETFL4AFACJMOXXOCTX4H2X7566BIPYBRRNUF72GGUMLCGLXQP4DPS5AXY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/civicrm/skus/4-7/versions/4.7.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3c375836db9843b99e487bdd3793159f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kT%2BS1WvpqHWSPy2rE6itqitNTLeWTpXmGed078yX9Gk%3D\u0026se=2019-04-21T00:11:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"J7IPLXWHOWP3HKXS7VEOKGR2PBJZP4S3FFJYO2SH4LQH3I5LH5ML2WCS6FD3SXEFJPD25SW7246RKTU6OVIHGVXW324EENA5VZSI2JQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/cmsmadesimple/skus/2-1/versions/2.2.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/621b7af6be804119aba9e55e6db84def/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IjPGeHnu8EFZyt8iL7uUOy%2BNKuTVthe%2FYkZnoGGXyQI%3D\u0026se=2019-04-24T11:05:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KBNXH3YTGT63Q63YHCRBYCXTG6LK2MUSERCVKCXRJDXXCEWM4SPWQWZVSPNJYOXRYA4CHZLBB24EZWM3EPSHB4XCQJQ45ZD7NQEDHJY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/codiad/skus/2-7/versions/2.8.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0d9c2264b4b846b98c811b9f6ef3e7f2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=khIxIiw0ZOw1ohsp9uOA4Kk3Tc8Jtqcr2FQbJ%2Br9MHo%3D\u0026se=2019-04-23T22:34:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EIOEYKZNBWRKDDU6SIB4PNZXY256OGIWNMR6YRYLFLM7GCIQ5G6LDJTIQD7DWWXRMVH7RND733LKVITY2HEWPL3RKFZ7OGGSI3XYV6A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/concrete5/skus/5-7/versions/8.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/871015f26ef44e369a8bae53291cfd87/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hc8RbW93NcjxTV5U%2BPSfFE5kLBeUcREg6CJ6TUeKriE%3D\u0026se=2019-04-23T22:45:00Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FNT4HMN5P5YHUBF34X24FCJYUDVFABK6ZVXFUXFNSGJ5GFE65R7B3EWT7AQVCME3IVHO5XTPNZRIE6NTFAOZJKV6H3LVT64L4KYESXI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/coppermine/skus/1-5/versions/1.5.461\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/707cf4735a474c9a89772420df785057/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AzcBNNRRKef8VpxLJj2njCtXU%2BJTMCZNKUEdeJfV%2FG4%3D\u0026se=2019-04-21T21:34:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"R7TPWFCIJREFXH3B2YUZTCDUTLG6ULKCHIOIEVO2IK3UJMYKX5A4AFRDXMIVJIWTNLCBB65UIJOCDPKNJVEPWNBQV25X3RA6E33PAGA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/couchdb/skus/1-6/versions/2.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d33ad559f0e746389cc6bf5d058e062a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kZcNTTSWvef3zBEirBEghKYYQ3%2FnuGM55WM6WYlqe6c%3D\u0026se=2019-04-22T14:24:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UXAKYALSSOZV2EQWTWR6SGSGOQZD6CZE3LQ22GN2LTTYSZ7CQDQ3XED4R7X34XS4ELHV2P6GALY7Q3AOQ3MYMCKPSL6YITQHD64X7DA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/diaspora/skus/0-5/versions/0.6.600\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d74e60c1b1c2402c8d6f874b1e1935bc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Oznu3mCWDC6rsaBkHAfzjx2knSWgX9CFsGUDAXySD4Y%3D\u0026se=2019-04-24T21:56:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UMZFWP6KXL3CB6TQXY23QSH6PJKBFAFGRBUFZ4P4BYA6VA3KEIJBVNVQNY23HYBHA3GVG5OBCJWCOOX2SY6TQ2AKU26CJWQIYVLHL6I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/discourse/skus/1-4/versions/1.7.80\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/995895798dcc4b4c9bbe1d0a46b69a29/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hnZ1EXzZtztth%2FT4t8DfR2dZsdKd0CMKm2VOP5md%2Fdg%3D\u0026se=2019-04-24T18:20:38Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FPIFN6MJCDPYEENFZTMRDMUYJ2OSADDIKMZ67NKVTASZCYRIGV6WUH34DSCU7CROOMC26YWU2QUDRIIJJ3OS5AMPOMPHO3G273QP5XQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/djangostack/skus/1-8/versions/1.10.60\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/369f8476e0254895955754dc85d7c3ea/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MzRIkAtsnExGb3mAdg9pe9ItuioiDWpCEad9hKUSsA8%3D\u0026se=2019-04-25T03:57:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Y26IANL5G7VB4NMUZ37XL5A6K2Q7WGSP6QFSFXKV2QKMEBF3MEHFWNUNIZQHPJEF7MIJ2MS4JPOBNWLVH7PAXUNYPZ5GB77744FJI3A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dokuwiki/skus/20150810a/versions/201702192.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/72b92e119fe340468a2845fbcdd6d90f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=EcHQGz2Z%2BM0sp2isN1ZFuQUh42%2FEGRAmx76XRRgJjKA%3D\u0026se=2019-04-21T11:24:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"U6KTO7WWX6SA72MPEB6H4UVAGT56J5DFBV7UJWEHN66EDMGFNME2JOLMAPVDLH5CM5PJBNJIUYUKW7XXZTRHD7YYKUC22AZA5W2APCA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dolibarr/skus/3-8/versions/5.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b1f426e3a9cd475287f9e78f6ec8a443/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j%2FjhM2PJ15EBiUgbS1GAj1TqdlbVHynqd7gwbGEB0yo%3D\u0026se=2019-04-24T12:08:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"3DWLMZJGURUHFVIXLEREBUTJYPKO7ANYSIY6PGFLKFJ6BKIQUCC2AWGIMDBARSOEOVFPRJMHU56KCA67XMBSNUO2CSETRFLVLSDX44I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/dreamfactory/skus/2-1/versions/2.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/797bff580a3a4f998b4150f486f17247/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L1xFJn2S94l0AJ3Kc8AnaSZ%2FhgcyqsKbxII40fQmexU%3D\u0026se=2019-04-24T19:54:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"T2I7SDYJF4NJIGSHIBF65VXEYSWYHCRSIFTPUP6BPJNN4L7A3AIM2MLLXVQGPGH2A4TWQ5LRNRI3KFW2KNJ5P42RYD2BYR4I4T323OA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/elastic-search/skus/2-2/versions/6.3.1807061010\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f47bc5e8c2614ea99d0d728fc6f38a38/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gCSgaECpElYoi1I0f3A8tkrcXlmi7BomNm8bMpn8SV8%3D\u0026se=2019-04-24T19:13:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/elk/skus/4-6/versions/5.3.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/316676111d5b4e3badd980b961d6d9d3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T02:18:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"33J24WWFPLIJU7K6ES7PIBREFXFYWHOSKTTBBGXIYN7ULUP4ANF4WFK6K2NMWUYD3LH3OCARZZSAU6OYT3VEENXFX4ZSXUZP4MHHMOQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/erpnext/skus/6-21/versions/8.4.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6dac78a5b4c1402fbaf736f8d7d0d1d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=0T2H4iCaLQVBoBWGu7gUHz3YDTkT5y8eD%2BNaUFphqgw%3D\u0026se=2019-04-24T02:10:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"HWDMM6EGVAKFTBKGR2QLV3XVXGSYEZ7KZ2UGM5CX6AJCFYWWG5PYZNMGRMD3JX6GWWJWWA5QACGEEVR5L5FBZ23X6K2PYGBI73HOZ5A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/espocrm/skus/3-9/versions/4.7.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2c38d8908dd94db8b2fb5318e1ddbceb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2F5HmMTyn1g8ATcq%2BPOLCT312ylQFZ1ce%2Bu9RGHvGN6M%3D\u0026se=2019-04-21T09:55:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GTCONGI3NKTUR5M444EXXTSHGABGB5EF4FI6JHANMMDUJJ5APHR6C77PF4PKO57SVYZJLEOEMR6CBSLP64GUI4TK54P2IO3O7N5CV6I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/exoplatform/skus/4/versions/4.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2698f1d2c5be4fa9961a1121ebb6a6c9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=CEIrE%2B9A0MPFsHnYY1vk2%2FfpUskA1IT%2B1aktPFS9JYA%3D\u0026se=2019-04-22T03:27:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VGWXONOL5NK6F7O4XUCRBH3GEOWQ6YZJLWIFI35RLOGHP2AQZZ6PQ7AXZOK6OJZ5CYGM2GGQXMQ3XAUZ6SDB5QGYRSHAWXEA44CCLUI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/fatfreecrm/skus/0-13/versions/0.14.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/09471aeec74f4342a81a24f53a37ade1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=VTpcctARzK5yX02m5xFaaYcupDEaFVRTRYVAi844HrA%3D\u0026se=2019-04-23T23:30:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PZ5XR2GWMXXOPJQPSXD2ZF4DJ7647ICIJ3A4CQHGA7I7QLNEU2R6QOCYQEGQRAEJ6T5WBKYLWPJ3BE46LHNCFWEL5RYNO6OURJ4HF4A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/ghost/skus/0-7/versions/0.11.100\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/912e7023bbed4d429bbddb926d647fa4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YgAdB4AOHxlCccR%2BCSJkrcJbWnYdWIEST2s5EPWLmYc%3D\u0026se=2019-04-21T00:59:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"QEGSQN2DPAX67IZDQVBJ7ZAHJTYADRNUTA3SLDKFSGVOTU4KRTHDVNGLVGEUSO2OH6LV4XSS7HB5ATAHSRLEB5T544CBIHLT3EXXYGY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/gitlab/skus/8-5/versions/11.0.1807052008\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cf372a9952944f6b9885a51262e607e7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gMtzX9hlAyxGNOy9Vr%2FSaJt1qodhuXX5XuY35vx4p5w%3D\u0026se=2019-04-23T20:11:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hadoop/skus/2-7/versions/2.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8664dc6e4ea04a218480fedc529691b7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jWIgvXiPLMT7BRkizHLqetLrS3YarAYIbhRdsE4IX9Q%3D\u0026se=2019-04-22T14:11:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LBQETUSP525JVVGQRPCV4WOSOAQRLBWISMGRR2FT7GCG2ZRV27VQXAJL5TUDQFHHIQ43NWKTV4TZWG6HU7OIC5FOQ6KEMEYVPCHHC7I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hhvmstack/skus/3-9/versions/3.18.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4a24a1a9a46c40479c6a49cb5c12d328/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=iOKv%2FRy2unfB6nnbD01oUj0VLEDYZ47i8lBqDZum1vs%3D\u0026se=2019-04-22T10:31:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JTC2BRZS63NKT4DYUBZBZWNNJ2QTGSIZWQBF4LJXCJIGPZ24TAQMTWNH5FN4MBVSEINP5PHPUFS6LOHV2VUUW3VRVQQRJTTX44RPJVQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/hordegroupwarewebmail/skus/5-2/versions/5.2.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c082eea9133f445a924216146fdb861b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WOqv0ZCNAYAIpKoeZSb3QKH4XjhDk%2FButSsgJVJP8%2B4%3D\u0026se=2019-04-22T05:03:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"P2A4HHXJYQIAUQOTYBSWL46EFTBI6SL3GUGSWCT3RTKZTI4N6U47JR242VZLNMPDFITTEFEGGIGK4S6FRH7J4O7SIABBOKGLSXRIFTQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/jenkins/skus/1-650/versions/2.46.21\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2e7d08a94914cf6941f57a088a8e286/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=GGlj5ZC7VEZ8tk370%2BHZnsJTW7ysN4FV9PKGEjxS1yU%3D\u0026se=2019-04-22T05:56:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OHQQJATXJS2Q4ZWQGOEG6FPTCGQVG6AC3SSGY7SAM2CAB2RRK7PPHRCFNGHUNAD4ZNW6JCRMSHUA74CJ3QNZZGWEVPRJBFPWQ4QRAWI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/joomla/skus/3-5/versions/3.7.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/adb195e9dfa54dfea2f192d708afafea/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=OwTaFq8Glgn44v9Sk6DzURcIqvYDnriL2mXMg8iRBLU%3D\u0026se=2019-04-21T05:10:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"D4IRPYJJJAO7KN4VE7UQVNNHZFNFWDWWECWBDD3UHSCAMSBXPCI4U5QVU44LXJF23Q4BL2UQEXEEGSYVASDCXVNEM3F4IJF7ULGRRUI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/jrubystack/skus/9-0/versions/9.1.1200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4e29e64d69ed43eeb3f66dc86e704960/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=aIMN9Ak9ECfRXxrM1JtMbz17Vj3O1m3SsbY6CA37K4w%3D\u0026se=2019-04-22T05:25:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"V4FUQIVH73EXOUYWYWWWJMPVVK5UM2XU2HMUUNSU3OFCWICVNBHADX2YOFKWWIFAEHBXFRUYJ5AMU7CKSUI6OESUUHTZDSTKGMOZVFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/kafka/skus/kafka/versions/1.1.1805301513\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e2e3b9d1aa664fc09297799de328f66f/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nxn8yddfmlsd53xeqUJWkgdvdxWbcgYc8iUw85dJBUY%3D\u0026se=2019-04-25T02:35:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/lampstack/skus/5-6/versions/7.1.1807111007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a344d67ef16f42e8a3417c1301ef3365/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gvlQ%2F4N99TA89dnjax29%2FSS%2FG0%2BFF%2F50BXdOdqyrJeU%3D\u0026se=2019-04-23T22:24:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/lappstack/skus/5-6/versions/5.6.310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/dfce49f9624845a99f731f17a9fdc91c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BAkzLzlGxEL9teVnJ6ETkTvx5m%2FiaYZiqSECT91MnzU%3D\u0026se=2019-04-24T05:22:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KNXLGW54OT45VXFTA7TFEGO242PL576C2JD4Y7XH4CIVBFBRHGTEEEAZCYAJ4Y5BW6PJ4XFCL3J5R3CGZ5AAD7CTTTSELCWJHVZLIVA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/letschat/skus/0-4/versions/0.4.80\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9bf984089fe54b15920595a78b33eaf4/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=F%2FHLZobUEpG0ILoBHTfeITX90aZHa%2FveZck6oUAPcyM%3D\u0026se=2019-04-24T15:34:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"CZZ2MUSKMCRZB3LHRSOMOXAVOP7CBC3E7YYN6IGXBGTZ7JZYUOW6OB7DTNMW7YEZFXCRD2GGGXK6HSLFUASA6ROYVQP3LVFPGPLAVXQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/limesurvey/skus/20160228/versions/20170305.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d8273db199574efead6b971a1c5f0373/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6oOSTlZ9DEjMNHh4EmbG4RaT%2BBoWaGlcRYbAKLpDhDo%3D\u0026se=2019-04-21T21:14:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FGJ2BNOPOCGGUB6AZA5KTC7BVVHICBZF2WO4RCDDTPDAVO6I5HJGS4G3XOMBIZTYN4ZD6CHFGMJL2ZN6WATN4BN64BUC5BBO3OJWJPI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/livehelperchat/skus/2-44v/versions/2.6522.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4edd386d3a714bfc8cba36e24149f2e7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jdKs%2FJrRukWM3AdS92smPP63aGLTJPUJP4%2FMOLvmxOs%3D\u0026se=2019-04-22T09:59:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DC2G63D46WDO7O5KDW65EVIA3BLMC4IF5DDB6BAD26KM4CIOTKKW57O6OPALGSVTMYKIFBJFY4SXPNIH4B62V4PGIVIBG45IGW7EJ7Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/magento/skus/2-0/versions/2.1.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7238450c93b847aba366a62ebecb9553/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=eV46E9GtBVpf%2F23o2rrBGlhHV%2BxxWerML%2B4SsYon7zE%3D\u0026se=2019-04-22T06:07:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"KWXD5UVT74DQZEUXLGTK77O6O7FE4M7ESGJM3TAIE4SPTR7JRUEFKEQZXJT4IMVLJJPV5NNX2X6IXN5F3KBDAYCQHHMF3F5O6XAJWYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mahara/skus/15-10/versions/17.4.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6c3b148fa69a4d228291215b9f009831/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BDyVosH63gEwJWAwV56AIuJU0L85C8zEHGm9yBWAOnc%3D\u0026se=2019-04-21T00:01:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"IE7SD4CALJYW44IZDPG45W7YWHE4Z7LWNWYUT7EIUEPINWZEVQKWJQDCH7EUQYBIW6AVISCJVTF5HGSTCLY2LYV5LU5MCC6OJ3HH23A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mantis/skus/1-2/versions/2.3.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bf07c46178b344bd9a4369eb95049796/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=q7adt59gXk95ugoEyaZ1EbEYDkE518yKXLZ8cHS572M%3D\u0026se=2019-04-25T21:45:05Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FWOBKW2FGG6JAGLF2J6AQ3HOMN6S4EQ7CYJCTS5RJMHFPFWNLDJR4MIUMRMJE5JREDSKYUUCKOGIDU3IYG5X332VXFY7LQ5FHQOVP7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mattermost/skus/3-6/versions/3.10.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/368e6884343d4561b7d10b1fd16812b6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WubdF3CjcTfvpJjtDAOb21TmuXN4bB65ASZB16%2B0ha4%3D\u0026se=2019-04-25T20:32:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"HKU6GMPNMSCI3NA3ZOCGSK5QALW64VZCXQCFN7OA3WPLX67OHDN2F5NNVS5LTLOFMJKOTWFDCMSBYYBVANUTLQKSOZNUG6OQP3NXK4Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mautic/skus/1-2/versions/2.8.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f72014a6264c46aeafda2e06278277e5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rbb7VaPZbZbkhZSev7%2BKt9rMVWu6hZQOFng8To22zxE%3D\u0026se=2019-04-23T22:55:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YR3B73XQOLQKW2Z5BZLR3RBACCWARCJCHFS5EKZKRJG2MFUSUEGR3U62HXSHULCDTIPI2NUDT37NUQKJCIEY44K7FLVXI6DKAF4CGOQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mean/skus/3-2/versions/3.4.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1e44e0a92a25465d8553552e33ecc506/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=mi6hQKn%2BS5NwJuFJrAl5gIJhG2GFYqS0zAeiTiVpRiY%3D\u0026se=2019-04-22T08:14:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"EVJ6R2UVEST7B5SSZ5QFVR45DKVLZU2WANVKHYPWAACT4LFGL5ALAILDXDLSEIKLUNQGYACMDMDPQAI4MZYMLJEBHIORUPPNKE7A5EY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mediawiki/skus/1-26/versions/1.28.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/11a28b3fb2ec445a980b57158097d242/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Ilnxp%2Bg5W2p4xgk7oCkEvyjCi%2Bd7SxBZyp%2F1SNbF5hI%3D\u0026se=2019-04-21T22:10:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"6KHHRVM7SP4FIQGX4AVVONT5HW4ZUU6A72XRA6SKWC7GPF6YPNUJ5NBIGNFTMNIR2YNFE37ZBSCJFPJSO7WCAY5KPIZFPR6FXQLFNSI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/memcached/skus/1-4/versions/1.4.360\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/876f358dec114a1da58f9b1316a4c950/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=BW5jmET%2Bf3bENlHu107vLsC3pZXim3124Suf7ic22RQ%3D\u0026se=2019-04-21T02:25:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"532VI6A7CZQEKPEFGVHKNCNG52MQMHBDUESVHYSTLNJFG7KLILDV5IECVEFOQUAYCEVCSR7PNUW63SNSZTSI6EQO4H45SRH4NLFDPNQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/modx/skus/2-4/versions/2.5.716120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/742ace97e8b8429cbfb1250e525c63aa/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=wASgGZo2CkPicSaVZXYh01BP8pwFpQ26AkfgW1X%2FZVM%3D\u0026se=2019-04-24T15:00:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WHS4PF5GPZMQHOVD4C3R7VELAZCUWW733YDMX4OSUZK4QEIYHHPYBIOAMBNLNF6OQGEZBDF47FKRM32CK5PLSKMEHWGDO4T5QGHENQQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mongodb/skus/default/versions/4.0.1807101011\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9abae78c3a33449c93a5538b63e4b104/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6tI%2FdIGDlVo4OuP1Ex8L8oTOi3nBtpJo6aeAM2FFt7c%3D\u0026se=2019-04-20T23:25:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/moodle/skus/3-0/versions/3.5.1807082007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8df1e5e0af854d459f3289378ada1250/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Sg88Q7wufs1EDbW2lt%2B7A%2FpDBrfIAA4mgd4K%2Bm7XfG8%3D\u0026se=2019-04-24T21:19:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/multicraft/skus/public/versions/2.1.12\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a911d75bf40040fdbd7a5cc973b56aa1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YnrKGm2A1jSZPysZC0evrTpKS4eMseB%2FmEhZZsLJePA%3D\u0026se=2019-04-25T00:59:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"AW5VGA3M6GLGW5TTAHADTBH44NNQ3MCTOKDTL3LNVUFFO2Q4ELB4A23K6V3WD2OBSG4A523W56MRKODTMX2WYL7HZF7TD5KBF7LIHFQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mybb/skus/1-8/versions/1.8.120\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bbc90ea6a0c546b98e51c9289cd01f97/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=lg%2FajN4pyjmtMBkDECI9kjtAyyUqrl5aej54OYqNFg0%3D\u0026se=2019-04-21T06:50:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"44Z2GWSDWD5RXOSBI2G3PPFB5BFBOAIOUXCKOB76WISONIDLRMA3XH7GVTJYJHNHN5R74GCNV2BFHFNNZGZBXG5HNHRUVERCYRRVXXI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/mysql/skus/5-6/versions/5.6.360\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b1a6f753d364bb2b6f502e65ab819fd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=JhKIxS%2FhMb79jOLT867Pxh1Hd4HP6NifiCPD2MA844c%3D\u0026se=2019-04-22T13:26:54Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LPBPC6RHPKFXU3MSGFCMET4UEZ52WJFWPPSHTO5OIO24O2CEZAUZ6AMGVFDVNFPCOIHKCW6FD6N6N3OJVVV4FOKRCXGWAZEHJTTJULQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/neos/skus/2-0/versions/3.1.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3ed51c0682cb4fb1aa1cf5e4c8896122/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=JJesf0wvXaoS2tuM52I6rw6vxlpocg6i778NJ%2BIfOpc%3D\u0026se=2019-04-24T10:49:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VQFODFNP5DQMYUUJUS3LY6EY6YB4S4TYSQIHFBBOCVXQQKY4XQVA32CRB53BRJCKSPJEZYWAKS6SOI6DUIZ3NLFF63BQNAQRTQRHQUA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/nginxstack/skus/1-9/versions/1.10.14\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1f1545957d1f4c548508d052a5492a96/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=us4B1xEA%2FtW2N%2ByL%2F2oRnldm5EcDitfIlMLlEAZ9%2B7k%3D\u0026se=2019-04-24T20:02:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SJVYXHJCJ76EXLMBXRETI4XJ35HHGAVGM4TB34FQMAMWBLIMI2FVZ5CG2CF6TFEH4MBIVGLFQZ4TBXZHVQEEJTWVVV7DP6BI63XCV2I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/noalyss/skus/6-9/versions/6.9.180\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7255d0e4b8174efe974c5904d2d00d1a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SpsOucZBlXOTP1oczv%2FtD9%2BL3YAiYRo8BpxXtItE2vA%3D\u0026se=2019-04-22T10:10:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GXF7PHAHQ7P2PWMOPQJ4QBSCTWGHLUADHS5R6SCJQSDUBJFGYHBAQ3RASH4ZD6TVBKKEN6KLODR7SOM4CLRL3PKZQIO7PMMDFZ56TFI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/nodejs/skus/4-3/versions/8.1.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cded2bffcd59467aaf44ef99c4196d16/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=XO4iN%2BcL6BM%2FcyVMReOFPpIvNbb6ZKh7sp1Gt1JMp%2BA%3D\u0026se=2019-04-22T01:09:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5OU4IM5YKFWU6UMR7MYRY4NQARI2S4GHM7JCUSPSFP4W3CFZKDDQ2M4SV3BKYULHAGAWR5INMNO6U3F2E6GZNNAYAEW5TANHBF3KMBY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/odoo/skus/9-0/versions/10.0.201706150\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2fec5a5863604fe491c0c2f763d2cc21/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=le%2BqXTQQ8XMJri9tQqm2ZquEPrTuA5f%2Bn1i%2Ff0eNfNM%3D\u0026se=2019-04-22T06:17:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WZKPPR4YW24XVXPT5WOMIZIRWAL2IYMJFAHRUQV3WPUUGA666KCXG7ETDKGKQ2O6FPKA4EDTNFSF7S3SOM4GRVVSA3BFDAQCGI5K35I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openatrium/skus/2-54/versions/2.617.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/255e045c7b7e4ed6b755a90a8a6f7d5c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tJRhUeMEHSdBS1SXK6Oo%2BaTWkyx75JKIGvbJd0vaU18%3D\u0026se=2019-04-21T07:57:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"TFJN4M2RHEJWDPDOAPQRIC4WUBAUUVASLTDXQXMAMXW2AUFD2KRRMBKRR5H67QOFMIXSJ2CADCLMLWKNPQ6HHLJJTYBF463MMLQP36I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/opencart/skus/2-1/versions/3.0.200\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/69be1b00bf92432fa4ad824bbe71ab7e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j6m2at9aRAyDhGAongjNK7zmcqxwEu1v7adADeCh2G8%3D\u0026se=2019-04-24T00:51:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"LUBRXCPOCFS4PMKE37YY3YZR7GFYAVBTGK3LYGD4C2UBBIS5RCE6J3RESV4GWI6IR2RFKSP4CP2CVTPXUY4SJ25QATKNGCDRAN7AM3A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openedx/skus/cypress/versions/6932119.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/424c957b10c94477a8aa95faeaac3b4d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=KF%2FZ8tOBRxHg2ArxPHimopWQUsdyUceNk6vgFzs5s2Y%3D\u0026se=2019-04-22T06:59:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JHTYBKDNSZTBG7THCSGT2HOKP7NZY6ARG7L65LTC4IHHECTQTK6DQOUINJGROUETM3YLIPY5KXTJZLR7QQ57Y4EE7MVFIPSUBOYFLGI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openfire/skus/4/versions/4.1.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9e4cba897ab5449a8b2c6a7db91db99e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cb9KExuz5F27Gk41ooejDRJskEAr%2FMx3Oq0mmwk%2BK3A%3D\u0026se=2019-04-21T08:13:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"23NYVV5RLGLLDXBWCBJC7KJKJNITKRLPH3RHJYFYAGAKOT4DES4LCQVIO4PC32YH3EATINN63TMQG3IGAXCB6WXJ2ZI3MSHMDMJPG2Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/openproject/skus/5-0/versions/7.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f79dfd529b9249bd817df39a823078b5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ZLhr8q8nHAQpRO3YSz3QRuPE3xwl2EKQY5QC2P84uPc%3D\u0026se=2019-04-22T09:37:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OZU7UPXJ57PHFCAWSBRINR2ADUOVZSY3HV3FD3LRKEJKEQE4MB3UTCKDPYV5QP6SCTXZNQIM53RNQLYALODTWFKDKES5SVIYP7CG2HA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/orangehrm/skus/3-3/versions/3.3.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/efb09f8ce47143078d73302d36aa6721/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=oFm5EIAL5LTWThtLAV5o2vNXCYZJ7uCFabBOp%2FcNXqo%3D\u0026se=2019-04-25T00:45:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BPAZGIG5B72GYHLINHOMMLCJHAGVMR2JLIYFGZ5K6JNS66AUETP3LJGAPOVWMSLUVSGWFKILUJAGZNQVJMHOTTC7SPTETMI2VSQXRNY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/orocrm/skus/1/versions/2.2.20\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fd260b8eb0564968b4643f03bacd1329/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Abx1W6mYVD7Ir%2FUPPt4sbt3vWulgjtMSDIcyVFCzF0g%3D\u0026se=2019-04-24T20:10:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DWB5MBHQ7FQCPYLMUKZCWN6MRJVHWQIXVBVREMS6MVSLOT54CWOUASZKTMSC7QNFQ53S34LV2V5U4TGTEFVJNS7ICU36RLJOZZW3YGQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/osclass/skus/3-6/versions/3.7.002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f62e1e3a9c364401bc6f82b9f2541670/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=N039Dv0TKEBl%2FHFsD8LPsOjCVEVHQpG5MeyVfkFu6U0%3D\u0026se=2019-04-24T06:02:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5AGBUYUXKPN4FR6XSQQKYC6CN72NWB6LNB2OQKMIQ66EYR5ZUAEMYHV32T2OU7X4ADPVFIDF3YPW5H3XE6FJF3XWAAM5HQQRQOLWDOA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/owncloud/skus/8-2/versions/10.0.1805302016\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7783c84f219a46f4a3ca18335afb6923/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ozPzd4meSnqhlootrJhjgIElepDbIWyq9g1QF6bHmsE%3D\u0026se=2019-04-24T15:52:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/oxid-eshop/skus/4-9/versions/4.10.40\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a4e42db0ccd4339bb4d6c27ca75a86e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=VZZxDKRbyJe5xtWYa2CUgMJ1S7f2KfFGTkZxbTC3Sks%3D\u0026se=2019-04-25T02:52:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PUICYL2NYR4EMB7IRZPMFOUWCC5GYATMYKBBVCQIY6465AWWSBOPIITA5ZM7OX5JPO6NEK26TKXX54IUUAZXHZPHPLR7KXU7HPHDETQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/phpbb/skus/3-1/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/998be6e7e1df47ba919821197f0f31c2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jvzAAnsG8i9qQ8nm5R6Zp1r%2FSJZHwy9qogJiwZUPwhE%3D\u0026se=2019-04-24T00:29:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"K6SDMWQ5AHIPLF3N4PHAARERK5KLUAULT446P7Y3CJL7DGDGFAO4ALXBYD6FSBNT5QLDAFXMG3YRB6GIHFZB7YVVFTKU4IXLQE3U65A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/phplist/skus/3-2/versions/3.3.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/af7f8ad261f44c1fb7f6e807ef8939a8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ySbEJT8V2Nh0p%2FC1AeizMFJS%2FycKODN6bEUWpoID%2FrI%3D\u0026se=2019-04-23T23:06:11Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RTSRWQAXSRXWBEOPI7I7MJ7IMU36SXUJHTTDP25UT3LYYN7IB3CDORN5BMJID4TU6GMHLVE5M2HAMXUY56YMJD5MKA4V3XASFIPMHVA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/pimcore/skus/3-1/versions/4.6.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6b52e4f998c54955b7ffc02ffa519d30/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AvwTW5Y5RfaQEM7NulGuFZliX398w5ebAJRlYS1Cx18%3D\u0026se=2019-04-24T00:38:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"YBWOGPYU2ZHZ4PI2SEDDPIOUOKQRDAVF6AVXVSZ4HSRD73TEWFJRVWPM264MXDAOFSOY4GITS346ZOZ55MKTH225DNLRMUI76EI37TA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/piwik/skus/2-16/versions/3.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5235ba886336467b90bb497c75f193f7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=t10VrvuYZ%2BpoTjEzuEEFLvWMknEBS4kKmypNlFLNk5Q%3D\u0026se=2019-04-21T11:41:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"AL3FTPOHEFVFMOV5FYJUIIKU5TV5HEB2YU6RSAJEJ456A5YPDAHTCPBXLCE7JXCJF472M7F6HCB2AKKAFGICS3FIAF4ZM47GKNPJYTI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/plone/skus/5-0/versions/5.0.70\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c7481be4d89e4f96a6271330b24ba215/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AD%2BMV34e%2Fb%2B47IlmL6q0fOjnzkmS9IrvaVoECnylmgk%3D\u0026se=2019-04-21T10:49:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"567UPHGNI3PZLHZMGQ3P7QZJ5YKHMYGNTFP3OF7DUTS3H7N4ECNNOLYR73HZBQJF5WSHEK5HVY6346EEJEI3RYTZXT3UVGF6BPXDK5Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/pootle/skus/2-7/versions/2.7.62\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/01462e0fd56a4db7b252831d45bdecdf/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=vq%2FOTCnjTorx%2BtAXsMUq2ZTQ%2BNcwRCXQnovIjWsVAUw%3D\u0026se=2019-04-22T07:40:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"OMI63AZNTHJN7AK4JRE5J6IIWH4WPBP6HZF7WIHAZMQLS6PKBG4T4UGBXUWJL4LJEMVSJ63B3FD342YK2IXJGPW6SO7XZEEVWC3ER7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/postgresql/skus/postgresql/versions/10.4.1805302007\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8f04bce6b5d3445587df466b293e5e16/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gIhM16cHGoydZmyKXaFeS%2Bxdt0e6pJi50NhViUwqKbU%3D\u0026se=2019-04-24T23:59:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/prestashop/skus/1-6-1/versions/1.7.110\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1186a35cb26c4d0fa44423f1b0f7a7d6/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=RENkThmw9MIdNcCLwJy9JK0fjAQu9KBdqH%2Fbmkqb8ho%3D\u0026se=2019-04-21T03:00:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4SPRV4DB5YV3MQDETU2L2XS5U42YFH34AW3Y6PNOG2MBWSLLFHQ4WC2T5MGLOFUQ7L5ZDNJZV5GHSABJVNC4RX3XRFVZ5OENM6XPBPA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processmakerenterprise/skus/3-1/versions/3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fcd909915dfe4aaa8bce73d1360f328d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=HhWNCtlUfX9I8Woy5wx%2FOi1D1nHkHIVtJlQfWyUcrOA%3D\u0026se=2019-04-22T10:21:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"3KHT7OB5T3Z6HK4WMT4HB4JHTZDNOSI2T3SEPPXQU4E4P2KQQUTR75L3UU4TZIUREFNNFKIPCV6LAOMXTMWVEPKHTI2IS6OM7ICOD4I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processmakeropensourceedition/skus/3-0/versions/3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e588eaa094014d06a6b9b51b822b72f8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=rc2vzPa46rZwFdAdjcsvfmmBchKdOgNe68SPW%2FIEQMI%3D\u0026se=2019-04-24T06:13:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"A6HWGUSIOY4TKUGGCDC47PHBH7Q6NWCMGUX62KGHPGAWNGGWFJCWFUILFWGVU55GJY4RIN2GU22D6U7J6AG5EHAVZX43RK7WO2LPLUQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/processwire/skus/2-7/versions/3.0.620\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fa29a2ececfb42b68d125b04f5e132dc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L5APylk3h3Pbr7zhfo%2Fd3x1fEj89ZGE5Nj0hTGX3xno%3D\u0026se=2019-04-21T11:06:06Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UK6IQ75QHZCJAYBHRVZ6NOIFJMURQEXWC2VBE2E5QART7NRV6BY4J2G6T4IWEFVIT2P6Y5OFEWG3TDJVGIXJXOOWUH6RD2ZDPR5OUSQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/publify/skus/8-2/versions/8.3.32\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9fcd8a3240ad4bb1863f242510c433b9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=0wgVuGtnK5SS%2BY7ihmxl%2B8y7PnSEANRPJPZA9y7ZJI0%3D\u0026se=2019-04-21T10:15:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5BV2OW7LABM2FS7A47FXQPQUOSC6O3NK3MVT3EDWZ2TTNK4325GMK2F6S5E242PLF6MNMBQC3X2HH6UIUTDTXKRDP4GPALPMGLAWGQQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/rabbitmq/skus/rabbitmq/versions/3.7.1807052008\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5955bfd9e0e64eacbc62d47ef872f6e7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=h42OSV%2FadHQ0Aaq1DFU8j1XA03N7xThe%2B7lS0iNDoOA%3D\u0026se=2019-04-25T00:14:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redash/skus/0-10/versions/1.0.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/1bd4134627c44cffa8865549df7b94c7/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hqPnBpQJJOUkQFNWMt%2BHSGUl55gFnP%2B8HlkbvrUT%2F%2Fc%3D\u0026se=2019-04-22T11:55:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GB27VRKNY6U2XVL5MJBFK2TXA7PJI5KS7DPVB5EN6BXSWHWMI2RKWIQ4VQFZ3LUX4ZS3VG6UO4M6RVP7NZQWXWJBINWACVIB6VZD5RA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redis/skus/redis/versions/4.0.1806251509\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4ab9b364a69848ec8a8a1e7461ac68c0/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2Fv3nRiCFtCqW4LFh%2FosgKd4io3%2BRddZbP8FLypdtxCk%3D\u0026se=2019-04-21T17:03:08Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redmine/skus/3/versions/3.4.1806101514\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/c0a771c03e5348fbb1013168b1c35652/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=WEI1zs57Q%2BV2Vo3lvZ98VaVJuDZ6rHqqFyOTnDcYKg0%3D\u0026se=2019-04-22T09:48:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/redmineplusagile/skus/public/versions/3.4.1806021515\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/729299825cf24a7eb38e279a986b4741/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=XQQMbyBFiposXKSjRWIfaiUi4J10DjUpVW2jfZo2qgI%3D\u0026se=2019-04-23T23:42:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/reportserver/skus/2-2/versions/3.0.26\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3a965e4d83de435383989cd1afeceda8/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=NaMEQruEnSunlQVdk9IRVxcr54jwsPJ27MslchAvZYk%3D\u0026se=2019-04-22T14:36:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UZB6KZLL6VDNASOPRADCWWA2JYGJSEZNHH3S7L2T5AJOC5GKUF764XVKKXTPDNWJSIFD4TDJZBPA4TH66T22LVITERFO6AKRYIADQFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/reportserverenterprise/skus/3-0/versions/3.0.26\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a45516e668484fbab14bf06293bd510f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=byZZJYHCn4mpGh01RQ4hJi4JIPZmwf%2FdeLVi%2BimEogc%3D\u0026se=2019-04-21T11:59:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PSMYGQFPYCDMA22MJVBI3GZFK7QAWYHNPGOVBV72KSNZP5CE6UTTHHE2OQDWNMLIFW3KMAQUIHHLKVWQZSPOAYSCL2JOZ3JOIPRDV3I\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/resourcespace/skus/7-5/versions/8.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6a27f8510d404f53a227bffcf907031a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=MwEED8uZomL5ErPZTq8ZSoDWQdZLDqfig0xA0X4tJCA%3D\u0026se=2019-04-22T08:35:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"TPKPWEL6GKA26DUIOKHITTYOXS6FLHUMNSGVGNF55S2LL3FRPHLA3VAY4Z5B3IUADPKDYXRTNJ277NFUQM3W4G2QMXZGITN2SGH3SGI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/roundcube/skus/1-1/versions/1.1.4528\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0c4d054fc29c4e52a3e4469663afbc0f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Howa0abznT6guKf30stGY8hPVPVyZA9g7O5OvrzYg8s%3D\u0026se=2019-04-25T02:44:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BL4YQFBGX64Y5FNVNLMFTZUTT6WKI54MAI67K7R2E327M3RJEL5VBW2SAUMMJBBRVAMX5CVCDIK25JXU2F2RG6DGBSYKTIVIK7ZKEVY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/rubystack/skus/2-0/versions/2.3.15\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d2471808a3694f74a541398f6f505888/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5ZFqNiLlqk9PgFH9TalAi55DGIVA8VxVjdHvIlG8ZAY%3D\u0026se=2019-04-25T21:07:52Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RKIF25AJSHD3E35BAYI7INN3AH6W5CYTZAC7RWDGBMBX3M2K5HSQXWM4WE63CF72YKMYX52W2L4LTK4B6MSM434Z63HUSDMWWKGK6HY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/seopanel/skus/3-8/versions/3.11.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/21a68d19923346fc912357d942d9bc1e/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=l6yXdx94hvPkLX4L4LEAZozGzkFwXWSlptVvvivCTuY%3D\u0026se=2019-04-21T09:40:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"IQVW7LOXAPYSAULCW46AXMTAWWFUQDXE5IFKN4NDTJ6U65VK2GEAVPTCL4LRJBQ3NKLI6I33BFSCROFSPFH3CG3Y7PA4DRBE4Y2URCY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/simplemachinesforum/skus/2-0/versions/2.0.140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/183a571bc28341f6a4761ad1548b41ef/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TBJKNSSARYWwHgvekfeDH7uA4pfx5dcwLbW7jX%2Bajqg%3D\u0026se=2019-04-21T03:31:22Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"5TVL2K2VL7PM2PCN23MMGBFWADWOWSPT5NDKL3LFN2KPZPKLBJBNS7VTZAPXA2MJVDVFZASNODIX2WPTBAEGTUE6EFEYXHQIZVQT4AQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/spree/skus/3-0/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5cee33a1394d4257ba59ae66ee2ca8a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=n9Ds9CLXvtV1%2BrmyvhikXDeQAqEnb5YfqY1AAPIkxfc%3D\u0026se=2019-04-21T07:06:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"DHVT2WSSE6V4PCVTT6MOEHSX6SP2VMI3X7WSYGNVX73QHHFFPGM2NEEURJJPPLLIXFRJWIXWRV5PRL764XZA453OLLFCSPZ5AMIIP6Y\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/subversion/skus/1-8/versions/1.9.51\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/60e8196bb6764edf8aff2fbc3e8b166f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=s%2BcYk8%2FHFtSOwDMB5Cd3nnrj6DqMtr%2Bx4WcjgFJ2hiE%3D\u0026se=2019-04-23T20:20:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4L6QOI5DM56S5SYYMF2XF3T2WHOLOZ2FG3MQGS3ASFKFE5KEHM35J7PSJM4QCFQ5Y446BCVSRGOWJ7IGXUG5EW3WZQ32ULAQL4B6GFY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/suitecrm/skus/7-4/versions/7.8.31\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e9ac086d50634d91a7ea3c5658c078fd/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=D6PkB7U%2FdTPy7jzBBtyIrhodPdx1a%2B9%2FXJ%2FUMvwlaCE%3D\u0026se=2019-04-22T05:13:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"T4WPP7DXSHS24JGTGMXVYMVTMH3TNAQUQKAVYPB3IUTFMJ7HVRWDNTKUZTWGLJL2Z6DNL46UCENQXDVQQGNQKFLTX53CU6KBBIEG6ZI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/testlink/skus/1-9/versions/1.9.16001\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f54326dea5a14f0a9e7d98d6309f8539/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=%2B%2B%2F%2BpWT3Z3my8Ag54ObL8yZZ1%2Fxqq3Fb8cTmHwHdILg%3D\u0026se=2019-04-22T05:46:05Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"WO2KT5HP2DXUT4A6D43KIC2HYXN6T7HFVY7A7M5MBJNCFSCQKO6CVMREBA3L4ANHMFBNXQL66XHWEW72Z7JUV54NFLYKRUHABQOH4VA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tikiwikicmsgroupware/skus/14-2/versions/16.2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5b519919ade94b09aae3cefcb22dbe03/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SOD4mM3dpoTIEvs%2FbTUS%2BRAzVHNIWJNpSOOml7I3aVg%3D\u0026se=2019-04-21T19:17:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PWZDXD6Y3ELNZMJYC2DID33V3AOGR2SEZUBIW7UUC42MMBKYIVRWEZAD5DULFEQXDGXGIZZIIVOVQMS4SOSPY7HJSHAXHSWX4QS5LSA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tinytinyrss/skus/20160220/versions/17.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e689566ffb594d62a651277cdfc5b699/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gWc6z%2Be7yV26Vm5mrTun9oH1klupo4Hs08fNYx%2FNGmM%3D\u0026se=2019-04-24T07:46:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FNRMLRVSQQLM65NIVPGGYYPX7SKB6MHKTJ7D6EW37EEH554GTYQ2RMV24JXKG372XUGTEEENLEH64ZMLKKC7WOOY5LVFI4VUDXTIMYI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/tom-cat/skus/7-0/versions/8.0.440\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/150e2016ae7b4ccf8a93c0cd7f64609c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=4b0polHYgxf4MnPBs6u%2BgnaiWs4WpMEVuSVWwGOvP8M%3D\u0026se=2019-04-25T00:37:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"GYHHP7RYGYWZL73XJ3KW2KDF3XYA4AOILACVNJOK6WEIQWLAL52GTB4UQLKVI2WHGMTTKULGZ5MDZDGFHOPALAS5VVDEVO3MHEJX5JY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/trac/skus/1-0/versions/1.0.150\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/778069a7bc894cfdac955b06e77fb4c5/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=47HIb3YMcaY8wFYO%2BSWpTSXejArp5f2L0ugQuCAgjN4%3D\u0026se=2019-04-22T08:02:39Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"VQHOBULMXBXDHRHNHBHZM5LG5PGOZPGEXP4OBX6S6YWBTIYBA2LC47YIWFO5H3DQAHUSWLLV4YQLRIOFTEF2JT3TKMFZWQA3RNA33RY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/typo3/skus/7-6/versions/8.7.30\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/98ee14a7c4a14ed7b7249eaa590a006d/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=b0ybisTFumVEgr%2Fdm5SxevmkTv%2FkTeUKpFiM1KeiCzE%3D\u0026se=2019-04-21T07:21:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"NTSW6YPEEN2I2GZJ5LC3DWCBPBUYXQHFZTM7PPQA7OOKNQKLFT26DJNLWVFI7QG74BWDE3URHXWJLFAXYMRBOAYWR6V4GE5CZQEOZNI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/weblate/skus/2-4/versions/2.15.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/87af3458122044a2982855b44d484dc3/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Vve2cffL4spLte5cU16jcFsvXkhic8VGZAE1mOZrgv4%3D\u0026se=2019-04-22T05:35:30Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Z73BLDMTDRJNBFDPSLHDLTDYHBF2UWX2JQ6U5E6I37QASZXWP36VSQ3CS3IXXPTSEYTNQ3D23TLL3MXNEESWWKJQ2GNCULGWPMJ6AMA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/webmailpro/skus/public/versions/7.7.50\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/669bb550e1b44e94bcfe8971e4ba40cb/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=cvTESk%2FA7%2F3ZCTX0Q%2BwPKyWi4pYKVn%2F6cNxFNbNcKro%3D\u0026se=2019-04-25T04:05:37Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SGDT5FWB7ZDIA24HWNJ3ZLWWQSW6FPEMSW2VNZW5FUMEG377CQHEDOPLEVCKE47TNXDG22YKQNHFWFSGV6WGMTW5M4JXTXA7BLLKFDQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wildfly/skus/10-0/versions/11.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/aad93b263516426b8725f29c3be5c0ba/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=zBd%2BtWW4ILXKf8BaD2x39YoO99uDNVX8uhb8QuUJBuQ%3D\u0026se=2019-04-22T07:20:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"BL2K4SJL556Z5I35AAN5OF7I2UO26AQ6Q25HF7PTVFY5QZ5CTVJMNPI3D6VE7SAYIAEPQNKHEGNYIGAUHIJ5CUDL3NLFYSTLB32MTII\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wordpress/skus/4-4/versions/4.9.1807060508\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/20d0f93779904e68bf29ea69af7272f6/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Kg4M5URSM10kOriSLaCM8e6jwQ6yHpccoftHEeAB1Lk%3D\u0026se=2019-04-22T10:52:53Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/wordpresspro/skus/default/versions/4.9.1807060508\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/86fbd19206a345e6957b28644f4358cc/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=tzvT5X%2BmaKGR0bHEuhYMKMpkoyDP1uGKdGkvVul3YvQ%3D\u0026se=2019-04-24T14:25:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/x2enginesalescrm/skus/5-5/versions/6.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d755ae93def408299a7be35347af6ad/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=guAS%2Bo5fQMy%2FARninrQvfpsnfgspigY4aSIwEsxLrTc%3D\u0026se=2019-04-24T20:30:49Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UNCU2LIEYA4XD75K5XS2JUF7KQROMRYX246NJCTE6YWICZ4AWEVRGAB6TEZSOBN6SCSBYVNCVYWPSU5ACOCBCN53JVRHZMU6JMUSLYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/xoops/skus/2-5/versions/2.5.811\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/b26f33de420a4a60816ee28bf0395539/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=87B%2Fi8V1O1BGUsvhnmokAZpQRiNeHlQwN6k3GTWwRBs%3D\u0026se=2019-04-24T22:55:04Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"C2KK3A7GO2G2IZB35TSOIA2RJQSM6MNUTDHRM6XK7MNUA6IUMSBYMR32EYPIXNHQJT5FXJ6WVFBLQUPYZUSC6RCPIIBEPAL2ZRY7KGY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/bitnami/offers/zurmo/skus/3-1/versions/3.2.10\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d396f05994844eb7b695f2c876b6ebb9/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=jn%2FkaxqDvxQWvN56inbInbcxodWS6Wcl133OblrIL%2F8%3D\u0026se=2019-04-23T23:52:31Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4RVJLZ7BVTEKMVN6MFRTXH27CLIDGOKXHRKM5BHYWZV45Y7PFFVOZWZXNDKRUIA555TXMVICZDWMNZSBJR5EFUXLTLH25IUYH6GFC4A\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-cg-stack-r8030/skus/mgmt-byol/versions/8030.900200.0542\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cba550aa600f4a0c88c3be093b1c2e38/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-10-04T01:32:01Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-cg-stack-r8030/skus/sg-byol/versions/8030.900273.0542\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/61c2244171cc4152bc961f1aad0f0d48/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-10-04T01:31:48Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/check-point-vsec-r80/skus/sg-byol/versions/8010.90013.0226\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/00028f863a22426d8838fb68a3495148/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5nahpFghUpP1GkrLkiEDM5YdFajcJNgo1h6S4DZEWag%3D\u0026se=2019-04-24T02:50:20Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UZ4TFGIR4NAGZW2CNWENAJFJWLQETMMSYL4LZDE6DVO2O4OTANT4PWIUVHCONFP5PPBOPNJH6PRJIKAWFWPL3HHA4R77GYHNVP2G2MQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/checkpoint/offers/vSECTemplate/skus/template/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/chef-software/offers/chef-automateallinone/skus/template/versions/1.0.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/basic/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e73192f132484dd7bf8d3038488bc03c/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IwTcl7oeU47yUMasXPuJqnO7%2FqLRo%2By9p5VsLJfEs9M%3D\u0026se=2019-04-22T11:03:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"Q7FKTL4VWRISOX4CTDASPDLFAGCUIRFJWIN6EJWBX4SJGCRC7TPLGWLN6I7YMTBVMO4YJK2C7HNJ3AD262NJ4QSOZ7X7ITEKF52ZRQI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/containers/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/58aa4d35347947a3888c681eac1eb3ff/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=g%2FbhwAYQEjlmJ5bwZgqGbOGgvlLaicRTO5CeEXW9CJQ%3D\u0026se=2019-04-21T05:26:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"FG2JJDJ5XDLZDV4M5I5PXBCPZDL5HH3OKQYHPG3JG3KMPBOGBFPMPOAG5REX7W7XIHWRWZTS24FNLF2N3LEIFPDY7DR5JXGSGYHVOVI\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/clear-linux-project/offers/clear-linux-os/skus/machine-learning/versions/20230.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/eacf587346094f62beaabaefbf8d6f69/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=kbcoAmw%2FTvVzDWj3PxWkkEaX5acS0%2FAe5CeDA3juIrw%3D\u0026se=2019-04-24T19:23:12Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"2DSQ3T3IXLC4XCTF2PNVJJBHFDUIJEG7IY46BKDIDUKQZPXHNRQGWJJLJZATUBK42VVA5C4CJZPC5W5HI76OJNDJ6TE7PNGZPU4CIEQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-66-byol/versions/6.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0a3b85b5685c4ee698afea909a7f7519/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=SH0ZBOyoV5tT%2BfSZrjsCFO3kl9JYc%2FFbhPe2zhupmek%3D\u0026se=2019-04-24T14:11:50Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"4NBIY5JVU7TDMB7Q6KWTEXVY6JRRYQFVQ3TLCJKSART22CVIHPW75B3URWWBNZADARQVLVV6UXYJBZS4N4WHUT2YMZB2IOHZSKZPZ7Q\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-67-byol/versions/6.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6cdf2a9d49154106b31cb286c9be097c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=5SF5P98139ytxVfYReo3MMNVATk3z96Cs2nwWKC3SAc%3D\u0026se=2019-04-24T21:12:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/cloudlink/offers/cloudlink-securevm/skus/cloudlink-securevm-68-byol/versions/6.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ed5446ee5bc34db7ade0956bc4656363/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Lctfu5LMJolDi7txGv%2Fi6lKk2h1Cd5AqFqnXlqLPAig%3D\u0026se=2019-04-23T19:36:27Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/commvault/offers/commvault/skus/commvaulttrial/versions/11.13.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/100a27d085f145789e939e820a9aa26e/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Dl%2FkcYIQAvtSMxqBTQzeXKbUmaOP1jTfLz5PWy%2BevEc%3D\u0026se=2019-04-24T04:41:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Debian8_latest.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"training\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/8.0.201805160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9afee22d5cd049188d1905613a02db88/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=uNDVkZ34VmLjvqYnHhUSLYiQUOeQegnxiMJFhzQHJS8%3D\u0026se=2019-04-24T09:15:28Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/8/versions/8.0.201807160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ba1d710daebb4d61bacf2ae82b6751b5/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=UIuBJoSqv4fOVdCoY8%2BAglrXmlpHwET69iLZwvIZmec%3D\u0026se=2019-04-24T16:58:42Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/9/versions/9.0.201805160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/bda08b0ac3194a129760d64fcef4e89f/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=f8GRsVPu7LMBftOyZZL%2BYqc0OxngVXLFptYdZ1Mai%2Fk%3D\u0026se=2019-04-21T10:32:17Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/credativ/offers/Debian/skus/9/versions/9.0.201807160\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/4edb48208e94472483999a4a9de48eaa/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=HTlcfBqFln7GbPKtb7JnJnwSjNPX3c3ZRDoycXt0MU8%3D\u0026se=2019-04-22T01:52:51Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/eventtracker/offers/eventtracker-siem/skus/etlm/versions/9.1.19\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a462aa9d33e745ab8d72a33cea2ad8dd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=smWJHsUgs9ElfzfQWQoLlGeylpRBORz8PkyDUr9H53I%3D\u0026se=2019-04-21T05:36:47Z\u0026sp=r\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a462aa9d33e745ab8d72a33cea2ad8dd/Data/0.vhd?sv=2018-03-28\u0026sr=b\u0026sig=hfyXXSHx9eL7abtki55E9h7408Bm%2FwOe2RCQak89ua0%3D\u0026se=2019-04-21T05:36:47Z\u0026sp=r\"}],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/eventtracker/offers/eventtracker-siem/skus/etsc/versions/9.1.19\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0218d6671b9544f28b47b7b6d7648666/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=joeh84dLQfwghoHQj70SpI2o6SIz4i9RdepzwOo7D1g%3D\u0026se=2019-04-23T18:49:44Z\u0026sp=r\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0218d6671b9544f28b47b7b6d7648666/Data/0.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Jxf7AKjrA4RTOIvCZSt9tMiUoCT6uOIDLHCL5whSfs0%3D\u0026se=2019-04-23T18:49:44Z\u0026sp=r\"}],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/exivity/offers/exivity-vm/skus/exivity-vm-v2-0-5/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a309a9bdb07e422188ece728463787da/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=8guzHbD2iMAHjq19lVjDkWxRZ2K0%2FM6P4NTGuoVNn7k%3D\u0026se=2019-04-23T20:30:18Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-best/skus/f5-bigip-virtual-edition-best-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d44a90aaff6b45e88c4a2dbd7b13dc8d/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=d9kOdZcCSWcY2AxsCYjG%2FLpBs7YC3phPmcaRiBiqD5c%3D\u0026se=2019-04-25T01:58:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-best/skus/f5-bigip-virtual-edition-best-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e9ba311d31004874b80e666d51267fb8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=v%2BMRMyBFBfZAxwOzAaI70hfTK7ruX2ELydRdJ9wE%2Flc%3D\u0026se=2019-04-24T19:28:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-better/skus/f5-bigip-virtual-edition-better-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7e128f73e71142e797ab9340eee2f33c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=Hu%2FtJ8cjH7waZvSP9%2Fwo9x0PZF%2F1QbW%2F5%2FNB7gRozOQ%3D\u0026se=2019-04-22T15:23:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-better/skus/f5-bigip-virtual-edition-better-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/70d870b757f5407f89c3cc8b12cc9a85/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j30yVsNO%2BStv6Azw1M7Qa771f4C1Q06RUtoIlIapX74%3D\u0026se=2019-04-21T01:08:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/78c3ea106352460f8e917e5f2ff8db32/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=i7PmpWwOdEv6goMDw4rZ%2FcUgfQ2uRMFDE1Jk2qZBv6c%3D\u0026se=2019-04-22T13:37:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7a062de55e9e4561a56c7a04210eeee1/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=u4pjcUMOvL5vcgwMIKGKh1%2B6TlHhjp73qEm9%2BtYxn%2Bc%3D\u0026se=2019-04-24T03:22:31Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-1slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2dd8c0fc8fa4455bb9d0c3e77298cadf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=ykW5psxqpzLt6MHHBaa38JC4stdbrDygi5lzLVeAvMA%3D\u0026se=2019-04-20T23:36:10Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7a0e7a2ea7d94f85a4e2727a8b8704cc/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=p4393qwj2ln8Xn%2BS%2F2mOiozu5p5rkWMlYcSHN8YV%2Bmw%3D\u0026se=2019-04-24T07:13:58Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cf15643185964f72a0506685d2de6c56/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=8dCRJrrb%2FJXRr9UoE25FgR8Oc%2B3aezSTqrP1qbSxt%2Fs%3D\u0026se=2019-04-24T05:32:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-all-2slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/6b963476d5ad45c1832cc24be31d2def/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=QAsrtXm1WPYvyihIvWfGs1yDoFpVt1BMyo8WuppV%2BhI%3D\u0026se=2019-04-22T11:12:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/62849c5788924c39b9e3fcd46597d905/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=phh6N1hcequw2zblnSjIelckKbH9JuUibNF4vSNtecQ%3D\u0026se=2019-04-21T07:35:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/59fe214265594be793f94672f4d7ff19/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=qkVpU%2BcQ2VVYjbqYfIWbmNKCL2XEP7K6hMzfuVYkVzY%3D\u0026se=2019-04-22T14:59:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-1slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/578f563bdfa44f3c968ae26015093a6a/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=i4FjA8Wml2g%2BDf4AD%2FB6FSmT%2BmxWXerzL2JFFEwGoag%3D\u0026se=2019-04-21T08:59:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/27f57b98114242f782ea7c01a85dfb1c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=P0VxNwHQvEJEInDQ%2BLT8u2VfiEhoBjVvJFbvn094pFY%3D\u0026se=2019-04-20T23:12:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/252f555495344d2ba62a5050ec5bf8d8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j%2BVrWJymSofeQeFQ1Ov4kN%2BYw9G541%2Bin2ojych84Kg%3D\u0026se=2019-04-21T02:40:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-byol/skus/f5-big-ltm-2slot-byol/versions/14.1.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/9dbdf1f926f64c35aa0a930b44d9560b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=pkE%2BsphZtda1KB6Sss0ktqaF2btonQYP4WVQwA6%2BxpM%3D\u0026se=2019-04-22T03:01:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-good/skus/f5-bigip-virtual-edition-good-byol/versions/13.1.100000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/42a85a22aacd4a59a0066d23005ee28d/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=O8JT7w0nf6FESxNFDiDBKTjPPTAkItuIJOJiQIMOYGo%3D\u0026se=2019-04-22T06:28:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/f5-networks/offers/f5-big-ip-good/skus/f5-bigip-virtual-edition-good-byol/versions/14.0.001000\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/2ec46135199847ba812e98617485a699/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=gbnaY%2Bku4N6cJUTPmsaBFI9nvOxyhS0cJUPd6z0qmto%3D\u0026se=2019-04-21T12:39:32Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/fortinet/offers/fortinet_fortigate-vm_v5/skus/fortinet_fg-vm/versions/6.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8ffb13d0b3514892b333f653b0a0d779/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TLdUbNbV2FagiLbi%2BXr0caHZ5Q2BjwbdZLB%2B11a8lqM%3D\u0026se=2019-04-24T20:28:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/fortinet/offers/fortinet_fortigate-vm_v5/skus/fortinet_fg-vm/versions/6.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/00ffdf36a69446e1a431d9c08f6a43e5/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=IjXdhUo7ly0NADUmX%2BPx0GjPTClqhj6XwEsq%2B5Al%2FIo%3D\u0026se=2019-04-24T20:29:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/hannahspublisher/offers/hannahsoffer/skus/hannahssku/versions/1.2.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-13T08:20:06Z\u0026st=2020-02-13T00:20:06Z\u0026spr=https\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/hortonworks/offers/hortonworks-sandbox/skus/sandbox25/versions/2.5.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ff47b22391074321836bf01230362b1a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=AP9Cn2cgziUP6zTJDA2NXjpwx5fCtpCD6evMuuIvofQ%3D\u0026se=2019-04-24T10:25:41Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"PYEDSE7MRMX75WA6BLCOXAMRE3Q7VXMFMBPXIAUITESBRT5XSEKW3EKROGGR32FYDDOR2GBG7KVZV7TD22PWKJB3SILALNDNDLH53XQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/kaspersky_lab/offers/kaspersky_hybrid_cloud_security_vm/skus/khcs_azure_byol_vm/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d0fbd32b879148009308d304d5c73c00/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=6VdeX30fPUVAGKqWeGLxqZoEAD7NOLyCXMKvyOQ6LrQ%3D\u0026se=2019-04-24T06:26:42Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/kemptech/offers/vlm-azure/skus/basic-byol/versions/7.2.430016425\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/5d08f695522242c9b0de85842e35e1dd/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=o7avaX5x%2FsUxgsRA1PMce5w9jmRv8XzkDetn42%2BNoMM%3D\u0026se=2019-04-21T00:30:03Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/noobaa/offers/noobaa-hybrid-s3-archive-05/skus/pay-per-usage/versions/2.1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/05bdcf26c6f74702be34817d537f24d0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=negJvoAuNnrw20gxqhT0vP8tHOxDGa6Ps8vrDQEhrKg%3D\u0026se=2019-04-24T18:29:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"R65CBNLVR7YUTMBOGT737INIGP6RTEERIYO7UYI6WKEQVGPO4HQ4RS3KRLCCPTMW2FUDJVRBKSSYNTMWYXSNMTPLCDMV3CF4COUWSFA\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/nri/offers/mplatmc2018-vm/skus/mplatmc2018-win-vm/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a9495be1b5424734b9fe9675ce2849c2/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=wOvRZ81XPKGLgCMuoFk071z5tVOPHsOoULGg8VfdB1k%3D\u0026se=2019-04-25T02:59:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"UVH7FNWK52PITIBXHMPRN2WVXGKZT6CBKNNBY7QBONZJKFHX4VQ5LGAWRGFPNSEKEDFKTDWP3XHNEEMI3RRWJ3R4EJZQXSVEZS7KBHY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/paloaltonetworks/offers/vmseries1/skus/byol/versions/8.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8e1f9849346e4a6bbedf4920148e3dd0/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=TelBGCALZEP5V9cvbi8Bm%2BsMHr8JhPkNYQp11kjHOaM%3D\u0026se=2019-04-25T00:23:33Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"SR23IDILM4Y4VFWYPDJBDOPNU5T72ZR3ZDZ6HGPZN3DSWT6NP4F54QZUUWRNR3YPTWTL27LHYPQSIMB2DSAZKS5QHRRBM2VYTMPUQCQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/ptsecurity/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/ptsecurity/offers/ptaf-vm/skus/byol/versions/3.6.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7223baf4841b42e993662254c2589007/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=P2Q4ef6T4cu7iKNlrNNtFhC1xSlggWj8txuw2KSVlNI%3D\u0026se=2019-04-22T14:47:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RAXJLQHAXDCMU6GVL3G7FW7OQPN6PY547X6JUTQQEF4GLXY7R253VQC3WJAKGT6HBINIXX67Y3EH7X5O7P4OP7QQHDJG2O4JV65BBXY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/puppet/offers/puppet-enterprise/skus/2017-2/versions/2017.2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d61a5cea5f9f412682790c2e73528dcc/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=j28AQTjHnfMZm0g9DX0jFvHe0J37PWp5fK4n%2ByDUvyY%3D\u0026se=2019-04-24T02:41:15Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"RICT25UZBGSXPU5G7CEMQLWN2HAUZSK5GNUBNBQ5DMPR2YPRK3JIHPNZNS6DFBSP3O5QDTOPZDWFCDCN4ONQ42NYHGM36Q53QKM3OYQ\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/quest/offers/rapid-recovery-core-vm/skus/quest_rapid_recovery_core_vm/versions/620.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/cd0781a5b1314b81915a86aa3430ad88/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026sig=n38PaaDjxFiAUI6YhLoIbask9AqdWTQXYhvieg39V1U%3D\u0026se=2019-04-23T17:19:19Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"JDJ5IS5HDKFWAZYHNAXOS26GA2W6QLSSOBONENPU7CM6IFK53KXJN3GXWYLS5TQQTFX7MZW2N2PDDAITXR5KV4R4OMHIF34ZMDUBWIY\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/tata_communications/offers/netfoundry_cloud_gateway/skus/netfoundry-cloud-gateway/versions/2.4.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0bc4fe0560124ed192a5aa8c7cffcf5b/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=YrbIlkFl8NtJFRWp%2BnUXf1yx1fZJ0ep82GxZYUNVlS4%3D\u0026se=2019-04-22T07:09:43Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/tata_communications/offers/netfoundry_cloud_gateway/skus/netfoundry-cloud-gateway/versions/2.6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/ac4900e34ebf4d7282950d721113ec13/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=L5anuyefUAWDZlwq9kH%2B0iHTWQP%2BeMwtmE6gtyCUfMM%3D\u0026se=2019-04-25T00:07:25Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/thales-vormetric/offers/ciphertrust-ckm/skus/ciphertrust-ckm/versions/1.0.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/07d890da45eb44d8ada0d2e00c4a4f6c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=d%2F8NyVZiyCOIO%2BNBkoPw9n%2F6pjkcgdohlTabbsfC7Ss%3D\u0026se=2019-04-24T17:36:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/zerodown_software/offers/stackbcaas/skus/stackzdsbcaas/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/544c62f6ed6b44e68368a3dfb5fb9598/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026sig=nnYIBZZ4r5wE1bTGL%2FY3KKwXA879esLTrJF%2B%2Fnsl7m0%3D\u0026se=2019-04-22T07:30:24Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Microsoft/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-14T06:22:13Z\u0026st=2020-02-13T22:22:13Z\u0026spr=https\u0026sig=EOaOB00ALYHrt14nFn%2BFMNEdXHc7cFfvLpglO3m%2BocI%3D\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Failed\"}}]" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0?api-version=2015-12-01-preview+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["23"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["8d4e89e8-c680-4a5b-a38b-fded24961f20"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOIDijIR2vLVuI4Uup76qPkjOK4hcE9rFfQGpuQaZBYav5N3y8fQyENU/UTXyi05kkvX0JmV6Oti9RODRZbqJqtFdIAEC3P1jOpEk5a3rC08Q7pdVprN3oLMX5haCS5WY2fL1u1US0xJoZHuEIYvc" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13723"], - "x-ms-request-id": ["8d4e89e8-c680-4a5b-a38b-fded24961f20"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174626Z:8d4e89e8-c680-4a5b-a38b-fded24961f20" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:26 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["567"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/CassandraCluster/skus/CassandraCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/ElasticsearchClusterSolution/skus/ElasticsearchClusterSolution/versions/1.0.0?api-version=2015-12-01-preview+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/ElasticsearchClusterSolution/skus/ElasticsearchClusterSolution/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["24"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["f8b641a6-a330-4b18-b826-e570c7584420"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+N9fmddHBiLM/GkK7RgbgFqLvyGjprJkO78j7k4vEJiaLIIcLm3Swk7a9D4JIAD/GJQdDD9DXIgwPfzl0BGdSJVnkymLyw32sTO5zQpU9RIhLRDcQnlKn9RAWUvzs48MP7V33gbXOeM46eRgEYn6" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13722"], - "x-ms-request-id": ["f8b641a6-a330-4b18-b826-e570c7584420"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174626Z:f8b641a6-a330-4b18-b826-e570c7584420" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:26 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["591"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/ElasticsearchClusterSolution/skus/ElasticsearchClusterSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/JenkinsCICluster/skus/JenkinsCICluster/versions/1.0.0?api-version=2015-12-01-preview+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/JenkinsCICluster/skus/JenkinsCICluster/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["25"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["c260cf5f-ce4b-4beb-85eb-d8270afc82ba"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbTl+PfxBXodUamRZXC1Po5piSDRwVjurzQmbdkVD7USByrotW5AlMbz/61zt9tgZ3xc7p2+yUd44Fjpo7UTcL/Bf5/1ltmLC3LgGu5c8rAgee8zOxkcoglwmu3c8X6zhEXKkP1Z9DFMwHcJlhwIY" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13721"], - "x-ms-request-id": ["c260cf5f-ce4b-4beb-85eb-d8270afc82ba"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174626Z:c260cf5f-ce4b-4beb-85eb-d8270afc82ba" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:26 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["567"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/JenkinsCICluster/skus/JenkinsCICluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/KafkaCluster/skus/KafkaCluster/versions/1.0.0?api-version=2015-12-01-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/KafkaCluster/skus/KafkaCluster/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["26"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["45792ef6-f121-4bad-b2f8-47cd1576e2de"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGJJmRz04xvpEQAMEZcEUVCO2PqIKPEQOW7z7UrB9pCtHdoQ4B45ZIzFq0Q2VVvKFvXIBEaZfoJ8NhoL45KYemYlN0LOPSmiiF1DoW0Ho493lcdaYfF5X4VEfqI6Q0XVIF/sxLJB2Mn1oHPGqRFAx" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13720"], - "x-ms-request-id": ["45792ef6-f121-4bad-b2f8-47cd1576e2de"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174627Z:45792ef6-f121-4bad-b2f8-47cd1576e2de" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:27 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["559"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/KafkaCluster/skus/KafkaCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MariaDBwithReplication/skus/MariaDBwithReplication/versions/1.0.0?api-version=2015-12-01-preview+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MariaDBwithReplication/skus/MariaDBwithReplication/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["27"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5e97b31a-5303-484f-9071-66fbb44cbf14"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuTEN8BjEB+h7ttnZXA2EZlJLN8tlSs0zDnOAkj8hYgvwqCVnNIhuGf8tjoYcRccEY8nLmrOIHCxwz/FMhBmA6S/OW2Xt/dWWoKZsP8nvklk4HjfghaBiiYR/euhEeXYgHWvk2hQUG83bq6x+CQvH" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13719"], - "x-ms-request-id": ["5e97b31a-5303-484f-9071-66fbb44cbf14"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174627Z:5e97b31a-5303-484f-9071-66fbb44cbf14" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:27 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["579"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MariaDBwithReplication/skus/MariaDBwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MemcachedMultipleInstance/skus/MemcachedMultipleInstance/versions/1.0.0?api-version=2015-12-01-preview+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MemcachedMultipleInstance/skus/MemcachedMultipleInstance/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["28"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["8d91f00b-0f79-472d-8047-a408db91ad3b"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYxOmHupYeadU7R1a+HApli2zfSgaEtGJsi058OZnOpBCeXlkkBd08dGG6xARf1tblWJdUliyLUJ4Dmq2H3fIpEhkvZlyJCe3psfzVZ66wcX6+cnpYP4oKO80WetNOIe/Ffh3j1H1gNdQY9bu7+Ic" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13718"], - "x-ms-request-id": ["8d91f00b-0f79-472d-8047-a408db91ad3b"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174627Z:8d91f00b-0f79-472d-8047-a408db91ad3b" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:27 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["585"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MemcachedMultipleInstance/skus/MemcachedMultipleInstance/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MoodleMultiTierSolution/skus/MoodleMultiTierSolution/versions/1.0.0?api-version=2015-12-01-preview+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MoodleMultiTierSolution/skus/MoodleMultiTierSolution/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["29"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["8a3ca882-7156-4554-be43-975b1e5794ee"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzsh/lHzU4kY1B6Y5p8mhDTfaGkdL6ie15rKG13YwJGsAXbZ7nXyu3j9HujqYpAisymc6Vqx7DbYTbJ0k27z+GDNyGJxdJYShha/aDtQl/Mxke0evUZz1wTbfr3N42SQWj8eUlyQCmmy78b3rNecz" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13717"], - "x-ms-request-id": ["8a3ca882-7156-4554-be43-975b1e5794ee"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174628Z:8a3ca882-7156-4554-be43-975b1e5794ee" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:28 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["581"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MoodleMultiTierSolution/skus/MoodleMultiTierSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MySQLwithReplication/skus/MySQLwithReplication/versions/1.0.0?api-version=2015-12-01-preview+9": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MySQLwithReplication/skus/MySQLwithReplication/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["30"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["0d8c14ce-f366-4d70-b295-3d1240a132b2"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvefRrtSSIMW9vknOjTHFHtDf93A8COwCCovUvdTflfj80qWYwPGnhX/LQaFFx97XC/wiV8fWBGT2HszS6Gn0rM/uy0nxe7uG+bRmtxTriUhZ+vj/KRVofsDFhYinJBy4S0DoL/2/xYdKdyM1Liyvg" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13716"], - "x-ms-request-id": ["0d8c14ce-f366-4d70-b295-3d1240a132b2"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174628Z:0d8c14ce-f366-4d70-b295-3d1240a132b2" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:28 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["575"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/MySQLwithReplication/skus/MySQLwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/NodeJSCluster/skus/NodeJSCluster/versions/1.0.0?api-version=2015-12-01-preview+10": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/NodeJSCluster/skus/NodeJSCluster/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["31"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["a48ef10a-46ef-4e13-9ca5-a2b1afdef6ae"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2QcJslAcS2v5doRpHY5uH7LTcIhcaYNPvDqy31uO2X+vVN9EJ3Yh6OmE24/XQUV6W6vC1vAo1hpWPWsblR+I7wH664m5YUer8jtxK6Si31vkr4DiAqOQ6rKTSJZCwIbkGyDFJdghQ9EbXDIfPOHP" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13715"], - "x-ms-request-id": ["a48ef10a-46ef-4e13-9ca5-a2b1afdef6ae"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174628Z:a48ef10a-46ef-4e13-9ca5-a2b1afdef6ae" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:28 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["561"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/NodeJSCluster/skus/NodeJSCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/PostgreSQLwithReplication/skus/PostgreSQLwithReplication/versions/1.0.0?api-version=2015-12-01-preview+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/PostgreSQLwithReplication/skus/PostgreSQLwithReplication/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["32"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["be3586bb-a9e9-4df2-97ee-f2f4c2d16756"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv64uxmxFtdUEM2HyRXKO6OCTt6ii3Wm2sthtRqbo6pa01PiIwZH51uzplgHilxdwk3FzCgYhwwul53mBXPXNVGES3VO/6Q6pVxvmcPTAU35OdpwIh1m6TvKznVAxk1Plcy+3LBCOWHy59YmggYP6y" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13714"], - "x-ms-request-id": ["be3586bb-a9e9-4df2-97ee-f2f4c2d16756"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174629Z:be3586bb-a9e9-4df2-97ee-f2f4c2d16756" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:29 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["585"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/PostgreSQLwithReplication/skus/PostgreSQLwithReplication/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/RabbitMQCluster/skus/RabbitMQCluster/versions/1.0.0?api-version=2015-12-01-preview+12": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/RabbitMQCluster/skus/RabbitMQCluster/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["33"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["c5a97773-d718-4a8e-8a9c-dbe174b5355a"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5XXSooQg/nbxHITMwCJuF7osA3ptY4IlM1KC62EkTycqk+e3gkmZtZR0M0ilvT44qP6nTwl1btrhjbH0+jcPumtG/l8eCRw3BW0xnkqD5sPE/bjLzdksc9u4MvZ3/m+zpAKyZzt1vlOsq8gv0MWw" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13713"], - "x-ms-request-id": ["c5a97773-d718-4a8e-8a9c-dbe174b5355a"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174630Z:c5a97773-d718-4a8e-8a9c-dbe174b5355a" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:29 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["565"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/RabbitMQCluster/skus/RabbitMQCluster/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview+13": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["34"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["442edbd6-a2bf-4ec0-a264-77f0b34b6de9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyQ+4298l8fBtvijuIZj0vCB1zY8UIA+iL6VcerNdLkphUJ/8yckfx3eJt/iwwtLw1KtaffGR8uccjW2gYTA/Qz+hRmLSckaY8RvWGQB+Kavn+uF+Sa7JuDGlHU2BRhDUxgDG6g2/j8NYjXOWqzHc" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13712"], - "x-ms-request-id": ["442edbd6-a2bf-4ec0-a264-77f0b34b6de9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174630Z:442edbd6-a2bf-4ec0-a264-77f0b34b6de9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:29 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["709"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/a60bf91041304dba9c2613e217c8a8b7/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-22T05:02:40Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/WordPressMultiTierSolution/skus/WordPressMultiTierSolution/versions/1.0.0?api-version=2015-12-01-preview+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/WordPressMultiTierSolution/skus/WordPressMultiTierSolution/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["35"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["07f34645-3c17-4fad-baaf-6288dba6c0cc"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxuvKvUBhlK81UQW8bVLlQVttP3tOImnYfvP7kNrmGvBnr6rLTQCwPThdWGjEyhiyt154K7c3UJ7AMZJLjF7rX/xKi9t1jeRDvN3Cm3PscQ1cUd6KZYZUfGtWWjyQXzVrn7mJjWuu4bs2Mh0HAUTl" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13711"], - "x-ms-request-id": ["07f34645-3c17-4fad-baaf-6288dba6c0cc"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174630Z:07f34645-3c17-4fad-baaf-6288dba6c0cc" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:30 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["587"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Bitnami/offers/WordPressMultiTierSolution/skus/WordPressMultiTierSolution/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/1.0.0?api-version=2015-12-01-preview+15": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["36"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["1af49d78-6ca2-4c96-beda-462674da4897"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6NgmzBS8uayR+Trq2IbyNSw7Qwz89R/phkyy0bJ3xpH8fa249PmB4/E1set9/6KdQrWzvlvEOT9i99vrvAHt7aak29HzSfzCqmKmA+cvYpGc1PYqddDavPTuSlDB/jAamyHJjMa2OjSM583AkduX" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13710"], - "x-ms-request-id": ["1af49d78-6ca2-4c96-beda-462674da4897"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174631Z:1af49d78-6ca2-4c96-beda-462674da4897" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:30 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["575"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Ubuntu1404LTS.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201808140?api-version=2015-12-01-preview+16": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201808140?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["37"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["99b676a0-3c8f-41cc-9d89-687414cb8700"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvYPwd6hMo7t12WJhcVYDo7xq7tg9Utuu6jNLTzLNZbeIyJNlso5e7GY0Q8Tz3YIF8/xA0wMqIITXse6cgTvQVeIv+QFGzBr/oWTUra4Vc32n2xogTweeGuYbOMPTvY4uZ42X0cCDJ5Hq4hYDnl0d" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13709"], - "x-ms-request-id": ["99b676a0-3c8f-41cc-9d89-687414cb8700"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174631Z:99b676a0-3c8f-41cc-9d89-687414cb8700" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:30 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["704"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201808140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/08acaeee3c7e4cc394e9ef81790bda63/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-23T22:15:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.20180818?api-version=2015-12-01-preview+17": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.20180818?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["38"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["ee0a9629-e279-4f9f-aedf-3a53da929b4c"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZSxT8vCPMZeQ0dHkdaf5umKsOskAidWXxfZqcpQbo7xv0q6c6lYHygmf/enBSGVwS7Yw4RSlMkZrSxcZzGmW2+eyZVDkQNdaIAE1yg1pTtWs7dHsm9+05pZxyGjXPTZp4ekd9sf2xKzDi57CbPlD" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13708"], - "x-ms-request-id": ["ee0a9629-e279-4f9f-aedf-3a53da929b4c"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174631Z:ee0a9629-e279-4f9f-aedf-3a53da929b4c" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:31 GMT"] - }, - "ContentHeaders": { - "Content-Length": ["709"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.20180818\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/41281233660241f9a8e074b74f0d5abb/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T02:31:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0?api-version=2015-12-01-preview+18": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["39"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["c4f0edf6-e292-463e-bc5d-ec773048be07"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdx8+617ynCrKU7sqzrnrGtk+zbwwZ1t1UV77BZjH21foeZDJsoorUaRDOu53DH1XUfmnosLCZO5ax0xUNyHG3bKkpD0TJ5ygbSZgXFyPLENAHkg2pMd5IUmpUijjVlsJwDra+8yDsSxHsDv127B7" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13707"], - "x-ms-request-id": ["c4f0edf6-e292-463e-bc5d-ec773048be07"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174632Z:c4f0edf6-e292-463e-bc5d-ec773048be07" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:31 GMT"] + "x-ms-unique-id": [ "1554" ], + "x-ms-client-request-id": [ "e215a483-fb5a-46e6-b109-f308bdefd532" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["706"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://hamurphystorageaccount.blob.northwest.azs-longhaul-02.selfhost.corp.microsoft.com/hamurphy-blob-for-fixed-vhd/hamurphy-fixed.vhd?sv=2017-04-17\u0026ss=bqt\u0026srt=sco\u0026sp=rwdlacup\u0026se=2020-02-14T06:22:13Z\u0026st=2020-02-13T22:22:13Z\u0026spr=https\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20170811?api-version=2015-12-01-preview+19": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20170811?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["40"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["80fecbf1-ebfc-4226-a940-378fa723b5ce"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvXk+i/DedP0nrlNhjCfR7Xc5ajBhfYWGiTy7ME8G5H4hCRlpnpcXUWZPjqjXiFc72aWM1u+SQXkcIcpV8wT4Gtk6ah2f26Us0fUo98vwfVN0ykjY9pUIjfxHg+IQsl3NUdpipB77/jtSVpRHS70I" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13706"], - "x-ms-request-id": ["80fecbf1-ebfc-4226-a940-378fa723b5ce"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174632Z:80fecbf1-ebfc-4226-a940-378fa723b5ce" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:31 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "6e65b297-0dd8-440d-962b-f414ff909325" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14183" ], + "x-ms-request-id": [ "6e65b297-0dd8-440d-962b-f414ff909325" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221438Z:6e65b297-0dd8-440d-962b-f414ff909325" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvA1+ORfBc7eJq7BiBXgXJKBKrqZqiyCUvzlxufOJtTC0c6QscNXLxTPAv9ySlaGcxPyv1gWLSnsjtJdxykIOdnpYGoZD1j56xx/j8AaN/AW/ocA5J4Tgy48ZvQlSKqUzuK9J1GqYr91AaRxfPWlBD" ] }, "ContentHeaders": { - "Content-Length": ["590"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "10742" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20170811\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/Ubuntu1604-20170619.1.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007080\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/aa4d60fd88fe46f9a97a75d2bf08c291%2FImage%2FUbuntu-16_04-LTS-amd64-server-20200708-en-us-30GB.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a14Z\u0026ske=2022-03-19T16%3a50%3a14Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a14Z\u0026se=2022-03-19T16%3a50%3a14Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007080\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/405c7160072b47e3b40def27399e3e9a%2FImage%2FUbuntu-18_04-LTS-amd64-server-20200708.1-en-us-30GB.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a13Z\u0026ske=2022-03-19T16%3a50%3a13Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a13Z\u0026se=2022-03-19T16%3a50%3a13Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/CRP/offers/TestImage/skus/Dynamic/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Microsoft/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150825\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/10.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/WindowsServer2012R2DatacenterBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2012-R2-Datacenter-smalldisk/versions/9600.20120.2109130648\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8c94657ef5184ca7a4c86b2805c29d81%2FImage%2F1911ecfdd5284c81b44abb999cf70242%252FImage%252Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a15Z\u0026ske=2022-03-19T16%3a50%3a15Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a15Z\u0026se=2022-03-19T16%3a50%3a15Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.4651.2109130103\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e52f1319c8354093854767b37102c218%2FImage%2F1b76c9e2fd29468daace52f01d9ac267%252FImage%252Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a14Z\u0026ske=2022-03-19T16%3a50%3a14Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a14Z\u0026se=2022-03-19T16%3a50%3a14Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}]", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808140?api-version=2015-12-01-preview+20": { + "Get-AzsPlatformImage+[NoContext]+TestGetPlatformImage+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808140?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["41"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["7a2fd5a0-5a6f-47cb-b7c6-bc682803467d"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3OvOCCxLbOAfUpF8yOjO7fMWun5KZ0u0hGdCqWFeya7SwGu+2etwUf6KToThyRowvqJaTc/UFYdPHPlbkofXyPVWWX1NsCDylRLuXlI1HB+GQhK+Y3LOhRkDqFUo/dzT5RbxFmpCPDrJe2qlW//D" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13705"], - "x-ms-request-id": ["7a2fd5a0-5a6f-47cb-b7c6-bc682803467d"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174633Z:7a2fd5a0-5a6f-47cb-b7c6-bc682803467d" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:33 GMT"] + "x-ms-unique-id": [ "1555" ], + "x-ms-client-request-id": [ "d0188447-aa02-4fed-bfcc-cce7a3c4dd5c" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["710"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201808140\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/411e6e144b774457870f77f8fbb95a80/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T04:15:14Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20180831?api-version=2015-12-01-preview+21": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20180831?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["42"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["15397eab-f594-4358-9c8a-0dd519471178"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3MyZwoqxnoXuF8URW5VKviDxZ9GM/aAj8viUlCPjMbVLcIlhwTIv9Ms3OaKD6lr7QRbRFqeKz3l8R+3RuoiKPCUWSw+9zR2wr549fi8wIWVZtkUzo8NgjGBux5h5mxR1BOlFA8DiNjqS6BmN1hnx" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13704"], - "x-ms-request-id": ["15397eab-f594-4358-9c8a-0dd519471178"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174633Z:15397eab-f594-4358-9c8a-0dd519471178" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:33 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "e534a180-1366-4b47-8c3e-59a91a82332d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14182" ], + "x-ms-request-id": [ "e534a180-1366-4b47-8c3e-59a91a82332d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221439Z:e534a180-1366-4b47-8c3e-59a91a82332d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRve6NmQ1YFb8FvLu/DOxwDWHi7UAm1+V+ES//dCeHVWxDnIqJ+BxMKFYGFe+MgLNLJUmrMCepiFTrCq5rS5RubQ7MjtlVkIeCDUcjF/CqknDHjOQYzHZquSKfCwyvLWs+bWEIh6duqamnZJSm9Nyp/" ] }, "ContentHeaders": { - "Content-Length": ["703"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "10742" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.20180831\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/7e3878d7cf874ecfab6eece1d0553fce/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-22T14:00:09Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007080\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/aa4d60fd88fe46f9a97a75d2bf08c291%2FImage%2FUbuntu-16_04-LTS-amd64-server-20200708-en-us-30GB.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a14Z\u0026ske=2022-03-19T16%3a50%3a14Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a14Z\u0026se=2022-03-19T16%3a50%3a14Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007080\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/405c7160072b47e3b40def27399e3e9a%2FImage%2FUbuntu-18_04-LTS-amd64-server-20200708.1-en-us-30GB.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a13Z\u0026ske=2022-03-19T16%3a50%3a13Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a13Z\u0026se=2022-03-19T16%3a50%3a13Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/CRP/offers/TestImage/skus/Dynamic/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Microsoft/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150825\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/10.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/WindowsServer2012R2DatacenterBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2012-R2-Datacenter-smalldisk/versions/9600.20120.2109130648\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8c94657ef5184ca7a4c86b2805c29d81%2FImage%2F1911ecfdd5284c81b44abb999cf70242%252FImage%252Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a15Z\u0026ske=2022-03-19T16%3a50%3a15Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a15Z\u0026se=2022-03-19T16%3a50%3a15Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.4651.2109130103\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e52f1319c8354093854767b37102c218%2FImage%2F1b76c9e2fd29468daace52f01d9ac267%252FImage%252Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a14Z\u0026ske=2022-03-19T16%3a50%3a14Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a14Z\u0026se=2022-03-19T16%3a50%3a14Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}]", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.20180911?api-version=2015-12-01-preview+22": { + "Get-AzsPlatformImage+[NoContext]+TestGetPlatformImage+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050?api-version=2015-12-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.20180911?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["43"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["31a73232-281c-4a09-b2e2-4fdb8a9bcc81"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvh3TSK6J8XDVWjWVLx8vTlCNZVwlHbcO6Fxfpc4f6oFT2QyZpDZgbmn8yB7GTdEdULjMxi11fV3QQw6+E5X2cpOZGBf6zSAnrN9cxWHPPKIwra9iWahcXA0qjqs3VOPZwR7HZRdv1P1sw6c8t/ymY" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13702"], - "x-ms-request-id": ["31a73232-281c-4a09-b2e2-4fdb8a9bcc81"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174633Z:31a73232-281c-4a09-b2e2-4fdb8a9bcc81" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:33 GMT"] + "x-ms-unique-id": [ "1556" ], + "x-ms-client-request-id": [ "40e0b65b-e788-435d-bb85-61d381e66368" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["648"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.20180911\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/027b00815995491a8986f8ff7e16c38c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T02:20:02Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CheckPoint/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview+23": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CheckPoint/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["44"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["311b0095-ac8c-4cef-a20b-e85de4cff1f0"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvL1F96rKofAUZaoT5dKkWnDJ0UWfhtvpknCxoaly2HsnLbLqHzZe065Vsr4WaEU8N+IWQOzvuelVuhgHs0jkM4Az90QuZQflT23vlsCrkRo7ocLylczKChu2+LPY3Ep2jMPhTIsaWR7zHTbrFt2S8" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13701"], - "x-ms-request-id": ["311b0095-ac8c-4cef-a20b-e85de4cff1f0"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174634Z:311b0095-ac8c-4cef-a20b-e85de4cff1f0" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:34 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "a0b53498-d2e9-450d-9e1c-640b463d7da1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14181" ], + "x-ms-request-id": [ "a0b53498-d2e9-450d-9e1c-640b463d7da1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221439Z:a0b53498-d2e9-450d-9e1c-640b463d7da1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcUBNxqZ7o9If5KQxdAak2nwmVSLlG79MA8huxtA9LKKnS6T6h78HGkju3mSrFXu8hg9OqrEwdehMlRhG/VV47keaJ5rFtGnTQQHoXMwEaoQYF3Wres26L4hrCU/lC7NvLCkyXwusuVHPNl9u03HB" ] }, "ContentHeaders": { - "Content-Length": ["578"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "601" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CheckPoint/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CoreOS/offers/CoreOS/skus/Stable/versions/1465.8.0?api-version=2015-12-01-preview+24": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CoreOS/offers/CoreOS/skus/Stable/versions/1465.8.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["45"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["1052407d-feb4-461a-86ff-00488dd5f7d6"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV7Ix4BnArfnnjqYmHBHlEFcObpgnMAF+WlFWmFqwwqn0q7ZWPLUbfjBeTnGjMH0KUqsC9spUyi8EPfLEBdEAJnmqUTOdgRawCorC+VTgGQh3ZucipEQi/vabJMRBAx+fLxK5Rd0/jzvN9AYC5XPp" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13700"], - "x-ms-request-id": ["1052407d-feb4-461a-86ff-00488dd5f7d6"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174635Z:1052407d-feb4-461a-86ff-00488dd5f7d6" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:34 GMT"] + "x-ms-unique-id": [ "1557" ], + "x-ms-client-request-id": [ "9275f87c-c52d-474f-bae9-e9ac73720a06" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["687"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/CoreOS/offers/CoreOS/skus/Stable/versions/1465.8.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0e40b5a886604bd5a6e153c9d943e47a/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-22T07:51:34Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview+25": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["46"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["d4afbebf-c4e6-49a1-adae-2eb201eec0f1"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLIvrktQ17JrZegTL9rwAhimtEWawZs87HsW0YJM6t6q9LbaurJiSME9a1JIGVHU8kEc1Lh30/Pb9WyQys9xKIE+kMQPnvXwQi1iDVurtqrzPIH+r6z9AffGXDAOeecabA8z/BbTnhZofG6TgPELx" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13699"], - "x-ms-request-id": ["d4afbebf-c4e6-49a1-adae-2eb201eec0f1"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174635Z:d4afbebf-c4e6-49a1-adae-2eb201eec0f1" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:35 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "1f2ac1c0-05e8-422d-9846-0b0f4fdbbcef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14180" ], + "x-ms-request-id": [ "1f2ac1c0-05e8-422d-9846-0b0f4fdbbcef" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221439Z:1f2ac1c0-05e8-422d-9846-0b0f4fdbbcef" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTMDvPKHov8MNXF4pw6Ka/u3YEfSUtDiSgrkys2cIau9EaO6M9oSpKQuAo4LbvVjXR1XM9qE6ZHtgJAM74BTou2nT67MGxvaPP9suhLJpNWVAgcfIn11IvGaKKvnwALFFSmu4p6gCENKrkxt7uI6q" ] }, "ContentHeaders": { - "Content-Length": ["709"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "10742" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/fdcc8adcec6b45ca914aecd18b2d8dbf/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-22T15:19:26Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007080\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/aa4d60fd88fe46f9a97a75d2bf08c291%2FImage%2FUbuntu-16_04-LTS-amd64-server-20200708-en-us-30GB.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a14Z\u0026ske=2022-03-19T16%3a50%3a14Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a14Z\u0026se=2022-03-19T16%3a50%3a14Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007080\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/405c7160072b47e3b40def27399e3e9a%2FImage%2FUbuntu-18_04-LTS-amd64-server-20200708.1-en-us-30GB.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a13Z\u0026ske=2022-03-19T16%3a50%3a13Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a13Z\u0026se=2022-03-19T16%3a50%3a13Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/CRP/offers/TestImage/skus/Dynamic/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Microsoft/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150825\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/10.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/WindowsServer2012R2DatacenterBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2012-R2-Datacenter-smalldisk/versions/9600.20120.2109130648\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8c94657ef5184ca7a4c86b2805c29d81%2FImage%2F1911ecfdd5284c81b44abb999cf70242%252FImage%252Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a15Z\u0026ske=2022-03-19T16%3a50%3a15Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a15Z\u0026se=2022-03-19T16%3a50%3a15Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.4651.2109130103\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e52f1319c8354093854767b37102c218%2FImage%2F1b76c9e2fd29468daace52f01d9ac267%252FImage%252Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a14Z\u0026ske=2022-03-19T16%3a50%3a14Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a14Z\u0026se=2022-03-19T16%3a50%3a14Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}]", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/6.6.1?api-version=2015-12-01-preview+26": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050?api-version=2015-12-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/6.6.1?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["47"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5f118241-9b85-4f0d-96eb-e4e2ed21f898"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1IIGK6FTMjvYrnN9hlSnHbzybyeSGJ+Or3eAO2laHXQsKgAEun0LkIVAhp2hMGFygthsBGCNX3isjho24eyFgb7u7ukaTD170Mi2OAAT2pQffU7+iAthrwdJQtqIHS6nqUW/AD0cdgY5unaToIH0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13698"], - "x-ms-request-id": ["5f118241-9b85-4f0d-96eb-e4e2ed21f898"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174635Z:5f118241-9b85-4f0d-96eb-e4e2ed21f898" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:35 GMT"] + "x-ms-unique-id": [ "1558" ], + "x-ms-client-request-id": [ "1d9f4ece-c624-45b9-b3ec-9c02319c02c9" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["575"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/6.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://fedgallerywestcentralus.blob.core.windows.net/vhds/fixed3.vhd\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Fortinet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview+27": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Fortinet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["48"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["4914f655-9269-41fb-a885-1f021e20bca9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvo87t1AkULsQnY9IGP/n4hq3HVVNnmJXd6akmk6av3l79iEXnojL6aMznV4m4vauzmbQWaLdy5Y6gbHGbeFp5hh9TTD/XdOtvcKwjcXoIj0bOi5riA6AvQviAw5F74NV92htbOojwVP9+K4uBCy7c" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13697"], - "x-ms-request-id": ["4914f655-9269-41fb-a885-1f021e20bca9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174635Z:4914f655-9269-41fb-a885-1f021e20bca9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:35 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "0e5fb405-faf9-4a62-8c8f-8f9e4a7e2f72" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14179" ], + "x-ms-request-id": [ "0e5fb405-faf9-4a62-8c8f-8f9e4a7e2f72" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221439Z:0e5fb405-faf9-4a62-8c8f-8f9e4a7e2f72" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUHE/rbNxW68qMQUpNb8QR2NFWSL9hrcIH4IpAcRfFNOLAM98FtsfpblWjtOnTGRW1CWbgB2Vypen7XVwAR/0QMG6+wPLdJFGADxwgBewTdB+RVcwE786fyj+LSG0jns5cK4JZZQhM4ymqFa7f1Hh" ] }, "ContentHeaders": { - "Content-Length": ["659"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "601" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/Fortinet/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/411d3bd4a3de4014a3d3eb7d187beed8/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T21:55:16Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Canonical/offers/UbuntuServer/skus/14.04.3-LTS/versions/14.04.201508050\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/KasperskyLab/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview+28": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007080?api-version=2015-12-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/KasperskyLab/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007080?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["49"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["f27f66a7-e773-4e62-b306-e709260e69f1"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvymZEHZNHYRzbSm94a+PYpZling+HAcWmVuGWY0gaLisH5Hy18XMF5DMsDuL0gJTTmzoYdfdiazcuWHL1kVPZ7fKsyZnasshpp5k7VUo4uTuhAUpHndCd4BmlZQsdICofDTKP9hrgjMJ57AVqrU50" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13696"], - "x-ms-request-id": ["f27f66a7-e773-4e62-b306-e709260e69f1"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174636Z:f27f66a7-e773-4e62-b306-e709260e69f1" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:35 GMT"] + "x-ms-unique-id": [ "1559" ], + "x-ms-client-request-id": [ "4c0b5e74-29d5-41af-bc0f-a1a9fbf968ce" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["716"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/KasperskyLab/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0e53c22baa894df185b51f0a987c8ed2/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T11:04:35Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-CentOS/skus/Enterprise/versions/9.3.026080002?api-version=2015-12-01-preview+29": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-CentOS/skus/Enterprise/versions/9.3.026080002?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["50"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["77c8dc87-dded-4177-9abe-2f7a2a0ea9ac"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaUg5o84eOx3dHYpvS5Wbw87O0UfFVd/AppBjbdLTwxuqO8mBI47ohyk1wTtcWyv0PjsleOx0MspFRVk8uBat7RmybKAbuUdWipJHSCiMkOTrEI//A0ZLpV3VOxw7i9OTilZTLy2be+Xm48OPLwBa" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13695"], - "x-ms-request-id": ["77c8dc87-dded-4177-9abe-2f7a2a0ea9ac"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174636Z:77c8dc87-dded-4177-9abe-2f7a2a0ea9ac" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:36 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "1ad33e86-38a9-40a6-a4da-f59ed2287978" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14178" ], + "x-ms-request-id": [ "1ad33e86-38a9-40a6-a4da-f59ed2287978" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221440Z:1ad33e86-38a9-40a6-a4da-f59ed2287978" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHbuPf/t5ratN6jAMcOSGIEmVYaG7fCmHGC9mtBP4mqcPlXToA+gbeCbehfdqZqdPrwmMjaicH6wYliHS1RWeEdOg+aHfAJEUBm0fq2gjhEDpjUbensDZyVeCR2+oDhYVfx+Kxqgqsip028I4v7Q0" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "893" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-CentOS/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d84feb2939954cb1a3c2fb460754b84c/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T20:24:36Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.202007080\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/aa4d60fd88fe46f9a97a75d2bf08c291%2FImage%2FUbuntu-16_04-LTS-amd64-server-20200708-en-us-30GB.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a14Z\u0026ske=2022-03-19T16%3a50%3a14Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a14Z\u0026se=2022-03-19T16%3a50%3a14Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026060001?api-version=2015-12-01-preview+30": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007080?api-version=2015-12-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026060001?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007080?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["51"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["0d1b69b3-53d3-4d90-8a67-bd8618d4cc45"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRva+kK7cZHiEos6U8w0TVM2AUjTgvH4TZjtS8oqfKexOHqNUVmRSH+kSSOj+ClAjY8dME+DowRRB4z1XcFp8Mf1YwNtmhSscT3e0FfYChV8Re/XlkDsgnzJ/RUzq1KRfZndiqIxBpUtXICr6QMyR2S" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13694"], - "x-ms-request-id": ["0d1b69b3-53d3-4d90-8a67-bd8618d4cc45"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174637Z:0d1b69b3-53d3-4d90-8a67-bd8618d4cc45" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:36 GMT"] + "x-ms-unique-id": [ "1560" ], + "x-ms-client-request-id": [ "5da5ab41-a2be-482e-b630-29eb276324d1" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026060001\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b7f0116949540a086c3d4c9b251222b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-22T08:45:59Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026080002?api-version=2015-12-01-preview+31": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026080002?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["52"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["fc8d38c8-9485-4381-90d2-ac0bca025514"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVcQuLLmt8GejxW3SAHBTRdYiDF9K99wEBmBRKjqMLAZCU0uQYQAGfiM6qvPlKwIlyR9evxfCSijiq8VJfdMLicTTHjaES0P7/TYl3kgmMolaqfeoZCU2MlNqgT+H5yaNg3fKFet/v4T9jptix7Ru" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13693"], - "x-ms-request-id": ["fc8d38c8-9485-4381-90d2-ac0bca025514"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174637Z:fc8d38c8-9485-4381-90d2-ac0bca025514" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:37 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "88bb3941-b422-42fc-a371-316b50631e1b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14177" ], + "x-ms-request-id": [ "88bb3941-b422-42fc-a371-316b50631e1b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221440Z:88bb3941-b422-42fc-a371-316b50631e1b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvp0RKNKDzSxb6t4I3EFFpP3PM3SLRX2usP6eMgi+DfX7gHBp1fvz3I0VEpyV1/1talBUSwDIu82TRovU1f7XHh7GmLtFZ7jNCRrnRUdQr2+1f5d6E5EUOGyluSP4NJ4K519+b3ePLQ82ws8WP9qgX" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "895" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/96abbb1d8d0240f3b293955633802812/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T11:38:55Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/canonical/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202007080\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/405c7160072b47e3b40def27399e3e9a%2FImage%2FUbuntu-18_04-LTS-amd64-server-20200708.1-en-us-30GB.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a13Z\u0026ske=2022-03-19T16%3a50%3a13Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a13Z\u0026se=2022-03-19T16%3a50%3a13Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-WS2016/skus/Enterprise/versions/9.3.026080002?api-version=2015-12-01-preview+32": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/CRP/offers/TestImage/skus/Dynamic/versions/1.0.0?api-version=2015-12-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-WS2016/skus/Enterprise/versions/9.3.026080002?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/CRP/offers/TestImage/skus/Dynamic/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["53"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["462d8668-2c90-4206-ba56-21d231f5c009"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCKgkWiBQkmBnO57nKVAisxeoHhLO9N/eOjzFIkKUN1+7y17x9WGfmkmsGbddb4XAroGLncFYsexiZMS7D3TbLJxoDldrRJKsQeSNg+rhKHKUI0iGjEGIxmfmaMCcVJgpdJkVaUH/gKMe3QU5y0Qr" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13692"], - "x-ms-request-id": ["462d8668-2c90-4206-ba56-21d231f5c009"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174637Z:462d8668-2c90-4206-ba56-21d231f5c009" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:37 GMT"] + "x-ms-unique-id": [ "1561" ], + "x-ms-client-request-id": [ "ef3b776b-c7e0-4f9c-b8ec-d704479029d7" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["711"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftRServer/offers/MLServer-WS2016/skus/Enterprise/versions/9.3.026080002\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/810b05a219ab47f484d6174133a11159/Image/OS.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T04:23:47Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Enterprise/versions/12.20.0?api-version=2015-12-01-preview+33": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Enterprise/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["54"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU3VU2ZI3ckB5AHrhpj5f6cr+6VFZGzsogcHk5smMEsbFSKlsbAc4Qt5246GAZyEMUxQMAWW5oTgzcEGCMA9H8+J1Lxqzj3jjh0TSwFtE0W9sD80dLVBe1bcIMH90UHjXI1osUi3W6Oru8GxGs5Mu" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13691"], - "x-ms-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:ce831619-f271-4a21-aeba-8e9ad9a7362d" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:37 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "ca542354-ab2f-406a-b8e3-d0a7fbeb2986" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14176" ], + "x-ms-request-id": [ "ca542354-ab2f-406a-b8e3-d0a7fbeb2986" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221440Z:ca542354-ab2f-406a-b8e3-d0a7fbeb2986" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvfIsCEmjEgtd9clZ+kgeKQ2Xfz0Fk8mvIe1ltMC0ylfC9yZCFcWRGPsR9fFh/NRQc7yZS9yi8A4ExWlwAavU6oKvmbpETA3zknIvXgyJaGZ2S1CSh1W1KjXxah2di99a00h23M08tLY2fqcum6tN" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "1127" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Enterprise/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e287e7de89264d4fbbfdf01acd3c39e1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T01:33:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/CRP/offers/TestImage/skus/Dynamic/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Express/versions/12.20.0?api-version=2015-12-01-preview+34": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Microsoft/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150825?api-version=2015-12-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Express/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Microsoft/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150825?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["55"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtGiH6FStieZMLvDqe1KMQ5E8e5qIJM18x7wdRs/dBhNrkFEYHmaQftfXpT4l8ukHwpXDotcRPVslaI9TmlQO3aSY5DGZPhGak637on7VisY1K2GduXNbMhTUAXI54ahtVfRPoyeHL+Tr99qTa1vj" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13690"], - "x-ms-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:941776e2-4bb2-41ff-b4ef-199dbd350389" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "x-ms-unique-id": [ "1562" ], + "x-ms-client-request-id": [ "6ebd493d-ac9f-426c-8ff4-52623f1facfd" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["710"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Express/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f5fa664ec7141b9b2772528b3423942/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T20:39:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Standard/versions/12.20.0?api-version=2015-12-01-preview+35": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Standard/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["56"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvebkS8LdeoCLjYywaLkhwvEZezZTdZtpD332VC0eTZYuwADt251dxQtZKibfomnV/NPoRPhCwkkAxBo1tqLm9eztnQRXdoFwvmuziCC/6NIyl9b/I882JshgY2gWUFazzHeD7u2QSZ3cLET/l5w7g" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13689"], - "x-ms-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:86d55048-babb-4d6b-8406-d518f78a3cd7" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "1cbb7892-6acb-43d8-aaa6-c8556785d438" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14175" ], + "x-ms-request-id": [ "1cbb7892-6acb-43d8-aaa6-c8556785d438" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221440Z:1cbb7892-6acb-43d8-aaa6-c8556785d438" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT63biW+SzpW+Pe8cpwVLRj2yYcFzrWPJBQTri7UTA0/ybSdBAhAF4DrQHXzpWQyX6WWHK5ZiT6ZxDIHmFkZosl6lVO66IlNWa1XT+jOx/AhnwUVdYt+0/y6qtD/1d38aVEZDqYB9DP7tBbI3/8Fn" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "1178" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Standard/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b673b3e0112473eba61d6de49ae0a19/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T12:23:13Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Microsoft/offers/WindowsServer/skus/2012-R2-Datacenter/versions/4.0.20150825\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Web/versions/12.20.0?api-version=2015-12-01-preview+36": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "x-ms-unique-id": [ "1563" ], + "x-ms-client-request-id": [ "4e8b337b-96e8-4b33-9511-1928b9be644f" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Enterprise/versions/13.1.900310?api-version=2015-12-01-preview+37": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Enterprise/versions/13.1.900310?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["58"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["c35e79e3-b26c-4148-b62c-242f6d955439"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvos0z8E/pGQ6GItKbbR8EdNFigZ+ui5s5JOVNmuI1po0k5Eur0zxIIzOO9AFAYfK+DzqZE8KE9bT7pHQjbAqD4sP9PlD45+qhh0oEXtEWtXYknJRXeKJL4Zj/0UBeeZLEqE+yIztsMGjnyqttrLN8" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13687"], - "x-ms-request-id": ["c35e79e3-b26c-4148-b62c-242f6d955439"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:c35e79e3-b26c-4148-b62c-242f6d955439" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:39 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "d0574286-4ed7-468d-898a-0c0396200b30" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14174" ], + "x-ms-request-id": [ "d0574286-4ed7-468d-898a-0c0396200b30" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221440Z:d0574286-4ed7-468d-898a-0c0396200b30" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4WXr3AnwII4Oc9dswFQN6aY+EkyZr8p+9wuBURo2RqWJNTQc6x7vuqf/gY/jWwpjt9jzS2d+w4T05T+G5JFILvmsBfBIs3T7RLlkYqW1NygGiCVJPOzZM0LEH4QPcJFrN/ik3weUumXQLAi6jjI3" ] }, "ContentHeaders": { - "Content-Length": ["721"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "578" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Enterprise/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d200e6821950484a8d2014f9ebb1bb9b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T13:02:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/SQLDEV/versions/13.1.900310?api-version=2015-12-01-preview+38": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/10.0.0?api-version=2015-12-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/SQLDEV/versions/13.1.900310?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/10.0.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["59"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["c35e79e3-b26c-4148-b62c-242f6d955439"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvos0z8E/pGQ6GItKbbR8EdNFigZ+ui5s5JOVNmuI1po0k5Eur0zxIIzOO9AFAYfK+DzqZE8KE9bT7pHQjbAqD4sP9PlD45+qhh0oEXtEWtXYknJRXeKJL4Zj/0UBeeZLEqE+yIztsMGjnyqttrLN8" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13687"], - "x-ms-request-id": ["c35e79e3-b26c-4148-b62c-242f6d955439"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:c35e79e3-b26c-4148-b62c-242f6d955439" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:39 GMT"] + "x-ms-unique-id": [ "1564" ], + "x-ms-client-request-id": [ "185a3073-4f60-4770-aae7-905dbee9438c" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["721"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/SQLDEV/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d200e6821950484a8d2014f9ebb1bb9b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T13:02:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Standard/versions/13.1.900310?api-version=2015-12-01-preview+39": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Standard/versions/13.1.900310?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["60"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["c35e79e3-b26c-4148-b62c-242f6d955439"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvos0z8E/pGQ6GItKbbR8EdNFigZ+ui5s5JOVNmuI1po0k5Eur0zxIIzOO9AFAYfK+DzqZE8KE9bT7pHQjbAqD4sP9PlD45+qhh0oEXtEWtXYknJRXeKJL4Zj/0UBeeZLEqE+yIztsMGjnyqttrLN8" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13687"], - "x-ms-request-id": ["c35e79e3-b26c-4148-b62c-242f6d955439"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:c35e79e3-b26c-4148-b62c-242f6d955439" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:39 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "346fcbe9-f77e-42c3-8f80-fda45a86fc51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14173" ], + "x-ms-request-id": [ "346fcbe9-f77e-42c3-8f80-fda45a86fc51" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221441Z:346fcbe9-f77e-42c3-8f80-fda45a86fc51" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZUFFGf/3LG+ePV6TRMbDFIvscECW/jRp/YE/ovIME615gSKJyBbkLx8sXyGg5XmnnanxPIn9LP4R5ZjGf3Yq8kt/95Y2DSvTGk46cCzIoXWLYJye8pirRi6fIW9sKOVoFifNEdMJavGk/dvlPvo5" ] }, "ContentHeaders": { - "Content-Length": ["721"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "615" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Standard/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d200e6821950484a8d2014f9ebb1bb9b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T13:02:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/WindowsServer/skus/2012-R2-Datacenter/versions/10.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azurestacktemplate.blob.core.windows.net/azurestacktemplate-public-container/WindowsServer2012R2DatacenterBYOL.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Web/versions/13.1.900310?api-version=2015-12-01-preview+40": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2012-R2-Datacenter-smalldisk/versions/9600.20120.2109130648?api-version=2015-12-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Web/versions/13.1.900310?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2012-R2-Datacenter-smalldisk/versions/9600.20120.2109130648?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["61"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["c35e79e3-b26c-4148-b62c-242f6d955439"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvos0z8E/pGQ6GItKbbR8EdNFigZ+ui5s5JOVNmuI1po0k5Eur0zxIIzOO9AFAYfK+DzqZE8KE9bT7pHQjbAqD4sP9PlD45+qhh0oEXtEWtXYknJRXeKJL4Zj/0UBeeZLEqE+yIztsMGjnyqttrLN8" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13687"], - "x-ms-request-id": ["c35e79e3-b26c-4148-b62c-242f6d955439"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:c35e79e3-b26c-4148-b62c-242f6d955439" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:39 GMT"] + "x-ms-unique-id": [ "1565" ], + "x-ms-client-request-id": [ "f0ac5db7-e95a-4bbe-8f7a-3813556958fb" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["721"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP1-WS2016/skus/Web/versions/13.1.900310\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/d200e6821950484a8d2014f9ebb1bb9b/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T13:02:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/13.1.900310?api-version=2015-12-01-preview+41": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["54"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU3VU2ZI3ckB5AHrhpj5f6cr+6VFZGzsogcHk5smMEsbFSKlsbAc4Qt5246GAZyEMUxQMAWW5oTgzcEGCMA9H8+J1Lxqzj3jjh0TSwFtE0W9sD80dLVBe1bcIMH90UHjXI1osUi3W6Oru8GxGs5Mu" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13691"], - "x-ms-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:ce831619-f271-4a21-aeba-8e9ad9a7362d" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:37 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "8f77ae7e-0cbb-45a0-9fe7-27f56fed69d2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14172" ], + "x-ms-request-id": [ "8f77ae7e-0cbb-45a0-9fe7-27f56fed69d2" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221441Z:8f77ae7e-0cbb-45a0-9fe7-27f56fed69d2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfvB29M1fWcnlrhFBPa/9hABsGWqAfeT0E4O0h2+y/Rw7/rLM73DG3gf2YZaUFkZyAUSZi7F/VzJKX10iuOX4ZAAk4Nb1n8YBvG9PE6VE8y7XTmZ0aXwE64w20XMrj6Ulxyy0722SSFY/c4HOkHCm" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "999" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e287e7de89264d4fbbfdf01acd3c39e1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T01:33:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2012-R2-Datacenter-smalldisk/versions/9600.20120.2109130648\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/8c94657ef5184ca7a4c86b2805c29d81%2FImage%2F1911ecfdd5284c81b44abb999cf70242%252FImage%252Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a15Z\u0026ske=2022-03-19T16%3a50%3a15Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a15Z\u0026se=2022-03-19T16%3a50%3a15Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/13.1.900310?api-version=2015-12-01-preview+42": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.4651.2109130103?api-version=2015-12-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.4651.2109130103?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["55"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtGiH6FStieZMLvDqe1KMQ5E8e5qIJM18x7wdRs/dBhNrkFEYHmaQftfXpT4l8ukHwpXDotcRPVslaI9TmlQO3aSY5DGZPhGak637on7VisY1K2GduXNbMhTUAXI54ahtVfRPoyeHL+Tr99qTa1vj" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13690"], - "x-ms-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:941776e2-4bb2-41ff-b4ef-199dbd350389" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "x-ms-unique-id": [ "1566" ], + "x-ms-client-request-id": [ "cad1be76-93d7-41f7-a995-e3491df5ec81" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["710"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f5fa664ec7141b9b2772528b3423942/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T20:39:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/SQLDEV/versions/13.1.900310?api-version=2015-12-01-preview+43": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["56"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvebkS8LdeoCLjYywaLkhwvEZezZTdZtpD332VC0eTZYuwADt251dxQtZKibfomnV/NPoRPhCwkkAxBo1tqLm9eztnQRXdoFwvmuziCC/6NIyl9b/I882JshgY2gWUFazzHeD7u2QSZ3cLET/l5w7g" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13689"], - "x-ms-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:86d55048-babb-4d6b-8406-d518f78a3cd7" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "deaa6ff2-0dcb-4ff7-804c-5cae70aa7c0d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14171" ], + "x-ms-request-id": [ "deaa6ff2-0dcb-4ff7-804c-5cae70aa7c0d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221441Z:deaa6ff2-0dcb-4ff7-804c-5cae70aa7c0d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWyuCVKbZWyHLLLOuc3jJ4VltKGU89Oq+Bvzntxu0g29b5YJmYEJe+f7vi6HjsuceyXriWdP7RMKqETyBSpx7nmm6W1k302QDmRKsAMWlgKQX4rUxDuF2nOAViImRntxvoNOb4VHR9Ou34zlQc0E4" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "989" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b673b3e0112473eba61d6de49ae0a19/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T12:23:13Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.4651.2109130103\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e52f1319c8354093854767b37102c218%2FImage%2F1b76c9e2fd29468daace52f01d9ac267%252FImage%252Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2022-03-17T16%3a30%3a14Z\u0026ske=2022-03-19T16%3a50%3a14Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2022-03-17T16%3a50%3a14Z\u0026se=2022-03-19T16%3a50%3a14Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/13.1.900310?api-version=2015-12-01-preview+44": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.0?api-version=2015-12-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "x-ms-unique-id": [ "1567" ], + "x-ms-client-request-id": [ "c5e931f5-6e58-4631-943e-0184ae321f03" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/13.1.900310?api-version=2015-12-01-preview+45": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "31180290-a5ce-47c6-b110-8b2dea477298" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14170" ], + "x-ms-request-id": [ "31180290-a5ce-47c6-b110-8b2dea477298" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221441Z:31180290-a5ce-47c6-b110-8b2dea477298" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi30+QvySLTr90W7VnyO5ia/bI5b9FxGucAo6IVZ9Bv29CEtM0Ouw8M/PaAvbKomBiOV2VGairxi22Nn3DaITl6vYoOgNotnMMfWupaO4j7XpKrCcizSRLhl4EUpDWkATz+MGsnhJ5QvzGZbE4ae/" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Enterprise/versions/14.0.1000320?api-version=2015-12-01-preview+51": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1?api-version=2015-12-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["54"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU3VU2ZI3ckB5AHrhpj5f6cr+6VFZGzsogcHk5smMEsbFSKlsbAc4Qt5246GAZyEMUxQMAWW5oTgzcEGCMA9H8+J1Lxqzj3jjh0TSwFtE0W9sD80dLVBe1bcIMH90UHjXI1osUi3W6Oru8GxGs5Mu" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13691"], - "x-ms-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:ce831619-f271-4a21-aeba-8e9ad9a7362d" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:37 GMT"] + "x-ms-unique-id": [ "1568" ], + "x-ms-client-request-id": [ "f345936d-e329-48db-8e98-907584f00350" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e287e7de89264d4fbbfdf01acd3c39e1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T01:33:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Express/versions/14.0.1000320?api-version=2015-12-01-preview+52": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["55"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtGiH6FStieZMLvDqe1KMQ5E8e5qIJM18x7wdRs/dBhNrkFEYHmaQftfXpT4l8ukHwpXDotcRPVslaI9TmlQO3aSY5DGZPhGak637on7VisY1K2GduXNbMhTUAXI54ahtVfRPoyeHL+Tr99qTa1vj" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13690"], - "x-ms-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:941776e2-4bb2-41ff-b4ef-199dbd350389" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "3f00f6c6-9ec5-4f4e-9f50-f8cbd4b9cc01" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14169" ], + "x-ms-request-id": [ "3f00f6c6-9ec5-4f4e-9f50-f8cbd4b9cc01" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221441Z:3f00f6c6-9ec5-4f4e-9f50-f8cbd4b9cc01" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmfhhGIZOS2paMpbN3TBKhZi3wwO9HWjpXoxMKCO/2zwzOaNkt2IzPZW+4OMtGLOWQS67Yy93tCWvBy/k9tMWLY424KQpZRkemUOYdeiT4YRn0G8VcHrAEIEzqRtzAqQt+SQlUOYJpCPTF+jooWE5" ] }, "ContentHeaders": { - "Content-Length": ["710"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f5fa664ec7141b9b2772528b3423942/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T20:39:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/SQLDEV/versions/14.0.1000320?api-version=2015-12-01-preview+53": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2?api-version=2015-12-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["56"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvebkS8LdeoCLjYywaLkhwvEZezZTdZtpD332VC0eTZYuwADt251dxQtZKibfomnV/NPoRPhCwkkAxBo1tqLm9eztnQRXdoFwvmuziCC/6NIyl9b/I882JshgY2gWUFazzHeD7u2QSZ3cLET/l5w7g" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13689"], - "x-ms-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:86d55048-babb-4d6b-8406-d518f78a3cd7" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "x-ms-unique-id": [ "1569" ], + "x-ms-client-request-id": [ "5e1579d7-31c7-4728-a525-ca21fc3b9d33" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b673b3e0112473eba61d6de49ae0a19/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T12:23:13Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Standard/versions/14.0.1000320?api-version=2015-12-01-preview+54": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "be00d756-8735-42e3-b4fc-5273bac5b587" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14168" ], + "x-ms-request-id": [ "be00d756-8735-42e3-b4fc-5273bac5b587" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221442Z:be00d756-8735-42e3-b4fc-5273bac5b587" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdSk1lAIZbpOOzdRjYsA7MCAB3h8vxqN6oH+IVvzF9plgWITF+B8P/HsHnkHNiYHqefoltIkNCUkzZDVRbkK968M6o3z1wZPA1YBCSJUX9Zoe8tkM6OKeCLtSWYEUV5NHn3Klq2LhawfGWWT9FYdG" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New%20Virtual%20Hard%20Disk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-Ubuntu1604/skus/Web/versions/14.0.1000320?api-version=2015-12-01-preview+55": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0?api-version=2015-12-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "x-ms-unique-id": [ "1570" ], + "x-ms-client-request-id": [ "944a5f02-6c2f-4044-b85c-39200d9615e6" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Enterprise/versions/14.0.1000320?api-version=2015-12-01-preview+46": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["54"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU3VU2ZI3ckB5AHrhpj5f6cr+6VFZGzsogcHk5smMEsbFSKlsbAc4Qt5246GAZyEMUxQMAWW5oTgzcEGCMA9H8+J1Lxqzj3jjh0TSwFtE0W9sD80dLVBe1bcIMH90UHjXI1osUi3W6Oru8GxGs5Mu" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13691"], - "x-ms-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:ce831619-f271-4a21-aeba-8e9ad9a7362d" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:37 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "e7aa2be2-d4c2-4150-9697-5881d3e6cc33" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14167" ], + "x-ms-request-id": [ "e7aa2be2-d4c2-4150-9697-5881d3e6cc33" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221442Z:e7aa2be2-d4c2-4150-9697-5881d3e6cc33" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnHyEX/lyX63QafJ9KTMLzMCfWm6RE7TiBMltEYcnhcbSE5EtJjVJVCzJhgPwnHqLq1L8Nr1cWwrPg93GsYYa5tg5XO8k6kQ+EVLwZF1xnANNQ1lSI7NvZoZf5IxmoU7psEGMpkU2csJyK2iFoL7a" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "1131" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e287e7de89264d4fbbfdf01acd3c39e1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T01:33:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Express/versions/14.0.1000320?api-version=2015-12-01-preview+47": { + "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview+1": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["55"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"uri\": \"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"\r\n }\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtGiH6FStieZMLvDqe1KMQ5E8e5qIJM18x7wdRs/dBhNrkFEYHmaQftfXpT4l8ukHwpXDotcRPVslaI9TmlQO3aSY5DGZPhGak637on7VisY1K2GduXNbMhTUAXI54ahtVfRPoyeHL+Tr99qTa1vj" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13690"], - "x-ms-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:941776e2-4bb2-41ff-b4ef-199dbd350389" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] }, "ContentHeaders": { - "Content-Length": ["710"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f5fa664ec7141b9b2772528b3423942/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T20:39:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/SQLDEV/versions/14.0.1000320?api-version=2015-12-01-preview+48": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["56"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + "Content-Type": [ "application/json" ], + "Content-Length": [ "202" ] + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvebkS8LdeoCLjYywaLkhwvEZezZTdZtpD332VC0eTZYuwADt251dxQtZKibfomnV/NPoRPhCwkkAxBo1tqLm9eztnQRXdoFwvmuziCC/6NIyl9b/I882JshgY2gWUFazzHeD7u2QSZ3cLET/l5w7g" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13689"], - "x-ms-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:86d55048-babb-4d6b-8406-d518f78a3cd7" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "fbdb0d45-6cef-479b-ad29-b511f30fbb77" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1091" ], + "x-ms-request-id": [ "fbdb0d45-6cef-479b-ad29-b511f30fbb77" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221444Z:fbdb0d45-6cef-479b-ad29-b511f30fbb77" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:14:44 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv79ZjeQGOHNd9Pp4Xb15Zz8oUfGLnSNFd1vMyAd3lGjEDfhJxS4N9jnict2wDsQ8Ck/N5IXbo2AWP4YREiruCKARJNEQNlQWhnoMgTkg7ssW4vz6BPXuFIs051BAPas0exR02jMLxFLBd1yzvVkcY" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "578" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b673b3e0112473eba61d6de49ae0a19/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T12:23:13Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Standard/versions/14.0.1000320?api-version=2015-12-01-preview+49": { + "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "1572" ], + "x-ms-client-request-id": [ "a6e90a13-7bf7-4bc2-b3e5-3420d1b94348" ], + "CommandName": [ "Add-AzsPlatformImage" ], + "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-SLES12SP2/skus/Web/versions/14.0.1000320?api-version=2015-12-01-preview+50": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] - }, - "ContentHeaders": {} + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "6f286065-2c80-413e-b72a-d191e9fe812f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14166" ], + "x-ms-request-id": [ "6f286065-2c80-413e-b72a-d191e9fe812f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221515Z:6f286065-2c80-413e-b72a-d191e9fe812f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:15:15 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjjDULoS75u681faAya4aWnH3VED1Yxio8CXdNEBfVwLSVEMnEKZITiD60C+pQyWsnWplKc+qgsWKEcjc0rx5muq6nljGV+Mra5Pn0EeCC8U5VdMPDf56FHTV2h0NN2ArY6u7Og1HpgIEtirY9DId" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "578" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Enterprise/versions/14.0.1000320?api-version=2015-12-01-preview+56": { + "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["54"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "1573" ], + "x-ms-client-request-id": [ "a6e90a13-7bf7-4bc2-b3e5-3420d1b94348" ], + "CommandName": [ "Add-AzsPlatformImage" ], + "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, - "ContentHeaders": {} + "ContentHeaders": { + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU3VU2ZI3ckB5AHrhpj5f6cr+6VFZGzsogcHk5smMEsbFSKlsbAc4Qt5246GAZyEMUxQMAWW5oTgzcEGCMA9H8+J1Lxqzj3jjh0TSwFtE0W9sD80dLVBe1bcIMH90UHjXI1osUi3W6Oru8GxGs5Mu" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13691"], - "x-ms-request-id": ["ce831619-f271-4a21-aeba-8e9ad9a7362d"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:ce831619-f271-4a21-aeba-8e9ad9a7362d" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:37 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "279da4d4-23c0-4d4d-8268-a5bb0b2f74c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14165" ], + "x-ms-request-id": [ "279da4d4-23c0-4d4d-8268-a5bb0b2f74c1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221515Z:279da4d4-23c0-4d4d-8268-a5bb0b2f74c1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:15:15 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5E4xEJRTajVjjJZ9g2wNOgpTMiT31/VAS609bwae/oXgyVqMSTiNSw05BMfXwNOV7LW/6Ekbpl7shk2tvdzonmcNs4vl7qf45Fx0b7oRnxoKLfja01EKnBUKF4vSReYv1UGBI1/4xeq0gqenJq/b" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "578" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/e287e7de89264d4fbbfdf01acd3c39e1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T01:33:29Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Express/versions/14.0.1000320?api-version=2015-12-01-preview+57": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview+1": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/12.20.0?api-version=2015-12-01-preview", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"uri\": \"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"\r\n }\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["55"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] }, - "ContentHeaders": {} + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "202" ] + } }, "Response": { - "StatusCode": 200, + "StatusCode": 201, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtGiH6FStieZMLvDqe1KMQ5E8e5qIJM18x7wdRs/dBhNrkFEYHmaQftfXpT4l8ukHwpXDotcRPVslaI9TmlQO3aSY5DGZPhGak637on7VisY1K2GduXNbMhTUAXI54ahtVfRPoyeHL+Tr99qTa1vj" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13690"], - "x-ms-request-id": ["941776e2-4bb2-41ff-b4ef-199dbd350389"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:941776e2-4bb2-41ff-b4ef-199dbd350389" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "b31b74a8-5b25-486f-b3c2-7dc9d485984c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1090" ], + "x-ms-request-id": [ "b31b74a8-5b25-486f-b3c2-7dc9d485984c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221515Z:b31b74a8-5b25-486f-b3c2-7dc9d485984c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:15:15 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAdArx/5wHpYFzR7yT7iqY0sazHt0ld29PfjGdin8YBFFix8QqVC90CPMPgJC8CkFOJ9wCTg9RQBvH7pMsAW2f2gulzOv4qayjvWcfp52nHAROT5K/nPzetuov/7pFjlWyOZ5IBFt/HgkUeGYLNPT" ] }, "ContentHeaders": { - "Content-Length": ["710"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "577" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Express/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/0f5fa664ec7141b9b2772528b3423942/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-25T20:39:44Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Creating\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/SQLDEV/versions/14.0.1000204?api-version=2015-12-01-preview+58": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["56"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "1575" ], + "x-ms-client-request-id": [ "96713ea3-1b48-47dc-8e6b-3f06634f8ac6" ], + "CommandName": [ "Add-AzsPlatformImage" ], + "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, - "ContentHeaders": {} + "ContentHeaders": { + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvebkS8LdeoCLjYywaLkhwvEZezZTdZtpD332VC0eTZYuwADt251dxQtZKibfomnV/NPoRPhCwkkAxBo1tqLm9eztnQRXdoFwvmuziCC/6NIyl9b/I882JshgY2gWUFazzHeD7u2QSZ3cLET/l5w7g" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13689"], - "x-ms-request-id": ["86d55048-babb-4d6b-8406-d518f78a3cd7"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174638Z:86d55048-babb-4d6b-8406-d518f78a3cd7" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "029e0d6d-4264-46a2-922d-7ea87b299406" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14164" ], + "x-ms-request-id": [ "029e0d6d-4264-46a2-922d-7ea87b299406" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221546Z:029e0d6d-4264-46a2-922d-7ea87b299406" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:15:45 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFrTLH5dIG6/brlKJXfE041lQlOXwAuSAXEeQJBhzFVAyp/XUG38OrAyOy15Zfafz2dU3wXa8xo/hDJkgne5GQl/GHONnT6e5hIylVPsSKr4liPQLpclMRCqkyYDsylmvHBKQ8ybEWqfybhc/jpX/" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "578" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Standard/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/3b673b3e0112473eba61d6de49ae0a19/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-24T12:23:13Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Standard/versions/14.0.1000320?api-version=2015-12-01-preview+59": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "1576" ], + "x-ms-client-request-id": [ "96713ea3-1b48-47dc-8e6b-3f06634f8ac6" ], + "CommandName": [ "Add-AzsPlatformImage" ], + "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, - "ContentHeaders": {} + "ContentHeaders": { + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "cf8d4e44-e815-47a9-9bb5-5936b446b657" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14163" ], + "x-ms-request-id": [ "cf8d4e44-e815-47a9-9bb5-5936b446b657" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221546Z:cf8d4e44-e815-47a9-9bb5-5936b446b657" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:15:45 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE0EcXByGQBlIqQL9IcoBll8HZU/y/vuN8HEI71GSzHRG7wvnUKfZ2j0jgajGIKalp1gq11IwzRa/OcW8vW74V4YPyjf+Sv27JXvIoGxOhzjwVJ9GQqk9CZ/8R0LYyGnYbnPcdY3Y5VLnri3+/4Fb" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "578" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"redmond\",\"properties\":{\"osDisk\":{\"osType\":\"Linux\",\"uri\":\"https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2017-WS2016/skus/Web/versions/14.0.1000320?api-version=2015-12-01-preview+60": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview+4": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": ["57"], - "User-Agent": ["AzurePowerShell/Az4.0.0-preview"], - "Authorization": ["[Filtered]"] + "x-ms-unique-id": [ "1577" ], + "x-ms-client-request-id": [ "83a0074b-44cd-465a-bac3-9d29bffad81f" ], + "CommandName": [ "Remove-AzsPlatformImage" ], + "FullCommandName": [ "Remove-AzsPlatformImage_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] }, - "ContentHeaders": {} + "ContentHeaders": { + } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": ["no-cache"], - "Pragma": ["no-cache"], - "x-ms-correlation-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "Server": ["Microsoft-HTTPAPI/2.0"], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHUZPws2G8Z3p5Rpg0lgQSxj0wuKeNAREfXoXbfgvmppWo9EPQ+k9DazGhFS5/TowTgGaVexhs3TlK8yno/NJnek1iUEdlKDenqwWRsnU32qkLVcPOdeK+lojkzZHuX7Yr+g9lruSEQXCPG7pXBt0" - ], - "x-ms-ratelimit-remaining-subscription-reads": ["13688"], - "x-ms-request-id": ["5630f6f2-7e01-4e70-bf8a-ade564e7c9a9"], - "x-ms-routing-request-id": [ - "NORTHWEST:20200214T174639Z:5630f6f2-7e01-4e70-bf8a-ade564e7c9a9" - ], - "Strict-Transport-Security": ["max-age=31536000; includeSubDomains"], - "X-Content-Type-Options": ["nosniff"], - "Date": ["Fri, 14 Feb 2020 17:46:38 GMT"] + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "bdceb78f-38be-4077-baef-a6e661676e4a" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14911" ], + "x-ms-request-id": [ "bdceb78f-38be-4077-baef-a6e661676e4a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T221546Z:bdceb78f-38be-4077-baef-a6e661676e4a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 22:15:45 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvj6fBTb5keqf0My0biQXfAcuXy9y7wMK04eWxsQt4xQTxgJ6tH/8WnDpUgJSz7FhjEb1scRk2mj24NMTNsTGtmuv0LqZfgH3CBwmH9ub2OksQWH1YWJ6QrQHItKcrbQdim2UPsPjCv1pkq5jJT45G" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/platformImage/publishers/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Web/versions/12.20.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions\",\"location\":\"northwest\",\"properties\":{\"osDisk\":{\"osType\":\"Windows\",\"uri\":\"https://azstmktprodwcu001.blob.core.windows.net/packages/f5b2316627dc40a9838d9abc7d53f0a1/Image/disk.vhd?sv=2018-03-28\u0026sr=b\u0026se=2019-04-21T17:25:56Z\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}" + "Content": null, + "isContentBase64": false } } -} +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Tests.ps1 b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Tests.ps1 index 77d36496..0dc2de50 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Tests.ps1 +++ b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Tests.ps1 @@ -73,7 +73,7 @@ Describe 'Get-AzsPlatformImage' { break } } -<# A lot of recordings are missing from this test + It "TestGetAllPlatformImages" -Skip:$('TestGetAllPlatformImages' -in $global:SkippedTests) { $global:TestName = 'TestGetAllPlatformImages' @@ -84,17 +84,14 @@ Describe 'Get-AzsPlatformImage' { AssertSame -Expected $platformImage -Found $result } } -#> - -<# TODO: UnComment once the test recordings are added for these tests. It "TestCreatePlatformImage" -Skip:$('TestCreatePlatformImage' -in $global:SkippedTests) { $global:TestName = 'TestCreatePlatformImage' - $script:Publisher = "Canonical"; - $script:Offer = "UbuntuServer"; - $script:Sku = "16.04-LTS"; + $script:Publisher = "MicrosoftCrpTeam"; + $script:Offer = "CrpPester"; + $script:Sku = "CrpPester"; $script:Version = "1.0.0"; $image = Add-AzsPlatformImage ` @@ -103,7 +100,7 @@ Describe 'Get-AzsPlatformImage' { -Sku $script:Sku ` -Version $script:Version ` -OsType "Linux" ` - -OsUri $global:VHDUri + -OsUri $env.VHDUri $image | Should Not Be $null @@ -112,8 +109,8 @@ Describe 'Get-AzsPlatformImage' { Write-Debug $image.OsUri Write-Debug "Global VHDUri:" - Write-Debug $global:VHDUri - $image.OsUri | Should be $global:VHDUri + Write-Debug $env.VHDUri + $image.OsUri | Should be $env.VHDUri $image.OsType | Should be "Linux" while ($image.ProvisioningState -eq "Creating") { @@ -132,10 +129,10 @@ Describe 'Get-AzsPlatformImage' { It "TestCreateAndDeletePlatformImage" -Skip:$('TestCreateAndDeletePlatformImage' -in $global:SkippedTests) { $global:TestName = 'TestCreateAndDeletePlatformImage' - $script:Publisher = "Canonical"; - $script:Offer = "UbuntuServer"; - $script:Sku = "16.04-LTS"; - $script:Version = "1.0.0"; + $script:Publisher = "MicrosoftCrpTeam"; + $script:Offer = "CrpPester"; + $script:Sku = "CrpPester"; + $script:Version = "1.0.1"; $image = Add-AzsPlatformImage ` -Publisher $script:Publisher ` @@ -143,10 +140,10 @@ Describe 'Get-AzsPlatformImage' { -Sku $script:Sku ` -Version $script:Version ` -OsType "Linux" ` - -OsUri $global:VHDUri + -OsUri $env.VHDUri $image | Should Not Be $null - $image.OsUri | Should be $global:VHDUri + $image.OsUri | Should be $env.VHDUri while ($image.ProvisioningState -ne "Succeeded") { $image = Get-AzsPlatformImage ` @@ -158,5 +155,4 @@ Describe 'Get-AzsPlatformImage' { $image.ProvisioningState | Should be "Succeeded" Remove-AzsPlatformImage -Publisher $script:Publisher -Offer $script:Offer -Version $script:version -Sku $script:Sku } - #> } diff --git a/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json index 0c93002b..43f6f75c 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json @@ -1,12 +1,17 @@ { - "Get-AzsVMExtension+[NoContext]+TestListVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { + "Get-AzsVMExtension+[NoContext]+TestListVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "8" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1300" ], + "x-ms-client-request-id": [ "b525b6e3-26c3-4b87-ae38-4402a8a1ac19" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -15,898 +20,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1db80b85-5148-4124-a4e7-62936cb877dc" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHXtQrOHDIEUzKdTkUUQyKkhLiGVH7bNUzcAnEqNnHWE1HU1TmKr8MTIeJJGhQpQtKNy0zwCoeRuj+oEFGnPkBILYEH1SGrVrvYKPgenXAeoGwrie1zgf+Tx7mShmgQJRvLoRipIvIAmNGUSuu4Km" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14864" ], - "x-ms-request-id": [ "1db80b85-5148-4124-a4e7-62936cb877dc" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014416Z:1db80b85-5148-4124-a4e7-62936cb877dc" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "28979" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Performance.Diagnostics/types/AzurePerformanceDiagnostics/versions/1.0.13\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Performance.Diagnostics\",\"extensionType\":\"AzurePerformanceDiagnostics\",\"typeHandlerVersion\":\"1.0.13\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.11.3.12\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.11.3.12\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KESL/versions/1.0.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"KasperskyLab.SecurityAgent\",\"extensionType\":\"KESL\",\"typeHandlerVersion\":\"1.0.0.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.2.2\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.4.7.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMWindowsAgent/versions/6.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"CloudLinkEMC.SecureVM\",\"extensionType\":\"CloudLinkSecureVMWindowsAgent\",\"typeHandlerVersion\":\"6.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentLinux/versions/9.7.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"extensionType\":\"DependencyAgentLinux\",\"typeHandlerVersion\":\"9.7.4\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.9.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.2.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.2.1.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScript/versions/2.0.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"CustomScript\",\"typeHandlerVersion\":\"2.0.6\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMLinuxAgent/versions/6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"CloudLinkEMC.SecureVM\",\"extensionType\":\"CloudLinkSecureVMLinuxAgent\",\"typeHandlerVersion\":\"6.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.SqlServer.Management/types/SqlIaaSAgent/versions/1.2.30.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.SqlServer.Management\",\"extensionType\":\"SqlIaaSAgent\",\"typeHandlerVersion\":\"1.2.30.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackup/versions/1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Acronis.Backup\",\"extensionType\":\"AcronisBackup\",\"typeHandlerVersion\":\"1.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/OmsAgentForLinux/versions/1.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"OmsAgentForLinux\",\"typeHandlerVersion\":\"1.8\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.8\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.2.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"DockerExtension\",\"typeHandlerVersion\":\"1.1.1606092330\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.19.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KSWS/versions/1.0.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"KasperskyLab.SecurityAgent\",\"extensionType\":\"KSWS\",\"typeHandlerVersion\":\"1.0.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.76.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.76.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackupLinux/versions/1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Acronis.Backup\",\"extensionType\":\"AcronisBackupLinux\",\"typeHandlerVersion\":\"1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentWindows/versions/9.7.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"extensionType\":\"DependencyAgentWindows\",\"typeHandlerVersion\":\"9.7.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.4.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.10.1.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.12.2.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.12.2.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"LinuxDiagnostic\",\"typeHandlerVersion\":\"3.0.121\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.9\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.9.3\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.5\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.5.2\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.77.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.10900.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"OSPatchingForLinux\",\"typeHandlerVersion\":\"2.3.0.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.4.0.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft\",\"extensionType\":\"MicroExtension\",\"typeHandlerVersion\":\"0.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":true,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Failed\"}}]" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetVMExtension+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "9" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "26fec0ab-0030-489f-86cb-2e7d1c129708" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7UBnHu/KVNzm65aQ8teGt4Zo+rJYF4tpr+z9uG9y06n4zJcygtPSoj3Uf/r1MzdMmqDb32LOJiUypHSmxBe1epdkJmZ4c8Gfll3mcSTSeIaDjGUQJAS5BuWD9/CXAw9AboAQJezeF0eCHNVo8YdS" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14863" ], - "x-ms-request-id": [ "26fec0ab-0030-489f-86cb-2e7d1c129708" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014418Z:26fec0ab-0030-489f-86cb-2e7d1c129708" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:18 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "28979" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Performance.Diagnostics/types/AzurePerformanceDiagnostics/versions/1.0.13\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Performance.Diagnostics\",\"extensionType\":\"AzurePerformanceDiagnostics\",\"typeHandlerVersion\":\"1.0.13\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.11.3.12\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.11.3.12\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KESL/versions/1.0.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"KasperskyLab.SecurityAgent\",\"extensionType\":\"KESL\",\"typeHandlerVersion\":\"1.0.0.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.2.2\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.4.7.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMWindowsAgent/versions/6.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"CloudLinkEMC.SecureVM\",\"extensionType\":\"CloudLinkSecureVMWindowsAgent\",\"typeHandlerVersion\":\"6.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentLinux/versions/9.7.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"extensionType\":\"DependencyAgentLinux\",\"typeHandlerVersion\":\"9.7.4\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.9.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.2.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.2.1.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScript/versions/2.0.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"CustomScript\",\"typeHandlerVersion\":\"2.0.6\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMLinuxAgent/versions/6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"CloudLinkEMC.SecureVM\",\"extensionType\":\"CloudLinkSecureVMLinuxAgent\",\"typeHandlerVersion\":\"6.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.SqlServer.Management/types/SqlIaaSAgent/versions/1.2.30.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.SqlServer.Management\",\"extensionType\":\"SqlIaaSAgent\",\"typeHandlerVersion\":\"1.2.30.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackup/versions/1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Acronis.Backup\",\"extensionType\":\"AcronisBackup\",\"typeHandlerVersion\":\"1.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/OmsAgentForLinux/versions/1.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"OmsAgentForLinux\",\"typeHandlerVersion\":\"1.8\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.8\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.2.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"DockerExtension\",\"typeHandlerVersion\":\"1.1.1606092330\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.19.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KSWS/versions/1.0.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"KasperskyLab.SecurityAgent\",\"extensionType\":\"KSWS\",\"typeHandlerVersion\":\"1.0.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.76.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.76.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackupLinux/versions/1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Acronis.Backup\",\"extensionType\":\"AcronisBackupLinux\",\"typeHandlerVersion\":\"1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentWindows/versions/9.7.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"extensionType\":\"DependencyAgentWindows\",\"typeHandlerVersion\":\"9.7.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.4.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.10.1.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.12.2.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.12.2.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"LinuxDiagnostic\",\"typeHandlerVersion\":\"3.0.121\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.9\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.9.3\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.5\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.5.2\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.77.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.10900.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"OSPatchingForLinux\",\"typeHandlerVersion\":\"2.3.0.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.4.0.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft\",\"extensionType\":\"MicroExtension\",\"typeHandlerVersion\":\"0.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":true,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Failed\"}}]" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "10" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5b865ee7-3241-4e02-b2a5-abfa8fbd9228" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYPBnVyUizLL2ILogylw80APQjdxIvCGUdg/R04XDno5AE9LFI0XhxgWzoAprAticde4CijgV61vMb/1fimBR9orVoXgJcqq7pcTmURmpO6xsa6Lz8vzujhYJYB8Mne+CKArWyxpjqasc2GC4kQNa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14862" ], - "x-ms-request-id": [ "5b865ee7-3241-4e02-b2a5-abfa8fbd9228" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014420Z:5b865ee7-3241-4e02-b2a5-abfa8fbd9228" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:19 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "28979" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Performance.Diagnostics/types/AzurePerformanceDiagnostics/versions/1.0.13\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Performance.Diagnostics\",\"extensionType\":\"AzurePerformanceDiagnostics\",\"typeHandlerVersion\":\"1.0.13\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.11.3.12\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.11.3.12\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KESL/versions/1.0.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"KasperskyLab.SecurityAgent\",\"extensionType\":\"KESL\",\"typeHandlerVersion\":\"1.0.0.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.2.2\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.4.7.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMWindowsAgent/versions/6.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"CloudLinkEMC.SecureVM\",\"extensionType\":\"CloudLinkSecureVMWindowsAgent\",\"typeHandlerVersion\":\"6.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentLinux/versions/9.7.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"extensionType\":\"DependencyAgentLinux\",\"typeHandlerVersion\":\"9.7.4\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.9.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.2.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.2.1.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScript/versions/2.0.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"CustomScript\",\"typeHandlerVersion\":\"2.0.6\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMLinuxAgent/versions/6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"CloudLinkEMC.SecureVM\",\"extensionType\":\"CloudLinkSecureVMLinuxAgent\",\"typeHandlerVersion\":\"6.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.SqlServer.Management/types/SqlIaaSAgent/versions/1.2.30.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.SqlServer.Management\",\"extensionType\":\"SqlIaaSAgent\",\"typeHandlerVersion\":\"1.2.30.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackup/versions/1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Acronis.Backup\",\"extensionType\":\"AcronisBackup\",\"typeHandlerVersion\":\"1.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/OmsAgentForLinux/versions/1.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"OmsAgentForLinux\",\"typeHandlerVersion\":\"1.8\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.8\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.2.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"DockerExtension\",\"typeHandlerVersion\":\"1.1.1606092330\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.19.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KSWS/versions/1.0.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"KasperskyLab.SecurityAgent\",\"extensionType\":\"KSWS\",\"typeHandlerVersion\":\"1.0.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.76.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.76.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackupLinux/versions/1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Acronis.Backup\",\"extensionType\":\"AcronisBackupLinux\",\"typeHandlerVersion\":\"1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentWindows/versions/9.7.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"extensionType\":\"DependencyAgentWindows\",\"typeHandlerVersion\":\"9.7.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.4.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.10.1.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.12.2.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.12.2.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"LinuxDiagnostic\",\"typeHandlerVersion\":\"3.0.121\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.9\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.9.3\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.5\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.5.2\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.77.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.10900.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"OSPatchingForLinux\",\"typeHandlerVersion\":\"2.3.0.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.4.0.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft\",\"extensionType\":\"MicroExtension\",\"typeHandlerVersion\":\"0.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":true,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Failed\"}}]" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Performance.Diagnostics/types/AzurePerformanceDiagnostics/versions/1.0.13?api-version=2015-12-01-preview+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Performance.Diagnostics/types/AzurePerformanceDiagnostics/versions/1.0.13?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "11" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d291da91-724c-43a9-84c0-33393491a7be" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2CohxAroHmZRlMygumbnroOEfW3X7TC+5qlz4knRs7RQLQ2r1g31veMIsCI4lZZY+kNJmtGlPqSExte0lpJX1PpIM8qbUBzcVT0qKdQnDqYgRWF+WS685blOJpiiFhMnv5fQIIddCDry6fIVbSH+" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14861" ], - "x-ms-request-id": [ "d291da91-724c-43a9-84c0-33393491a7be" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014421Z:d291da91-724c-43a9-84c0-33393491a7be" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:21 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "682" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Performance.Diagnostics/types/AzurePerformanceDiagnostics/versions/1.0.13\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Performance.Diagnostics\",\"extensionType\":\"AzurePerformanceDiagnostics\",\"typeHandlerVersion\":\"1.0.13\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.11.3.12?api-version=2015-12-01-preview+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.11.3.12?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "12" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "59ff2e5f-a8eb-49f1-a5d1-70dc4520d055" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnoRlUg0iodUMkI65ZndT459/9GvaQPSDQBovlvs8OlUFRuK8dIgEU1hY3vsq5raPLcGzxTpA/+KlSR6J2jhUzhYyRwo0fEk7NqayQ1L8g3MQnam2n1zQALtTScHfRp+gz1Xv73DhDC3HMCOxVrHO" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14860" ], - "x-ms-request-id": [ "59ff2e5f-a8eb-49f1-a5d1-70dc4520d055" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014423Z:59ff2e5f-a8eb-49f1-a5d1-70dc4520d055" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:23 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "640" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.11.3.12\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.11.3.12\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.4?api-version=2015-12-01-preview+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.4?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "13" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "603522bd-4d6c-4289-83f1-5f22fd39b7fe" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDhwHZ7BiqZ7xVx6NQ+T04JFPZXczfCD3oQ9rwKqhBUNlhFv21X3FnjoSEWAZvNb5IDoMjijeQCEvU1y41Vtn5Ev1Fts1wmf5EsgIqr70wincDKsmR32urq+n4hV75MCZzSNjselRTFL+OgrlI8Sr" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14859" ], - "x-ms-request-id": [ "603522bd-4d6c-4289-83f1-5f22fd39b7fe" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014424Z:603522bd-4d6c-4289-83f1-5f22fd39b7fe" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "680" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.1?api-version=2015-12-01-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.1?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "14" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3eaa22f1-a436-4e53-b7fc-3c5bf72a260d" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5FgNwmRi06QrJmjEzamPx8FYPlPW6p9TBo/7MedoWQfbuW8r3VQf1iQrjOhmWUx3AlQXO0nYWHy6/s8b1x35uc2LJ5NHuhDwvcE/EzfpId++vr2nXio+MWcHEaW60OiKA1oexWsHWfKITpP9tAbt" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14858" ], - "x-ms-request-id": [ "3eaa22f1-a436-4e53-b7fc-3c5bf72a260d" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014426Z:3eaa22f1-a436-4e53-b7fc-3c5bf72a260d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "630" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KESL/versions/1.0.0.0?api-version=2015-12-01-preview+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KESL/versions/1.0.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "15" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0c5a5ec0-55ce-49f3-8817-da1d1b99ed2e" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXnzorrtRRbrqqJ0bSE1Pb9raCTBaewbYBuUNa8eUx25CVQpcBH3iAi48kugN/dQ3dJnEV0q9N/jE3YzDxag4vEJenbVIn/HRAH6UqO7RUkwkwQkqb3cgrtlbqwd5aKQ2fMgKNtkoDeAJDVlTWoba" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14857" ], - "x-ms-request-id": [ "0c5a5ec0-55ce-49f3-8817-da1d1b99ed2e" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014427Z:0c5a5ec0-55ce-49f3-8817-da1d1b99ed2e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:27 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "610" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KESL/versions/1.0.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"KasperskyLab.SecurityAgent\",\"extensionType\":\"KESL\",\"typeHandlerVersion\":\"1.0.0.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.2?api-version=2015-12-01-preview+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.2?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "16" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "66cf2867-1c72-4b74-b9a9-3025f6790ab3" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqTIMElDqAzLR2IiTMjjybguR+iNPT3Hu7sI7bzuOSWtfZsKjCgfFTlGHP4es8f+mk8z0vWm/A6kAjybbRNj9af7/m/Hq6TLT1L7mlXZbSe6GDzuHhSonKzEEc4lL59NM3Ls+lFP6+MeZNXGJDyr5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14856" ], - "x-ms-request-id": [ "66cf2867-1c72-4b74-b9a9-3025f6790ab3" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014429Z:66cf2867-1c72-4b74-b9a9-3025f6790ab3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:29 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.2.2\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.7.1?api-version=2015-12-01-preview+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.7.1?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "17" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6ce0ba6c-1e76-4d47-a25f-7a8ccfa1197a" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAa3Um0NLcHNvQTuCm2Tz4VlCpRkj6X3PsQsshNJ2E/mKGvTVmwu1TGE0iiz4ktg4YqJvg2WtFSS7mzHIaoiuHFO9TmYrc5yO5f9qnWSs2xqwrEger4yPFvQkDRHlUnHxK//Ly5Qu0gMvjawDeJFp" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14855" ], - "x-ms-request-id": [ "6ce0ba6c-1e76-4d47-a25f-7a8ccfa1197a" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014430Z:6ce0ba6c-1e76-4d47-a25f-7a8ccfa1197a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "630" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.4.7.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMWindowsAgent/versions/6.5?api-version=2015-12-01-preview+9": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMWindowsAgent/versions/6.5?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "18" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1acaaf78-70b7-49ba-9543-318b0026ca2a" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4ceWxiRFSuULDR+oNWc5u9z8EH8/KUJg3CRk5s+eVtJ8joZFKM0Sg9JgkHAai1Ljgyaej12bjK1m5S4TG14W6sIi8sjyVcm7/pcE2ckpF0Iff8xdz4jyB15Bdc/QUWEQhHdYvkrm7QgkfhXBKmz/" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14854" ], - "x-ms-request-id": [ "1acaaf78-70b7-49ba-9543-318b0026ca2a" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014432Z:1acaaf78-70b7-49ba-9543-318b0026ca2a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:32 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "644" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMWindowsAgent/versions/6.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"CloudLinkEMC.SecureVM\",\"extensionType\":\"CloudLinkSecureVMWindowsAgent\",\"typeHandlerVersion\":\"6.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentLinux/versions/9.7.4?api-version=2015-12-01-preview+10": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentLinux/versions/9.7.4?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "19" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c7d66619-d043-4192-bec5-895316d62be0" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkFWU60OGz/0LVU3MmNzQju4lBXJgvOEzGopTiPBnyVZ9xpRb70HEByVtO/hF+bpntV8SPPHKH6LcADWDqDnfQAmYJwCoVvDjCtC2FyojInsA20tTbMVoEeB2o57bnmDEhQD9uILfB0kE9azYJpG5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14853" ], - "x-ms-request-id": [ "c7d66619-d043-4192-bec5-895316d62be0" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014433Z:c7d66619-d043-4192-bec5-895316d62be0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "670" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentLinux/versions/9.7.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"extensionType\":\"DependencyAgentLinux\",\"typeHandlerVersion\":\"9.7.4\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4?api-version=2015-12-01-preview+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "20" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c4213757-2e9e-4400-9675-c705ee0d2dd2" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMrIIn4YBRidkKkiOizsIUCM0gmHL8DU6VZq5PH1sGme7c7yw93CaJkcBbXvWk+C+DhWR9e1DwlX8umIDOnclwB/zujWne8HrB/vMYgWTeQFSc7idTIjwoZFBzeoV4CxexAohOIgOF2oYruPbXn3A" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14852" ], - "x-ms-request-id": [ "c4213757-2e9e-4400-9675-c705ee0d2dd2" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014435Z:c4213757-2e9e-4400-9675-c705ee0d2dd2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:35 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "608" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.1?api-version=2015-12-01-preview+12": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.1?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "21" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e031570e-6358-4815-9b86-55745906d04d" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvn7lkMOCocgR+lxkKz3/qo40HKhJcdVuasatsSz39VpI0QY4p11pzI+Jd4eipw9sMHCMIcF38vkzcOpZ5Q7bOectjbIGtA7t4X+tQeHKkAF1xtdLpeyECRGNIM6cuUuuV6Eic33Fhe8ruUXJdjFVP" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14851" ], - "x-ms-request-id": [ "e031570e-6358-4815-9b86-55745906d04d" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014436Z:e031570e-6358-4815-9b86-55745906d04d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:36 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "624" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.9.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.2.1.0?api-version=2015-12-01-preview+13": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.2.1.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "22" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bbd484ee-09c4-48d6-add6-e5e93cb3bead" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4X0YTKBrEUPFovV2Rb/NZ4XXjO/2hlg0cn3/yVz9nAX7uo8/34W01gpF8qaQCGc3vublObVJSTPHBe8vMGnunQGhfDyQGWeAnTnRSGRBMlt7JWBumKahY1XTa7oLlt/cjeXEtDwA+HRVYbZ4ezoA" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14850" ], - "x-ms-request-id": [ "bbd484ee-09c4-48d6-add6-e5e93cb3bead" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014438Z:bbd484ee-09c4-48d6-add6-e5e93cb3bead" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:38 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "598" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.2.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.2.1.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScript/versions/2.0.6?api-version=2015-12-01-preview+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScript/versions/2.0.6?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "23" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cc5382b2-3a2a-4fd7-99bc-b64d81ba7d89" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqQDphlPMDFTTB5F+eIBmupnGnrAN2LqGp8BtGdHO9su5m7Zao3JQ6fMD21N0TrHxiAS2XTgeoLeUkz38gHxYzJHKYkeUci+1p2UzCeMVT4KHeyPfgt1w6jkgXAQi7ktoZ+c3uOu0FSLor1HJ/zE+" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14849" ], - "x-ms-request-id": [ "cc5382b2-3a2a-4fd7-99bc-b64d81ba7d89" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014440Z:cc5382b2-3a2a-4fd7-99bc-b64d81ba7d89" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:40 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "622" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScript/versions/2.0.6\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"CustomScript\",\"typeHandlerVersion\":\"2.0.6\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMLinuxAgent/versions/6.0?api-version=2015-12-01-preview+15": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMLinuxAgent/versions/6.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "24" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3533ec67-99de-4710-b4dc-01b28d787ea5" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvYLahElReAsaYjSn5Pw/VxS9sOLUgzbqWKx13bEDotinXJLsGzXzMleUQCw0pJg7Hm4FCsSfyl8aDMkLojk+rDZC3wKQCZdOIByuFfjn6yfY3CnIg4UURoOSCwf1O8mKs5LkxdkgHT1jiPPnStw+" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14848" ], - "x-ms-request-id": [ "3533ec67-99de-4710-b4dc-01b28d787ea5" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014442Z:3533ec67-99de-4710-b4dc-01b28d787ea5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/CloudLinkEMC.SecureVM/types/CloudLinkSecureVMLinuxAgent/versions/6.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"CloudLinkEMC.SecureVM\",\"extensionType\":\"CloudLinkSecureVMLinuxAgent\",\"typeHandlerVersion\":\"6.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2?api-version=2015-12-01-preview+16": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "25" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "65799efd-df2c-4cac-ba4e-94fd89127059" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEfD96Y27dUKNL5omd2ExEatUpiyYmMnEncuH9bB5XBJUlLT4VKugUuh0oMeDZatrR+C8oLfI0bIOaAcosIEltUPkGETCpTkRlZyDTtHwECuseC0RsgBJi99inDyC9qst9jADghvTiCdmfNziftT7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14847" ], - "x-ms-request-id": [ "65799efd-df2c-4cac-ba4e-94fd89127059" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014443Z:65799efd-df2c-4cac-ba4e-94fd89127059" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:42 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "624" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.SqlServer.Management/types/SqlIaaSAgent/versions/1.2.30.0?api-version=2015-12-01-preview+17": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.SqlServer.Management/types/SqlIaaSAgent/versions/1.2.30.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "26" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c6103b78-d9d3-454f-b153-0c5f2c2b9c74" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvym6hiO5eG/2LZkmU9Gvoa+1vdhPNNSTS5gG0DnRQbewFgUtN9rntCx9SHXOOw7HK6alyqCH+6lts8ZO64VqFcRvfXH+UbxvP/aG523e/wxTHShiB7UZ2EZ/bOn9KuxBSyiSa9iwX68cKw+2DLjGr" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14846" ], - "x-ms-request-id": [ "c6103b78-d9d3-454f-b153-0c5f2c2b9c74" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014445Z:c6103b78-d9d3-454f-b153-0c5f2c2b9c74" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.SqlServer.Management/types/SqlIaaSAgent/versions/1.2.30.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.SqlServer.Management\",\"extensionType\":\"SqlIaaSAgent\",\"typeHandlerVersion\":\"1.2.30.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackup/versions/1.0?api-version=2015-12-01-preview+18": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackup/versions/1.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "27" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3c0d795a-b92d-43b8-b959-25122f888ba0" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6zAgKwmW9/Ch4Gs0+QZrH/eVyL2HX74rv7pcOFYxTgELmL+tH0kBKJy/44/J0h86Tu6y8BGYW6YsSLRhi0Q8KBAOdvQyjGI+b/ANLoGV1bKWzeuQt2LH4z3oee1lAG/dg08vSGYo/vH0kfuUhGJT" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14845" ], - "x-ms-request-id": [ "3c0d795a-b92d-43b8-b959-25122f888ba0" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014446Z:3c0d795a-b92d-43b8-b959-25122f888ba0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:45 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "598" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackup/versions/1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Acronis.Backup\",\"extensionType\":\"AcronisBackup\",\"typeHandlerVersion\":\"1.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview+19": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "28" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6685e2c5-a76c-4be4-9fa8-aafa67fb2f05" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5kI8LUb+aFrkq08TIAGx3/CuSAyqCT4NbNMG/8hpOoPLuxX6QBkmXIoTkSv67LXoZ9CGs0Wzby8ZTA8QrH3JPChGyvBWBle3e1TzclxaLtJwtwYqqS0yHv5HMxaR/18LMwLiPV0z5CFF0tDzLBGC" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14843" ], - "x-ms-request-id": [ "6685e2c5-a76c-4be4-9fa8-aafa67fb2f05" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014448Z:6685e2c5-a76c-4be4-9fa8-aafa67fb2f05" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:48 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "589" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/OmsAgentForLinux/versions/1.8?api-version=2015-12-01-preview+20": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/OmsAgentForLinux/versions/1.8?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "29" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0c229707-ce4e-4f0f-87bc-8aa9fb4ba358" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvo4Gvxn3RpOjtD0NLT7BfCY+DwkgfKafLzZQD6XtrQ8+CWEJu2erCpzqTOuqrEEjoMJBrB/2cxYY+6lSrLAOpc8yMSaeit1qo0Cz9PAgIV9ZGMNnRVu839pBDfWRtgjwf0ljSWrNBpP+ZphHZJpdt" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14842" ], - "x-ms-request-id": [ "0c229707-ce4e-4f0f-87bc-8aa9fb4ba358" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014449Z:0c229707-ce4e-4f0f-87bc-8aa9fb4ba358" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:49 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "646" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/OmsAgentForLinux/versions/1.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"OmsAgentForLinux\",\"typeHandlerVersion\":\"1.8\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8?api-version=2015-12-01-preview+21": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "30" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "30f0d165-524b-4156-9360-4d649b58891d" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7wR3sqCWiNJSnOQ+rWBHFept9GmxEDoYJy+aXD9B38NnWlIm32jRR8tTi9rYkgUYHQMuo5EzujGBJL4pprjwx1RbWwMUeWoVP24/9Nzrz2c4gpIS0VoViMTInORKCdbzwskT+M41Ijp6t8gk3D/H" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14841" ], - "x-ms-request-id": [ "30f0d165-524b-4156-9360-4d649b58891d" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014451Z:30f0d165-524b-4156-9360-4d649b58891d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:51 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "619" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.8\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.8\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0?api-version=2015-12-01-preview+22": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "31" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5eab5e43-23fe-495e-8ee4-d0bfcb2c232c" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhkp6fbdgRvqXGvq1Csb8cN0cgoivyeMcE5fFEkx2gHp++KURYbklnJleajR/zD1Izng80SMT6p6iZLn20s3BPANxBb4vUhJGbP33Ae9EjKtPE4lOQXR39w4Adl1SMhi29PtRcKEcGQiLXd/FF0Mj" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14840" ], - "x-ms-request-id": [ "5eab5e43-23fe-495e-8ee4-d0bfcb2c232c" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014452Z:5eab5e43-23fe-495e-8ee4-d0bfcb2c232c" ], + "x-ms-correlation-request-id": [ "c6d16e26-f91d-4e21-8346-12981ea31c9e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14014" ], + "x-ms-request-id": [ "c6d16e26-f91d-4e21-8346-12981ea31c9e" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213901Z:c6d16e26-f91d-4e21-8346-12981ea31c9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:52 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "637" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.2.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330?api-version=2015-12-01-preview+23": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "32" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "12d2fe60-2e8d-4322-8ac7-657e8b0660c3" ], + "Date": [ "Mon, 21 Mar 2022 21:39:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv54M6F8yvhSlVkGojXn2JuLGlRnky7mN924gNBQ2V5cUVWXJdC/QjBZrkWIO5Z3BX/tD78P1hDhqmxqtxArmgS8cLhs83aqVjRT4c8wZkdfSX8aoxcbYIlB/0ibNnSZ/5YA3pLJwdDc4G0m5Pcwn+" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14839" ], - "x-ms-request-id": [ "12d2fe60-2e8d-4322-8ac7-657e8b0660c3" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014454Z:12d2fe60-2e8d-4322-8ac7-657e8b0660c3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:54 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvB0buI9hh3fkjdxGkG9NjSh9/lQdM1aMxrEIe/4VW/jGeUT+jbCQZInCncAaicGeREYCrit7rDoA3MSEEPEu4EOyzNR+lgGvU/V5rjAo5tgzUJ4qEUkhRzpXwRksRUYv62X++gRCRxRKtPMxbOcp0" ] }, "ContentHeaders": { - "Content-Length": [ "645" ], + "Content-Length": [ "9382" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/DockerExtension/versions/1.1.1606092330\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"DockerExtension\",\"typeHandlerVersion\":\"1.1.1606092330\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.18.0.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.18.0.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"LinuxDiagnostic\",\"typeHandlerVersion\":\"3.0.121\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScriptForLinux/versions/2.0.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"2.0.6.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.9\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.10.13.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.10.13.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.7.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.9.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.9.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.CPlat.Core/types/RunCommandForLinux/versions/1.0.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.CPlat.Core\",\"extensionType\":\"RunCommandForLinux\",\"typeHandlerVersion\":\"1.0.1.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/AmdGpuDriverWindows/versions/1.0.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"AmdGpuDriverWindows\",\"typeHandlerVersion\":\"1.0.4.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"NvidiaGpuDriverLinux\",\"typeHandlerVersion\":\"1.3.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverWindows/versions/1.3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"NvidiaGpuDriverWindows\",\"typeHandlerVersion\":\"1.3.2.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.11.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.5.11.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.77.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}]", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0?api-version=2015-12-01-preview+24": { + "Get-AzsVMExtension+[NoContext]+TestGetVMExtension+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "33" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1301" ], + "x-ms-client-request-id": [ "03b8d082-4f93-41ab-84fa-07688919122c" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -915,70 +62,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "555172f1-760e-40f9-a388-bbc335ee2b7e" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdAmSjr9iO5GYZ2t3Ztlu0VX7HGC8C5jW3/vE0PBAGezlsIOYiIzcCJfn9cc3GLHnzDvYrIyfMVp0w9vdF4QUBrzj9vFBFnAVMsH5swNn7LhgJxd53Z+8LcQnx+3SlT/eh62xdDMa7eKGuWDaY8tX" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14838" ], - "x-ms-request-id": [ "555172f1-760e-40f9-a388-bbc335ee2b7e" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014455Z:555172f1-760e-40f9-a388-bbc335ee2b7e" ], + "x-ms-correlation-request-id": [ "8722a7a5-9479-4d79-97eb-499ddf058cb7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14013" ], + "x-ms-request-id": [ "8722a7a5-9479-4d79-97eb-499ddf058cb7" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213901Z:8722a7a5-9479-4d79-97eb-499ddf058cb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:55 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "599" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.19.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.19.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KSWS/versions/1.0.0.0?api-version=2015-12-01-preview+25": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KSWS/versions/1.0.0.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "34" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "80b44061-ec64-43b1-8861-f509e278ee4b" ], + "Date": [ "Mon, 21 Mar 2022 21:39:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZjDP23SCAYTB7ECB+ezNIorZi/WPSlTQ/ALbM1Dn8mgmdkRkjZYnnoo05q1Kxw6BKW5hbSgO3GvnGdvAoww7yyzEetBdBoEUiz7MuZAG3ksp2EzfFHvpkZck6+bsREQAUkKD61TgFmS/8pP7FX58" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14837" ], - "x-ms-request-id": [ "80b44061-ec64-43b1-8861-f509e278ee4b" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014457Z:80b44061-ec64-43b1-8861-f509e278ee4b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:57 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYUbuwYYOzHWp4ns3qxdGqEbX0QZUzpFxP8WCWbQOSZzRKOgpDMEOQbsuFspJWEjz/4AQtl692x+zv+HhcW6WcmQBiD0Br2mTASc/FVFSwRVuGbJF7muXRLqaTVD1aCiHIWjaKlq5/UoN+rr/2/LK" ] }, "ContentHeaders": { - "Content-Length": [ "612" ], + "Content-Length": [ "9382" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/KasperskyLab.SecurityAgent/types/KSWS/versions/1.0.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"KasperskyLab.SecurityAgent\",\"extensionType\":\"KSWS\",\"typeHandlerVersion\":\"1.0.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.18.0.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.18.0.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"LinuxDiagnostic\",\"typeHandlerVersion\":\"3.0.121\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScriptForLinux/versions/2.0.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"2.0.6.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.9\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.10.13.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.10.13.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.7.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.9.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.9.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.CPlat.Core/types/RunCommandForLinux/versions/1.0.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.CPlat.Core\",\"extensionType\":\"RunCommandForLinux\",\"typeHandlerVersion\":\"1.0.1.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/AmdGpuDriverWindows/versions/1.0.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"AmdGpuDriverWindows\",\"typeHandlerVersion\":\"1.0.4.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"NvidiaGpuDriverLinux\",\"typeHandlerVersion\":\"1.3.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverWindows/versions/1.3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"NvidiaGpuDriverWindows\",\"typeHandlerVersion\":\"1.3.2.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.11.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.5.11.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.77.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}]", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.76.0.0?api-version=2015-12-01-preview+26": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.76.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "35" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1302" ], + "x-ms-client-request-id": [ "b3845797-1a90-4624-9fa7-33ccc89dcaae" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -987,34 +104,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "630e52e1-aaab-4999-8d56-f5277c07cd51" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrkALo01rc531W6NPfEXYfChtkWwlquHfRtiE8meYAM1D4tXv8XwjGlnjVYvtKAu6zZWuFU6TVPhElmIHJoHzAE53/dYvXZMg76V2nhka7Af5c6Wqgo1KCrSSb86qug5919rdfXt04t2GGB4yJC+C" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14836" ], - "x-ms-request-id": [ "630e52e1-aaab-4999-8d56-f5277c07cd51" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014459Z:630e52e1-aaab-4999-8d56-f5277c07cd51" ], + "x-ms-correlation-request-id": [ "9c44e78e-b61b-4e8a-bbcd-b2e72e967a88" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14012" ], + "x-ms-request-id": [ "9c44e78e-b61b-4e8a-bbcd-b2e72e967a88" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213902Z:9c44e78e-b61b-4e8a-bbcd-b2e72e967a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:59 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvD0YzWAROK0tWSB/xz5ebxEbywYQKN/7ExPNqAThOz8HOfiPQSqgSLKXS1gqwovWMOgA+JsaI5SrbBvDtA5ReI6bcZFz9PyT83RaccKYNusN+kY48LFTL8XX6zsFD/3Vz0DTZ3F/b7gUvQ5Ot9shT" ] }, "ContentHeaders": { - "Content-Length": [ "600" ], + "Content-Length": [ "9382" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.76.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.76.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.18.0.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.18.0.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"LinuxDiagnostic\",\"typeHandlerVersion\":\"3.0.121\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScriptForLinux/versions/2.0.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"2.0.6.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.9\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.10.13.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.10.13.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.7.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.9.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.9.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.CPlat.Core/types/RunCommandForLinux/versions/1.0.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.CPlat.Core\",\"extensionType\":\"RunCommandForLinux\",\"typeHandlerVersion\":\"1.0.1.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/AmdGpuDriverWindows/versions/1.0.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"AmdGpuDriverWindows\",\"typeHandlerVersion\":\"1.0.4.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"NvidiaGpuDriverLinux\",\"typeHandlerVersion\":\"1.3.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverWindows/versions/1.3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"NvidiaGpuDriverWindows\",\"typeHandlerVersion\":\"1.3.2.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.11.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.5.11.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.77.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}]", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackupLinux/versions/1.0?api-version=2015-12-01-preview+27": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackupLinux/versions/1.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "36" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1303" ], + "x-ms-client-request-id": [ "6d396339-24a5-4187-9391-b53909aa093f" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1023,34 +146,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8f56414b-cf2a-47e5-999a-7d5a3a5d65a4" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzZ6+2rFsg5Ujtgym/zZfw6C3c5X8+XWazOTZKeKHWHuoMt+i9d9Ffz0rBzRsuu+/I86GVe0hGivejxieZ3wqpLixSbhoWqpyv5eEjRKXhcUXdk445PuPRqY2pokLfe4zGZVaGXPTTYZKN6uXLpC2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14835" ], - "x-ms-request-id": [ "8f56414b-cf2a-47e5-999a-7d5a3a5d65a4" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014500Z:8f56414b-cf2a-47e5-999a-7d5a3a5d65a4" ], + "x-ms-correlation-request-id": [ "4e903248-a347-40ff-993d-28a2a95b7f15" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14011" ], + "x-ms-request-id": [ "4e903248-a347-40ff-993d-28a2a95b7f15" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213902Z:4e903248-a347-40ff-993d-28a2a95b7f15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:00 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvycb2eNtobD+45MK/foHAHl65CwZ3eMHwfKhVDn4Ejpui+LlTi6L7P5YV6AAsAU6T6OnhVjHLasqY8bcSdqAK/MVRwzDjN3wsaNrF+aAL6syoyQSKuT/lFJcWmEApzJCzkdWHjJCvRw5126NpAWb3" ] }, "ContentHeaders": { - "Content-Length": [ "606" ], + "Content-Length": [ "585" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Acronis.Backup/types/AcronisBackupLinux/versions/1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Acronis.Backup\",\"extensionType\":\"AcronisBackupLinux\",\"typeHandlerVersion\":\"1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"BGInfo\",\"typeHandlerVersion\":\"2.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentWindows/versions/9.7.4?api-version=2015-12-01-preview+28": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.18.0.5?api-version=2015-12-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentWindows/versions/9.7.4?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.18.0.5?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "37" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1304" ], + "x-ms-client-request-id": [ "c557641f-d6af-49c3-bd1f-aaa165e1ae58" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1059,34 +188,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b7d69c03-8808-43ff-ae57-d29249ccdf68" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZV9vpTiQ7WICTizsanjHVoHRDNhEWMERO1E7+vQl6JKHqKZSZkXXOzSrPulaDqR6I0QZVQMnia6oM0PvT0BoELSjdAcdOZkg//aXPQ9ZQWpCLaY8pTOl5f+6j7Sx8wZabDIuJ/kApBZctmIsVjjV" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14846" ], - "x-ms-request-id": [ "b7d69c03-8808-43ff-ae57-d29249ccdf68" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014502Z:b7d69c03-8808-43ff-ae57-d29249ccdf68" ], + "x-ms-correlation-request-id": [ "4fa0a0a2-fe3f-4846-b25f-5533597d1d01" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14010" ], + "x-ms-request-id": [ "4fa0a0a2-fe3f-4846-b25f-5533597d1d01" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213902Z:4fa0a0a2-fe3f-4846-b25f-5533597d1d01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:02 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrRgQY7hzP2XCuOQf+YhBb5F2y9jU9UVnsqKS9BtgfZBlygkzo5rGUk0MyE9tEFcSBf8DZxQ2xV7WD+VuKRurBhHtDVpFdht4y2LfP8Hrz5RqM32Q1bHQb2B/af9lDdCdqBK1VdSNycwHJ1diW9SE" ] }, "ContentHeaders": { - "Content-Length": [ "676" ], + "Content-Length": [ "633" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Monitoring.DependencyAgent/types/DependencyAgentWindows/versions/9.7.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"extensionType\":\"DependencyAgentWindows\",\"typeHandlerVersion\":\"9.7.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.18.0.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.18.0.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0?api-version=2015-12-01-preview+29": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121?api-version=2015-12-01-preview+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "38" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1305" ], + "x-ms-client-request-id": [ "dfa57c1c-ea5e-42c0-9b65-6b57bd320027" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1095,34 +230,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d62e8774-7e5a-4e01-9776-72cda29d2054" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWr4N6kKe7QfKGjIdbI15nsNmNCjZJ6ut7CUdOhdq7k5bzE3VF7wpeDmimfxcsASeXNuJwZk79OH+GzMD6UJB6aHtGAjmiKA6RuyCLjCXKKYkAUlOPU+HGJh82PYHEvusmbWQbRkRG0VN5VpIWHu5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14845" ], - "x-ms-request-id": [ "d62e8774-7e5a-4e01-9776-72cda29d2054" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014503Z:d62e8774-7e5a-4e01-9776-72cda29d2054" ], + "x-ms-correlation-request-id": [ "7b889361-b0b0-4bd2-bf7d-9b6f01f2527c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14009" ], + "x-ms-request-id": [ "7b889361-b0b0-4bd2-bf7d-9b6f01f2527c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213903Z:7b889361-b0b0-4bd2-bf7d-9b6f01f2527c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:03 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcKd6kIMo5kwehDe3V7EBbk4lyMob2Em/YPW/hXNXF2PNH5p+JhbQ0Cj4Zf8lE0RysEA53GB2dIUWLeE5Sux07wBv3bP1R5FKFlN5xAivNSZf2g6QgBZLkxSPBt1p6sTGscpzVnZI6uaZr+yQ/9RI" ] }, "ContentHeaders": { "Content-Length": [ "629" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.4.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.4.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"LinuxDiagnostic\",\"typeHandlerVersion\":\"3.0.121\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1?api-version=2015-12-01-preview+30": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScriptForLinux/versions/2.0.6.1?api-version=2015-12-01-preview+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScriptForLinux/versions/2.0.6.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "39" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1306" ], + "x-ms-client-request-id": [ "617bc441-fcd5-4177-a1b5-6c9f2aecabfd" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1131,34 +272,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "61470e06-bf52-4ed4-91ee-2c9264789c05" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZtAhRODkjxjIdxlmABCUnzoAdy735uQSoaVGtii+zPtQ5W8q/l/u5oAkzTcmy6H4PcDv0wz17qojLTPHQW1srq5IwLi3perAV4RlrDMJVyWhTGL809MI0E7GjRbvfY0PRaoiWcVBRGWuMleDdTuj" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14844" ], - "x-ms-request-id": [ "61470e06-bf52-4ed4-91ee-2c9264789c05" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014505Z:61470e06-bf52-4ed4-91ee-2c9264789c05" ], + "x-ms-correlation-request-id": [ "2e3bb894-e312-4bff-b40b-05a1b27b62af" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14008" ], + "x-ms-request-id": [ "2e3bb894-e312-4bff-b40b-05a1b27b62af" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213903Z:2e3bb894-e312-4bff-b40b-05a1b27b62af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:04 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcjh7hP0E9u69qo23nw/a5HR4BgzXBOpqRO7HCN59F01yl9SxX1AUML3AZoCstqoRAkgCqFbFYCQlRHZ/4yYD0AyAfY2rMWWorN5jgSLhXDCWZQ5RePOD1sLPd+hHcb0k3NeIN4TZgaqSRVmTWC5X" ] }, "ContentHeaders": { "Content-Length": [ "637" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.10.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.10.1.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Extensions/types/CustomScriptForLinux/versions/2.0.6.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Extensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"2.0.6.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3?api-version=2015-12-01-preview+31": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9?api-version=2015-12-01-preview+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "40" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1307" ], + "x-ms-client-request-id": [ "44c5f220-9e9a-4cb2-865f-17fa75a4d918" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1167,70 +314,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6706cdae-6ce5-4a34-bbbd-f0333fc5d57f" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu8j9WxsYcuYqT0crE+bXvj08jPu9yf/dBv4CYVlgFosJVc8U1ml5mxIRF3+s8hBfSw0DjqlKPQ+X0O3CMINgne6iSETJ0LPrWRLH61CoFbZldWR7q/9+RIwAw7DWFVXKekkKwscdrjlQSQd68FgX" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14843" ], - "x-ms-request-id": [ "6706cdae-6ce5-4a34-bbbd-f0333fc5d57f" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014507Z:6706cdae-6ce5-4a34-bbbd-f0333fc5d57f" ], + "x-ms-correlation-request-id": [ "3ea971da-bbee-410f-985f-a1dfa1410295" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14007" ], + "x-ms-request-id": [ "3ea971da-bbee-410f-985f-a1dfa1410295" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213903Z:3ea971da-bbee-410f-985f-a1dfa1410295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "619" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.12.2.2?api-version=2015-12-01-preview+32": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.12.2.2?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "41" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f4dbf832-1b15-4773-8d45-7abea43d2b0d" ], + "Date": [ "Mon, 21 Mar 2022 21:39:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvP5tED+/N/wzkCK89uQJQ/Dhe3ulBVfgLIzg3mRlPGVZ7ArWeN6LOuOh9eyhR45rgFFYfAG9GPcwguv+R4x02v1LS7+m3xDMUtq9WOrIpvOxYegTJV9oYl6/sw9uoOZu16Lzw3hq0KCqKnRUdJIZo" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14842" ], - "x-ms-request-id": [ "f4dbf832-1b15-4773-8d45-7abea43d2b0d" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014509Z:f4dbf832-1b15-4773-8d45-7abea43d2b0d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:09 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQzfaVwcHKNCrBw6D8GR58tm0c3NKoKScsbzlJUBgLF+x+ws0ZEQ44YZ1V2qdBZfr8QGArJiijjCtbOXRVMHyHkNUoxmUFqTlZIaaTytDLhePodynM1fxHOUJgyRcOoTLxZmC8gFkNsMFs45qms1+" ] }, "ContentHeaders": { - "Content-Length": [ "637" ], + "Content-Length": [ "625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/IaaSDiagnostics/versions/1.12.2.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"IaaSDiagnostics\",\"typeHandlerVersion\":\"1.12.2.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.9\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121?api-version=2015-12-01-preview+33": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.10.13.1?api-version=2015-12-01-preview+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.10.13.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "42" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1308" ], + "x-ms-client-request-id": [ "c7bd72c0-2e74-469e-a62a-78d0bbb7cb45" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1239,70 +356,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0980f5ab-eda4-4c2e-be13-0d0cbb2e1bd4" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4sN4MWynLTaErLs5jPwoTjrIy+NyeZCTC1W4y1tEgbZFIRIODse0wr1vfLHtkhTTyE3DEO4KraD6h9ireMgiGm/YdE6tBH3BvHaGFk+qF5GM/c4eDVYGcjWQWDhLQgoO2uz8OR6XNejl/A3o1/oe" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14841" ], - "x-ms-request-id": [ "0980f5ab-eda4-4c2e-be13-0d0cbb2e1bd4" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014510Z:0980f5ab-eda4-4c2e-be13-0d0cbb2e1bd4" ], + "x-ms-correlation-request-id": [ "a056f92a-51fb-4cbd-b2ac-6b4d47f17c7f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14006" ], + "x-ms-request-id": [ "a056f92a-51fb-4cbd-b2ac-6b4d47f17c7f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213903Z:a056f92a-51fb-4cbd-b2ac-6b4d47f17c7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:10 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "633" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Diagnostics\",\"extensionType\":\"LinuxDiagnostic\",\"typeHandlerVersion\":\"3.0.121\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9?api-version=2015-12-01-preview+34": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "43" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "53928152-d1f1-41a4-8909-db44eac7fb95" ], + "Date": [ "Mon, 21 Mar 2022 21:39:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9ozzXFQ+H7iVrxcA5sdjZMbaytVXprZpa/oCi7AV+Y+5AaHcm8JslowdnGoN02Cpc45gFiWicHS/6yxv/6SsfcLhFQcx9szWIPRYVjqyZ9LEVglJkHyBg4OWLsefll+Eul7nqyCyWWCcgnvRn0EW" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14840" ], - "x-ms-request-id": [ "53928152-d1f1-41a4-8909-db44eac7fb95" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014512Z:53928152-d1f1-41a4-8909-db44eac7fb95" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:11 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCqogwou5iYnK5Srlgf8AbNFBrT0cWH/9tVpHOT8cKMxNhgIXRokgOzOZmV9BI23a8WZ0kIpaeisAyI4FGp+syy7CYx++Z/jZnsX2XCwe6gH7Q4wqpJscmgSLgqbiXrQcBQnAZDKBcgOSVK50q3fK" ] }, "ContentHeaders": { - "Content-Length": [ "629" ], + "Content-Length": [ "627" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"extensionType\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.5.5.9\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.10.13.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.10.13.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3?api-version=2015-12-01-preview+35": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.7.1?api-version=2015-12-01-preview+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.7.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "44" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1309" ], + "x-ms-client-request-id": [ "4b437db0-bdc3-4004-9c80-0949de8729d9" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1311,70 +398,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "59374e0f-3bae-4c85-92d7-e634ca066f06" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYb4c6zs3xeSy9kZxNFvqIHj01pNyykUuuNebq7zpekQgpXyai4dZ59fkXJS6Pqe1M5xZhS21KLABifWSXQQxLG1SeSCuvwvtb3AcBM6lSfyUNjtYERe3cHZajmrgwEv4eLpbbsaECcFUJMN6NC4K" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14839" ], - "x-ms-request-id": [ "59374e0f-3bae-4c85-92d7-e634ca066f06" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014514Z:59374e0f-3bae-4c85-92d7-e634ca066f06" ], + "x-ms-correlation-request-id": [ "8aedf28f-5717-4396-ac7c-634a70f4300f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14005" ], + "x-ms-request-id": [ "8aedf28f-5717-4396-ac7c-634a70f4300f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213904Z:8aedf28f-5717-4396-ac7c-634a70f4300f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:13 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "623" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"CustomScriptExtension\",\"typeHandlerVersion\":\"1.9.3\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2?api-version=2015-12-01-preview+36": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "45" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7b78aef4-a5d9-4cd9-8665-d24bffd1c135" ], + "Date": [ "Mon, 21 Mar 2022 21:39:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9w+GG/EWdZuh8Siscx7netMfB7eq6iBaO71GTrvf9FZDm7B+l75YFrSKoKMsDx4/BgCASPnOaZLP7YsnFKb8RmhRpCy+H9DdMO1hHJwm559E2EYEr65HfGq9pXkqH30hR4baZAXAW8MJIfekNA/Z" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14838" ], - "x-ms-request-id": [ "7b78aef4-a5d9-4cd9-8665-d24bffd1c135" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014515Z:7b78aef4-a5d9-4cd9-8665-d24bffd1c135" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:15 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAcgxJcDJ4JHgTIiEGLZGF8AeLO6mGTiJPeFdXNLjgpPryAhCR4TE2nqpu8UOm+PcGW+br//6CPcB7NPkX3fWyQ+QsE8plBcPA7C2Y2J9B7/dPr+jpoNpI+tOd3YCvvACKU57EEAnnQ5Crdeh2QzT" ] }, "ContentHeaders": { "Content-Length": [ "624" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.2\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.7.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.7.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4?api-version=2015-12-01-preview+37": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.9.1?api-version=2015-12-01-preview+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.9.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "46" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1310" ], + "x-ms-client-request-id": [ "44c34b9e-52fb-4043-ac07-cc6f1a8f5942" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1383,70 +440,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4c3d049c-9688-4a8c-9819-9baba25837d0" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGITClQBCa6bRSkRnwthhS4SK4bxwmyJ3jqZpc7r4LY71v3pSM339S0P607X9HL2TgqCuyYBItL+fyMHtm64dqtV8cmZ21sa1iaff2gXmSyjy1m9T2uahAshIEviueO5XtfKVEmbncKKQZOkSjU/B" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14837" ], - "x-ms-request-id": [ "4c3d049c-9688-4a8c-9819-9baba25837d0" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014517Z:4c3d049c-9688-4a8c-9819-9baba25837d0" ], + "x-ms-correlation-request-id": [ "4c603739-965c-44a6-98a4-2230166753e5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14004" ], + "x-ms-request-id": [ "4c603739-965c-44a6-98a4-2230166753e5" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213904Z:4c603739-965c-44a6-98a4-2230166753e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:17 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "624" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4?api-version=2015-12-01-preview+38": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "47" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9b56f9ae-2575-48ea-b853-2f23448bdabb" ], + "Date": [ "Mon, 21 Mar 2022 21:39:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdBhVH1pzA+6GEpRTQ0Jd0/QUX4DiSyQEkBdKKiZjpTJylfmgN5rswb+jg0vgUFNkORn9M/W62OwixFc3JQyAkyO4reBqRcMT8Cg67eh6K1nbDfrW2D2NLs+94nXD6vG5tM2geLSH5Zb38DsjE84P" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14836" ], - "x-ms-request-id": [ "9b56f9ae-2575-48ea-b853-2f23448bdabb" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014519Z:9b56f9ae-2575-48ea-b853-2f23448bdabb" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:19 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKChVmY6lRBRdiJQx5qz8D2KIToTvKWWo9FUTmS0eBCmnTDAP16ukGOlaBzk9wPM3Uh8z3sp+TZSy3h8IEGCcxiYG1QZ9pkwcavuC0myHdUN33XUmh1ySvkY6AB4N93dTAudfGpcm/ORC/LUQwoLM" ] }, "ContentHeaders": { - "Content-Length": [ "608" ], + "Content-Length": [ "607" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.9.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.4.9.1\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5?api-version=2015-12-01-preview+39": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.CPlat.Core/types/RunCommandForLinux/versions/1.0.1.1?api-version=2015-12-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.CPlat.Core/types/RunCommandForLinux/versions/1.0.1.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "48" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1311" ], + "x-ms-client-request-id": [ "098f0e2d-5fd0-407d-bcc0-cb90f6396609" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1455,34 +482,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7aeefd75-a1c6-4e37-8906-b95fce5df207" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYUbwc+ZciIeNL2pG1kqBq/1Xi1u23Zktiwx1b+WV0zQXznae3eCvs1LvY31P9V/iNIA5ZogIVpDzsvCaGRWhwb8St56ik+GHYy/QIyxtv6xWEquEZ0LiKc9n1mb57KnjnuqbqJEUAqiMTacGvH6g" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14835" ], - "x-ms-request-id": [ "7aeefd75-a1c6-4e37-8906-b95fce5df207" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014521Z:7aeefd75-a1c6-4e37-8906-b95fce5df207" ], + "x-ms-correlation-request-id": [ "aafde7ae-96d3-4a82-a484-b5864329ff33" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14003" ], + "x-ms-request-id": [ "aafde7ae-96d3-4a82-a484-b5864329ff33" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213904Z:aafde7ae-96d3-4a82-a484-b5864329ff33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:20 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+6wQrIM0zLdTMKuKBWTZYR2KmHeUJouAzd4osGFAIryGFgXw7g5Almxr3RG0b5zooVACHnHI/Jpn8sn5aCG1cZnP6JzvRQBp8KGWoyZ75ohUmfonrGoONADkQmWCmYVa3il+1Z71EeEj8C4FnSDF" ] }, "ContentHeaders": { - "Content-Length": [ "679" ], + "Content-Length": [ "621" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.CPlat.Core/types/RunCommandForLinux/versions/1.0.1.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.CPlat.Core\",\"extensionType\":\"RunCommandForLinux\",\"typeHandlerVersion\":\"1.0.1.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5?api-version=2015-12-01-preview+40": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5?api-version=2015-12-01-preview+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "49" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1312" ], + "x-ms-client-request-id": [ "edcc97b5-4700-43eb-965b-7999b47bee3a" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1491,34 +524,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "090b0ebc-78a0-4a54-b386-c96d841b1eff" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx+aSH9bndA6vHJAVBTkIDhq21+iqbyuw8LBMfQvZ/qGbAqlKAxzcsZkfzLhilUZqbpk3opyZpDkUo6U6V+5M8UPbcxcv+MQrMBUaySusvUn+0Fgcs3nRqQqdFpZrNlHwy5iRzvcY6Revag0HgUSe" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14834" ], - "x-ms-request-id": [ "090b0ebc-78a0-4a54-b386-c96d841b1eff" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014523Z:090b0ebc-78a0-4a54-b386-c96d841b1eff" ], + "x-ms-correlation-request-id": [ "cf0776b5-ac1a-4303-89df-9d47f91b8307" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14002" ], + "x-ms-request-id": [ "cf0776b5-ac1a-4303-89df-9d47f91b8307" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213904Z:cf0776b5-ac1a-4303-89df-9d47f91b8307" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:22 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvI6P4xzw9OXS3bRFXgV9lPuLDQ7is7fAHgNA3SIPc501ffPIFAi2dJTb8wUz9JuQEJGMgvji0+udb1xkItBKz3r1ngcWIwb54zhtKfLaZBJAAcHYL6nAo0Q5G5vIXcYMeN1gLb157BmFWohTo677w" ] }, "ContentHeaders": { - "Content-Length": [ "633" ], + "Content-Length": [ "675" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"CustomScriptForLinux\",\"typeHandlerVersion\":\"1.5.5\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.11081.5\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2?api-version=2015-12-01-preview+41": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/AmdGpuDriverWindows/versions/1.0.4.0?api-version=2015-12-01-preview+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/AmdGpuDriverWindows/versions/1.0.4.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "50" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1313" ], + "x-ms-client-request-id": [ "edeb6680-8675-4b09-83fd-24218a9d5f1b" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1527,34 +566,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0922e4cf-21df-4bb0-afc7-61ac63fbd82e" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0Gmi7LJ8Z4UmZrmg3h70IS+zuIJ1NwCKXg/CZYonXOLs3FURDli1qhUzrEwKUtbbYPXqk2PxdKlHyhjyn9Gwlk80ZCjdLYQg9y2pr/IEDW+mx484mIdd6w7X+N8dgCjRKVgolbKOk7cUAU5A0LSh" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14833" ], - "x-ms-request-id": [ "0922e4cf-21df-4bb0-afc7-61ac63fbd82e" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014524Z:0922e4cf-21df-4bb0-afc7-61ac63fbd82e" ], + "x-ms-correlation-request-id": [ "78f2b3a4-0e50-4945-a759-67e9dcdb4acb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14001" ], + "x-ms-request-id": [ "78f2b3a4-0e50-4945-a759-67e9dcdb4acb" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213905Z:78f2b3a4-0e50-4945-a759-67e9dcdb4acb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:24 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSjIsY1PRM2GkNpIGKBQ0OMCYK9V/bGCAihfgr62xHLwkZLYKOftIpQ/cEMXt/tY8AQZVM9Uhq/GufMiSuSNu3u0X6B8B6P4KKGnojOUzbzUmohOlTUzr9fcp69WqCw63L3j6Vxymyk/Guegre+xp" ] }, "ContentHeaders": { "Content-Length": [ "625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.5.2\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/AmdGpuDriverWindows/versions/1.0.4.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"AmdGpuDriverWindows\",\"typeHandlerVersion\":\"1.0.4.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0?api-version=2015-12-01-preview+42": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.1.0?api-version=2015-12-01-preview+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.1.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "51" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1314" ], + "x-ms-client-request-id": [ "4a9335f4-9daf-4328-b85f-b60a53db29ee" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1563,70 +608,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "97395bc5-1909-4ccf-bcea-1264f6460a71" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14832" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRI3aK8ImUcNyzaQkwNUHEjkSj3zf3pw11VDXfrSfSzDmp+QXh+BwFCFiMkIwjtpg5JE7cV2+h7FH6NiCqwbOGo0+vt2xv8hUavKILp1pgKNJ2zkcjkVXVaAnoyCmBmEOWHq1cYB2MSRj0pCDnJEt" ], - "x-ms-request-id": [ "97395bc5-1909-4ccf-bcea-1264f6460a71" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014526Z:97395bc5-1909-4ccf-bcea-1264f6460a71" ], + "x-ms-correlation-request-id": [ "95ccf4c9-e538-474b-8cbd-3933e73674e3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14000" ], + "x-ms-request-id": [ "95ccf4c9-e538-474b-8cbd-3933e73674e3" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213905Z:95ccf4c9-e538-474b-8cbd-3933e73674e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:25 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "599" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.77.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0?api-version=2015-12-01-preview+43": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "52" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "54e2c6f3-8ea5-416f-bade-b36ac1c2eff0" ], + "Date": [ "Mon, 21 Mar 2022 21:39:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvs5zKN8O2jNZ7Z7Ejs9NN384H8pZvAMhD3jylBzFqfSkGNYJ5Tnjb9jogQPrFvBL90t4z0sf2fK+MaLIxbaJlKdUpnmFbw4rijZqDsMoiT/hDrdAt6fpDF7bQfoKNrlsNoYxj32wILKLZohNO3vAU" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14831" ], - "x-ms-request-id": [ "54e2c6f3-8ea5-416f-bade-b36ac1c2eff0" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014528Z:54e2c6f3-8ea5-416f-bade-b36ac1c2eff0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:28 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvn8pWxkiIwpUh7gmux0f6KVraGEiD+YIc7HHtIQwrE5JVP2JBFsY6ehjhmmcWnOKklJuA9zmSkf3o5uE/JvZ3pKDbm4pbGwxi1LH1o3gGWUyn/tDKZD0YPNKRhIYxoupkYsqBrNOgSYjGP8R1waa7" ] }, "ContentHeaders": { - "Content-Length": [ "679" ], + "Content-Length": [ "625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.10900.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"extensionType\":\"MicrosoftMonitoringAgent\",\"typeHandlerVersion\":\"1.0.10900.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"NvidiaGpuDriverLinux\",\"typeHandlerVersion\":\"1.3.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1?api-version=2015-12-01-preview+44": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverWindows/versions/1.3.2.0?api-version=2015-12-01-preview+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverWindows/versions/1.3.2.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "53" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1315" ], + "x-ms-client-request-id": [ "89b64d94-cf91-40e9-9263-460ce594b4bf" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1635,70 +650,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "76863d49-04dc-4ff8-8656-de948c99f9c1" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNsDNnM6J0cTOE9RhJuJ+n6M0n74ZiLuXPYymGnQzKYC54QOpVlsEbOeOWN3pWiRnb+27ssAtk6paDbldj33e+K4slOLPOlATEfSNqY3xV9VWTtlNEhDkagwOCjAKz4ln5z5h49UjT0AzN31V2iK4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14830" ], - "x-ms-request-id": [ "76863d49-04dc-4ff8-8656-de948c99f9c1" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014530Z:76863d49-04dc-4ff8-8656-de948c99f9c1" ], + "x-ms-correlation-request-id": [ "3fe27772-2558-4fa8-a165-0bdf8bfa7a56" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13999" ], + "x-ms-request-id": [ "3fe27772-2558-4fa8-a165-0bdf8bfa7a56" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213905Z:3fe27772-2558-4fa8-a165-0bdf8bfa7a56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:30 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "633" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"OSPatchingForLinux\",\"typeHandlerVersion\":\"2.3.0.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" - } - }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0?api-version=2015-12-01-preview+45": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0?api-version=2015-12-01-preview", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "54" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2469ec37-5585-42e7-bd0e-77e0ee6e4be0" ], + "Date": [ "Mon, 21 Mar 2022 21:39:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLhxSwkJhY7xwdDYmo8jLXftNPt9VqZeAtkGKKPKpENw5UAyWWf1KsW/eM4/1AhAHjPrezvuBw+umZs013It8z15yGD87ZyKm7C6lOXnFfSImUkFj4x9iOGTD6nUh05caUto96SfTeLAZ3O0LXIem" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14829" ], - "x-ms-request-id": [ "2469ec37-5585-42e7-bd0e-77e0ee6e4be0" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014532Z:2469ec37-5585-42e7-bd0e-77e0ee6e4be0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:32 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvS7QxRsGpYa9VSZoEqvjKN062fxa8DwqplkqNy9eYbjK1S/l/0stxAGcAlMfU3qPehYaG2L53NSXuN9psnIt2c411N+Is7tIcV/yNrkQY32jvXNDKN7tXrW15r/J+DR25d1aem0aJOckSMKZ1p/Xc" ] }, "ContentHeaders": { - "Content-Length": [ "603" ], + "Content-Length": [ "631" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"VMAccessAgent\",\"typeHandlerVersion\":\"2.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverWindows/versions/1.3.2.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.HpcCompute\",\"extensionType\":\"NvidiaGpuDriverWindows\",\"typeHandlerVersion\":\"1.3.2.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0?api-version=2015-12-01-preview+46": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.11.1?api-version=2015-12-01-preview+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.11.1?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "55" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1316" ], + "x-ms-client-request-id": [ "fe02c5f6-4f09-4c98-ac70-521829aad2ea" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1707,34 +692,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2c392bc8-76dc-41e0-8e10-5f38a0a92b67" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfC0UB4GMMkw8eP2ia8v9NHB0AX6zzthvPj8F6S8XXvnq9Qk8T8MW17870y2hM5yYIz8Dz51f6p5AFxaWpeuWXo0kpOtFlALndS5j2oEJAeOX25BSyB/beYXW3Egt7j9jMTdvyvAG+XsbJS3Nblpj" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14828" ], - "x-ms-request-id": [ "2c392bc8-76dc-41e0-8e10-5f38a0a92b67" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014533Z:2c392bc8-76dc-41e0-8e10-5f38a0a92b67" ], + "x-ms-correlation-request-id": [ "303acd1e-e354-4aad-b8c9-1cefe0b1529a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13998" ], + "x-ms-request-id": [ "303acd1e-e354-4aad-b8c9-1cefe0b1529a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213906Z:303acd1e-e354-4aad-b8c9-1cefe0b1529a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:33 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:05 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVQIeu5D5CXl98n9xbjtLkNjkF2Yb6T6avRfQT+a7KOosB3i2jP0Tzvy+huOoyxaAccNBPdBe9+yUc24G0sLcTaPeuYSeJpul1VzjZBJVEgcl+IBnaQf4OjhOhrWGvDu4p8m773D4BiwoQSSV2X82" ] }, "ContentHeaders": { - "Content-Length": [ "629" ], + "Content-Length": [ "627" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.4.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.4.0.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.11.1\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.OSTCExtensions\",\"extensionType\":\"VMAccessForLinux\",\"typeHandlerVersion\":\"1.5.11.1\",\"vmOsType\":\"Linux\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview+47": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0?api-version=2015-12-01-preview+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "56" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1317" ], + "x-ms-client-request-id": [ "4fe2879d-0732-4f8e-a110-bd67d18dc3f6" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1743,35 +734,34 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b2fa0bd4-3543-480c-bf37-dcb861430d18" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdF+8W22dZ41ftIvLIY4aVYaq9c/hJgv8vGw7sxP80s/t8DE7dpQhmb9pgOL3tjRYxQBZxUQDRuOMtLGOdtaRK6S9mdSYNB2QFeN8c+yWa3+bMotNjibpHtGsv1kbaVz4fkP1ofSWXT1cgWYpPUmt" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14827" ], - "x-ms-request-id": [ "b2fa0bd4-3543-480c-bf37-dcb861430d18" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014536Z:b2fa0bd4-3543-480c-bf37-dcb861430d18" ], + "x-ms-correlation-request-id": [ "ce567351-7408-433d-b363-4eaf8e09a9e1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13997" ], + "x-ms-request-id": [ "ce567351-7408-433d-b363-4eaf8e09a9e1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213906Z:ce567351-7408-433d-b363-4eaf8e09a9e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:36 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:05 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQuCRQNvw+GoJ3k43mS5UFDOx1VyCyKIPDPROTTMyyz6ek59rwE3J8ClswNPMw7ZGzwizf3zL8Wyojs79yQA9u0dVEMK3W2HrlXc0ewhsrdPFW5jozkjllelcQPVKyJg9qcQHx7GsAFXV3/JNAH3M" ] }, "ContentHeaders": { - "Content-Length": [ "670" ], + "Content-Length": [ "595" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft\",\"extensionType\":\"MicroExtension\",\"typeHandlerVersion\":\"0.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":true,\"isSystemExtension\":false,\"sourceBlob\":{\"uri\":\"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"},\"provisioningState\":\"Failed\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Powershell/types/DSC/versions/2.77.0.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Powershell\",\"extensionType\":\"DSC\",\"typeHandlerVersion\":\"2.77.0.0\",\"vmOsType\":\"Windows\",\"computeRole\":\"N/A\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestCreateVMExtension+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview+1": { + "Get-AzsVMExtension+[NoContext]+TestCreateVMExtension+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview", - "Content": "{\r\n \"properties\": {\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"computeRole\": \"IaaS\",\r\n \"supportMultipleExtensions\": true,\r\n \"vmOsType\": \"Linux\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"sourceBlob\": {\r\n \"uri\": \"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"\r\n },\r\n \"vmOsType\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"supportMultipleExtensions\": true\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "57" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -1781,34 +771,40 @@ "Response": { "StatusCode": 201, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0116b1b6-e004-40ca-ac59-d322a32a2128" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLyd6scDgjZ8Q8qnQ725O90gM9pTKjoQOo0X3IfKu/HVdjVkJtIt6k5IPCJuWohuh1HRi5k4Tzmv5hIi+fWHt3yT1+yHeYR1Mu2IKW9NJIRK3LAdywdFZKGnbeh23ocyjaMlMNrAirtvWxu+9qwki" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "0116b1b6-e004-40ca-ac59-d322a32a2128" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014539Z:0116b1b6-e004-40ca-ac59-d322a32a2128" ], + "x-ms-correlation-request-id": [ "1bcc8117-789c-49f8-a4dc-79e8d368fa41" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1061" ], + "x-ms-request-id": [ "1bcc8117-789c-49f8-a4dc-79e8d368fa41" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213907Z:1bcc8117-789c-49f8-a4dc-79e8d368fa41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:39 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:06 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv14WD1VR79wDKxI9m+DPM7mdHsZ3tjaYe3hixL1lLL60e5HriHeeuH5G8nwTbWGAq05GNYZsOIdmxWSrRY2NxwHEnj+RsVtq2n6aZE8Delt3ZxGH/wNJOgwWnIepUfx58mymIpxVA57GKK5Is1jA8" ] }, "ContentHeaders": { - "Content-Length": [ "672" ], + "Content-Length": [ "668" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"northwest\",\"properties\":{\"publisher\":\"Microsoft\",\"extensionType\":\"MicroExtension\",\"typeHandlerVersion\":\"0.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":true,\"isSystemExtension\":false,\"sourceBlob\":{\"uri\":\"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"},\"provisioningState\":\"Creating\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft\",\"extensionType\":\"MicroExtension\",\"typeHandlerVersion\":\"0.1.0\",\"vmOsType\":\"Linux\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":true,\"isSystemExtension\":false,\"sourceBlob\":{\"uri\":\"https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip\"},\"provisioningState\":\"Creating\"}}", + "isContentBase64": false } }, - "Get-AzsVMExtension+[NoContext]+TestDeleteVMExtension+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview+1": { + "Get-AzsVMExtension+[NoContext]+TestDeleteVMExtension+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "58" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1319" ], + "x-ms-client-request-id": [ "b0114e56-442c-47e8-a72a-d06e42f866f2" ], + "CommandName": [ "Remove-AzsVMExtension" ], + "FullCommandName": [ "Remove-AzsVMExtension_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1817,23 +813,24 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8d535fe2-b1eb-4846-89b7-d910de97c4d5" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3BQX9aw8lyud7zY27yH0q3YQzzlDoqxJKsWUIiJvbxW3JxjNBHmjRH9m0T6wxu1lYPeHrIEKS129fnBSMBMngQmMii+75JdSKKfdOxxFs2+oBJsVyPrDv0BQp4/o/dPZZRW5NTF3mHaloZtt98dv" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "8d535fe2-b1eb-4846-89b7-d910de97c4d5" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200221T014542Z:8d535fe2-b1eb-4846-89b7-d910de97c4d5" ], + "x-ms-correlation-request-id": [ "ee5782b7-d0b9-44b5-bc88-417183cf236a" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14888" ], + "x-ms-request-id": [ "ee5782b7-d0b9-44b5-bc88-417183cf236a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213907Z:ee5782b7-d0b9-44b5-bc88-417183cf236a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:42 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzpfFUwMTHSDc3iAqrOMquC1L8zgTMHIFfjaWSjBA0/JL8oppyMbQtv3Jyj8eqzUMxuq8ZjaVNXaG93BkqES+uhtm22DIhixnKihO90HC9Lkx9XeSGWMVbVaPSdginienSzU5Gl7v/DmnvSygKeEG" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Common.ps1 b/src/Azs.Compute.Admin/test/Common.ps1 index 246244c9..e77696e4 100644 --- a/src/Azs.Compute.Admin/test/Common.ps1 +++ b/src/Azs.Compute.Admin/test/Common.ps1 @@ -1,4 +1,3 @@ $global:SkippedTests = @( - "TestDeleteNonExistingQuota", - "TestStopDiskMigrationJob" -) \ No newline at end of file + "TestDeleteNonExistingQuota" +) diff --git a/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json new file mode 100644 index 00000000..c3b990c0 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json @@ -0,0 +1,158 @@ +{ + "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1966" ], + "x-ms-client-request-id": [ "8c2a79bf-9f98-4f90-9829-f59705c74ba5" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "56a7b8db-17aa-4fb2-8523-edfcfb37fbe6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14874" ], + "x-ms-request-id": [ "56a7b8db-17aa-4fb2-8523-edfcfb37fbe6" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222217Z:56a7b8db-17aa-4fb2-8523-edfcfb37fbe6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1JCzqEojJNoThOZ0wkDJWaAkkawVBaghKetgNfsdTukMvp4yngbJ6ls8aFo4mG1E/0Y7Pl2Kb0AVd3gLmJOkfUSFO6EFnDcRbdyN+oAsORmgC21JnNL1d5nCzS/1jG7zcjGgjLzAiRaTY+R8CHFc" ] + }, + "ContentHeaders": { + "Content-Length": [ "526" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"TenantSubscriptionLevel\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + }, + "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/enableTenantSubscriptionFeature?api-version=2020-11-01+2": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/enableTenantSubscriptionFeature?api-version=2020-11-01", + "Content": "{\r\n \"tenantSubscriptionId\": \"4e1684d1-fc6f-42f4-8eb5-e7f3ae1c81aa\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "70" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "1b17b632-323f-41dc-bbdd-510bd56eaaa7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "1b17b632-323f-41dc-bbdd-510bd56eaaa7" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222217Z:1b17b632-323f-41dc-bbdd-510bd56eaaa7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYz+DUewAD1r9+DpyiJsAwFRb34UD+J88kzh8KsG4z6MpyufSgnfoT2jWOcNPsLqMyP9haW5N/OfcwFkaGqeQtv07IaJgw2RFuYA3Xd2+ocErhZb7Vdtz//eTizibDEOb98YoTxavrN7hjOEntlnZ" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/disableTenantSubscriptionFeature?api-version=2020-11-01+3": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/disableTenantSubscriptionFeature?api-version=2020-11-01", + "Content": "{\r\n \"tenantSubscriptionId\": \"4e1684d1-fc6f-42f4-8eb5-e7f3ae1c81aa\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "70" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "0f9419a8-5a82-4eb4-bcdd-862939c9037e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-request-id": [ "0f9419a8-5a82-4eb4-bcdd-862939c9037e" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222217Z:0f9419a8-5a82-4eb4-bcdd-862939c9037e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/85B6Yj9PzST7pf4lKoLScRiy6Zd5CH5qGx6cmJX4uyUyEKiCnoPxW7dScUrkG8L2svpNBoR6msOSlJHa72a2voNbdYTHyu1FTFUcU00FMVhOF2pd2LBCFbPluf6N10eWKjS9yu7V4uMOcR987k/" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1969" ], + "x-ms-client-request-id": [ "bbceb1b2-7a5f-4ea3-afea-0116dabf48ec" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "2390c755-eacf-46f3-8dc7-48566967c51e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14873" ], + "x-ms-request-id": [ "2390c755-eacf-46f3-8dc7-48566967c51e" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222217Z:2390c755-eacf-46f3-8dc7-48566967c51e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbj3mXxgFGXFdnHJrj8fIwUbg9idSNe/0Os9Ef1OVk+KyOA85rsCYhHnNNBYXAY5Njaj9fECxe2yF92tQpoCD5I6nWO/5PRwPA7jffDbW9FNtzUIqKJRvV2HZKpGm6UH/MUzxquW9Zjh2hOd8WIZE" ] + }, + "ContentHeaders": { + "Content-Length": [ "526" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"TenantSubscriptionLevel\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Tests.ps1 b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Tests.ps1 new file mode 100644 index 00000000..94d01817 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Tests.ps1 @@ -0,0 +1,26 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Disable-AzsComputeUserSubscriptionFeature.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Disable-AzsComputeUserSubscriptionFeature' { + It 'TestDisableComputeUserSubscriptionFeature' -Skip:$('TestDisableComputeUserSubscriptionFeature' -in $global:SkippedTests) { + $global:TestName = 'TestDisableComputeUserSubscriptionFeature' + + $tenantSubscriptionId = $env.TenantSubscriptionId + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location + $originalLastSubscriptionId = $feature.EnabledTenantSubscriptionId[-1] + Enable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId $tenantSubscriptionId -FeatureName Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + Disable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId $tenantSubscriptionId -FeatureName Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature.EnabledTenantSubscriptionId[-1] | Should Be $originalLastSubscriptionId + } +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json new file mode 100644 index 00000000..21160faf --- /dev/null +++ b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json @@ -0,0 +1,200 @@ +{ + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1970" ], + "x-ms-client-request-id": [ "10ab1aa7-9fa6-445c-af7a-96ef804629d0" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "f5f739c0-91ef-4118-9ed0-04ac543dd23f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14872" ], + "x-ms-request-id": [ "f5f739c0-91ef-4118-9ed0-04ac543dd23f" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222218Z:f5f739c0-91ef-4118-9ed0-04ac543dd23f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6nUHhcm7raFcNY+zz4DMUfXwDJj1ia65o9mb+Kg73SL4XR2RDbmtBkvUel9XJiKPWpq9xPOj1tkslGP2i/m/iHfzGgZKd/uAFkShb4K+3aL0IhCHXDvaPY+HS6bVd9ygeaMph1ilyX4S2wLgUZiL" ] + }, + "ContentHeaders": { + "Content-Length": [ "526" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"TenantSubscriptionLevel\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + }, + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/enableTenantSubscriptionFeature?api-version=2020-11-01+2": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/enableTenantSubscriptionFeature?api-version=2020-11-01", + "Content": "{\r\n \"tenantSubscriptionId\": \"95990F40-5F11-490D-B323-9317191D347A\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "70" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "7310d6e5-e8b7-4d9d-9694-a6d67cfdde63" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-request-id": [ "7310d6e5-e8b7-4d9d-9694-a6d67cfdde63" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222218Z:7310d6e5-e8b7-4d9d-9694-a6d67cfdde63" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARulEyBzjZfTzSkZLATPfEZm2p+lZ0vFE1x7kKQcj2Qcu0cfsqvbtv4Vh/XPk2QQkwz1O7lvw+GMUpSFybJSYM3GAFBv6giHRDPNnPYiKVXyttXToCky8BUvKkjvit/jc3aX37PmUh7CRJaHoJAEyU=" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1972" ], + "x-ms-client-request-id": [ "fd4edbe6-e500-44fb-a449-d8d37aac5e1c" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "bdde5c83-edee-47c3-a397-d3778dfb7710" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14871" ], + "x-ms-request-id": [ "bdde5c83-edee-47c3-a397-d3778dfb7710" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222218Z:bdde5c83-edee-47c3-a397-d3778dfb7710" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuuaz2i6WkE4I+x6uSYEW4wROuvf9IcXWO7vAZQQ0/cClYRVK8LjljTgii+iXHJ3+XV01tMDyIORg9OZUVkmBnPLseu8hWXrGXtnANQSHl4GB1X+0tyCiKdY8F4OZjxVrmKOKkPZGhCZPM1JfBkds=" ] + }, + "ContentHeaders": { + "Content-Length": [ "565" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"TenantSubscriptionLevel\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\",\"95990F40-5F11-490D-B323-9317191D347A\"]}}", + "isContentBase64": false + } + }, + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/disableTenantSubscriptionFeature?api-version=2020-11-01+4": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/disableTenantSubscriptionFeature?api-version=2020-11-01", + "Content": "{\r\n \"tenantSubscriptionId\": \"95990F40-5F11-490D-B323-9317191D347A\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "70" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "513f30ba-5fa8-49ea-9983-e75f062d7133" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-request-id": [ "513f30ba-5fa8-49ea-9983-e75f062d7133" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222218Z:513f30ba-5fa8-49ea-9983-e75f062d7133" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuNdACYHniO+Sr8SExfhS3UgMo0LCXSoPLRuF66lk+aZW19Mt90xTXav7cAT6VmUdKGh/oluVYK6NFPVWRqxwA08INhlTbh7xM/txv0ZjJrTuYqKljLn10Q2P2djLRp0rURYCkeY8iO+5st6CfiZA=" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1974" ], + "x-ms-client-request-id": [ "a1dc1a4b-ab8b-4bab-a5fb-f6417395e61f" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "af547835-7cd5-416e-8cb0-acd3e4a5670e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14870" ], + "x-ms-request-id": [ "af547835-7cd5-416e-8cb0-acd3e4a5670e" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222218Z:af547835-7cd5-416e-8cb0-acd3e4a5670e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuYf+Jng/MhXcTfW/XnWD1N1RAmdYcuuQo8PBR6bRjtI81olmHk/1Vus1uQ4pxVj3WI/igkIwhLkDj/xvTOs49AzZWhfpD+284GT7GqYIEDhwcf+dty/lyNNtwwDK/ebtxKam6SjNBpEYYfjMjbss=" ] + }, + "ContentHeaders": { + "Content-Length": [ "526" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"TenantSubscriptionLevel\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Tests.ps1 b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Tests.ps1 new file mode 100644 index 00000000..c7e24fa4 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Tests.ps1 @@ -0,0 +1,28 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Enable-AzsComputeUserSubscriptionFeature.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Enable-AzsComputeUserSubscriptionFeature' { + It 'TestEnableComputeUserSubscriptionFeature' -Skip:$('TestEnableComputeUserSubscriptionFeature' -in $global:SkippedTests) { + $global:TestName = 'TestEnableComputeUserSubscriptionFeature' + + $tenantSubscriptionId = $env.TenantSubscriptionId + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location + $feature.EnabledTenantSubscriptionId[-1] | Should Not Be $tenantSubscriptionId + Enable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId $tenantSubscriptionId -FeatureName Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature.EnabledTenantSubscriptionId[-1] | Should Be $tenantSubscriptionId + Disable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId $tenantSubscriptionId -FeatureName Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location + $feature.EnabledTenantSubscriptionId[-1] | Should Not Be $tenantSubscriptionId + } +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json new file mode 100644 index 00000000..afb35b90 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json @@ -0,0 +1,44 @@ +{ + "Get-AzsComputeFeature+[NoContext]+TestGetComputeFeature+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1327" ], + "x-ms-client-request-id": [ "c669a6b9-94d0-4a88-afc1-b003375c612f" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "3cc79beb-7726-4cf0-bf79-12e9b91c38f2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13991" ], + "x-ms-request-id": [ "3cc79beb-7726-4cf0-bf79-12e9b91c38f2" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213909Z:3cc79beb-7726-4cf0-bf79-12e9b91c38f2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPNe9JhhcULoXN5HTfA3uDeAx8ljH2RF9vKXYRAsOVxKdy2W+UkWRDZppAB7JQU/+DDBikeTg8K/D+O1FaVWH2N9gW6B7h14IWM1Hvavsy1cJYxi+Iy+mtedlvpl4ZrlORfJWa1Z2pyUOkaLTAgIi" ] + }, + "ContentHeaders": { + "Content-Length": [ "526" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"TenantSubscriptionLevel\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Tests.ps1 b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Tests.ps1 new file mode 100644 index 00000000..5a359210 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Tests.ps1 @@ -0,0 +1,29 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) + +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsComputeFeature.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsComputeFeature' { + It 'TestGetComputeFeature' -Skip:$('TestGetComputeFeature' -in $global:SkippedTests) { + $global:TestName = 'TestGetComputeFeature' + + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + + $feature | Should Not Be $null + $feature.Id | Should Not Be $null + $feature.Name | Should Be Microsoft.Compute.EmergencyVMAccess + $feature.Type | Should Be Microsoft.Compute.Admin/locations/features + $feature.Location | Should Be $env.Location + $feature.EnabledTenantSubscriptionId | Should Not Be $null + $feature.GlobalFeatureSettingGlobalFeatureState | Should Not Be $null + } +} diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json index 6dcf8bf3..e1396f6a 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json @@ -1,16 +1,17 @@ { - "Quota+[NoContext]+TestListQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas?api-version=2021-01-01+1": { + "Quota+[NoContext]+TestListQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2" ], - "x-ms-client-request-id": [ "8f6144fd-975f-48d5-a64e-8f35195cf9e2" ], + "x-ms-unique-id": [ "1975" ], + "x-ms-client-request-id": [ "21763f2c-6139-45e4-b99f-fb73ec6eea86" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -19,38 +20,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "acd0beb8-a3ef-4310-886b-b17725e22422" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEMeijygwT1S/rv1c44ch4aZhaoV8WtnDkDEsov7ZJaIbXavKROb6xlSe/CCRSAH9SSzZCjgJ2W8wIJNAu5sGKVn9FpHP2+7IfKQagB2b0+R5NMuVpCMDiYqtHLM9JVNX7e1gJmYjXGr/3x67mIsk" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14797" ], - "x-ms-request-id": [ "acd0beb8-a3ef-4310-886b-b17725e22422" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233933Z:acd0beb8-a3ef-4310-886b-b17725e22422" ], + "x-ms-correlation-request-id": [ "5e6bf7d1-6da1-4a48-83bd-7d48db5b9538" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14869" ], + "x-ms-request-id": [ "5e6bf7d1-6da1-4a48-83bd-7d48db5b9538" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222218Z:5e6bf7d1-6da1-4a48-83bd-7d48db5b9538" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:32 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARutrmrwVleQE1OGp4iq60wiiMxSg4BtljXLV3D4AnVeoZ33/k+fn9jatOghtC4/McmOZ6uNMgSrOFnUC1+zZrZNydJAiJg/evNJQCZAjas6Yyl5KrEVlk72yNrL94V1n7wY9qGVVD5XZl/AMtzRpI=" ] }, "ContentHeaders": { - "Content-Length": [ "3541" ], + "Content-Length": [ "44189" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota\",\"name\":\"AComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist\",\"name\":\"AComputeQuotaThatDoesNotExist\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist2\",\"name\":\"AComputeQuotaThatDoesNotExist2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/Default Quota\",\"name\":\"Default Quota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":20,\"coresLimit\":50,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/MyNewComputeQuota\",\"name\":\"MyNewComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":99,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/myQuota\",\"name\":\"myQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/TestingSettingsToZeroIssue\",\"name\":\"TestingSettingsToZeroIssue\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":25,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/VaaSSDKTestComputeQuota\",\"name\":\"VaaSSDKTestComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":500,\"coresLimit\":400,\"availabilitySetCount\":2000,\"vmScaleSetCount\":2000,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526\",\"name\":\"crp-test-admin-quota-3553158526\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286\",\"name\":\"crp-test-admin-quota-5815279286\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284\",\"name\":\"crp-test-admin-quota-7873942284\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":0,\"availabilitySetCount\":5,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515\",\"name\":\"crp-test-admin-quota-8756038515\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":16,\"availabilitySetCount\":1,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579\",\"name\":\"crp-test-admin-quota-9433431579\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":16,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036\",\"name\":\"crp-test-admin-quota-9917977036\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":0,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default Quota\",\"name\":\"Default Quota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":20,\"coresLimit\":50,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota\",\"name\":\"myQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c\",\"name\":\"TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b\",\"name\":\"TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670\",\"name\":\"TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004\",\"name\":\"TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847\",\"name\":\"TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0\",\"name\":\"TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8\",\"name\":\"TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8\",\"name\":\"TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5\",\"name\":\"TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8\",\"name\":\"TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493\",\"name\":\"TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2\",\"name\":\"TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6\",\"name\":\"TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0\",\"name\":\"TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508\",\"name\":\"TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d\",\"name\":\"TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9\",\"name\":\"TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e\",\"name\":\"TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84\",\"name\":\"TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99\",\"name\":\"TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7\",\"name\":\"TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5\",\"name\":\"TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4\",\"name\":\"TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619\",\"name\":\"TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4\",\"name\":\"TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba\",\"name\":\"TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71\",\"name\":\"TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76\",\"name\":\"TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5\",\"name\":\"TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997\",\"name\":\"TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12\",\"name\":\"TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96\",\"name\":\"TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a\",\"name\":\"TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7\",\"name\":\"TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244\",\"name\":\"TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa\",\"name\":\"TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf\",\"name\":\"TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f\",\"name\":\"TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87\",\"name\":\"TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570\",\"name\":\"TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858\",\"name\":\"TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e\",\"name\":\"TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b\",\"name\":\"TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2\",\"name\":\"TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc\",\"name\":\"TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8\",\"name\":\"TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae\",\"name\":\"TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1\",\"name\":\"TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1\",\"name\":\"TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71\",\"name\":\"TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663\",\"name\":\"TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26\",\"name\":\"TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2\",\"name\":\"TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8\",\"name\":\"TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979\",\"name\":\"TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888\",\"name\":\"TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca\",\"name\":\"TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f\",\"name\":\"TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d\",\"name\":\"TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968\",\"name\":\"TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794\",\"name\":\"TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d\",\"name\":\"TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5\",\"name\":\"TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f\",\"name\":\"TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41\",\"name\":\"TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f\",\"name\":\"TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f\",\"name\":\"TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d\",\"name\":\"TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4\",\"name\":\"TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91\",\"name\":\"TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540\",\"name\":\"TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf\",\"name\":\"TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6\",\"name\":\"TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d\",\"name\":\"TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04\",\"name\":\"TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}]}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetQuota+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas?api-version=2021-01-01+1": { + "Quota+[NoContext]+TestGetQuota+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "5c691578-1bc6-4400-98d3-d7a5fd3c671a" ], + "x-ms-unique-id": [ "1976" ], + "x-ms-client-request-id": [ "d534f26d-5ddd-4b98-b7e0-7e93fdaa70f4" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -59,38 +62,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "90b870b3-5831-4afe-a327-65393d27d400" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMmPO3Fs2iJqi3pEWrKas1g93muIOqSRQ4gRBAKVJwKCtY6JMHSjTpLNqk+2uweDYqm8A9Xvaq6GRwq1u5AgVULqIUri3NvBujdsPRaL55IafqQvomTbw0mC0WgONKA7UNHN41Zm6DGGN96wXygGn" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14796" ], - "x-ms-request-id": [ "90b870b3-5831-4afe-a327-65393d27d400" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233934Z:90b870b3-5831-4afe-a327-65393d27d400" ], + "x-ms-correlation-request-id": [ "a3ace334-06a9-47ff-a1d6-990dc0d293d2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14868" ], + "x-ms-request-id": [ "a3ace334-06a9-47ff-a1d6-990dc0d293d2" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222219Z:a3ace334-06a9-47ff-a1d6-990dc0d293d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:34 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Fw/p2rGzc5uOPGwlgBPxesXCSf08lIQdYewuF9BdTPaRdMLCjZiFdddzIkRvhxWEBczUTzjZqzrg1MZyxZ6Be3X0DA4Ee4C5VsO40xH55V9HAdVDgtP4iqlIgMDAbo5FRVgRJ6cQeygS5iQ/AzN" ] }, "ContentHeaders": { - "Content-Length": [ "3541" ], + "Content-Length": [ "44189" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota\",\"name\":\"AComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist\",\"name\":\"AComputeQuotaThatDoesNotExist\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist2\",\"name\":\"AComputeQuotaThatDoesNotExist2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/Default Quota\",\"name\":\"Default Quota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":20,\"coresLimit\":50,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/MyNewComputeQuota\",\"name\":\"MyNewComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":99,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/myQuota\",\"name\":\"myQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/TestingSettingsToZeroIssue\",\"name\":\"TestingSettingsToZeroIssue\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":25,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/VaaSSDKTestComputeQuota\",\"name\":\"VaaSSDKTestComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":500,\"coresLimit\":400,\"availabilitySetCount\":2000,\"vmScaleSetCount\":2000,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526\",\"name\":\"crp-test-admin-quota-3553158526\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286\",\"name\":\"crp-test-admin-quota-5815279286\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284\",\"name\":\"crp-test-admin-quota-7873942284\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":0,\"availabilitySetCount\":5,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515\",\"name\":\"crp-test-admin-quota-8756038515\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":16,\"availabilitySetCount\":1,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579\",\"name\":\"crp-test-admin-quota-9433431579\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":16,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036\",\"name\":\"crp-test-admin-quota-9917977036\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":0,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default Quota\",\"name\":\"Default Quota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":20,\"coresLimit\":50,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota\",\"name\":\"myQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c\",\"name\":\"TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b\",\"name\":\"TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670\",\"name\":\"TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004\",\"name\":\"TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847\",\"name\":\"TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0\",\"name\":\"TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8\",\"name\":\"TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8\",\"name\":\"TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5\",\"name\":\"TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8\",\"name\":\"TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493\",\"name\":\"TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2\",\"name\":\"TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6\",\"name\":\"TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0\",\"name\":\"TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508\",\"name\":\"TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d\",\"name\":\"TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9\",\"name\":\"TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e\",\"name\":\"TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84\",\"name\":\"TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99\",\"name\":\"TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7\",\"name\":\"TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5\",\"name\":\"TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4\",\"name\":\"TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619\",\"name\":\"TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4\",\"name\":\"TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba\",\"name\":\"TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71\",\"name\":\"TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76\",\"name\":\"TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5\",\"name\":\"TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997\",\"name\":\"TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12\",\"name\":\"TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96\",\"name\":\"TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a\",\"name\":\"TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7\",\"name\":\"TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244\",\"name\":\"TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa\",\"name\":\"TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf\",\"name\":\"TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f\",\"name\":\"TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87\",\"name\":\"TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570\",\"name\":\"TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858\",\"name\":\"TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e\",\"name\":\"TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b\",\"name\":\"TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2\",\"name\":\"TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc\",\"name\":\"TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8\",\"name\":\"TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae\",\"name\":\"TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1\",\"name\":\"TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1\",\"name\":\"TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71\",\"name\":\"TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663\",\"name\":\"TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26\",\"name\":\"TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2\",\"name\":\"TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8\",\"name\":\"TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979\",\"name\":\"TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888\",\"name\":\"TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca\",\"name\":\"TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f\",\"name\":\"TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d\",\"name\":\"TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968\",\"name\":\"TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794\",\"name\":\"TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d\",\"name\":\"TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5\",\"name\":\"TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f\",\"name\":\"TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41\",\"name\":\"TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f\",\"name\":\"TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f\",\"name\":\"TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d\",\"name\":\"TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4\",\"name\":\"TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91\",\"name\":\"TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540\",\"name\":\"TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf\",\"name\":\"TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6\",\"name\":\"TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d\",\"name\":\"TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04\",\"name\":\"TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}]}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetQuota+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota?api-version=2021-01-01+2": { + "Quota+[NoContext]+TestGetQuota+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?api-version=2021-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "e11f0f69-1481-4592-abbd-8f9d90e16064" ], + "x-ms-unique-id": [ "1977" ], + "x-ms-client-request-id": [ "d3982064-81e9-435e-9695-9e72e3b8b0fd" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -99,38 +104,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8001ba1e-4db9-45e9-830c-6c205ec11373" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNngjFxZyHPnJfcI5vfwaqnJD0+jnK/rBFsqJurjc0+x3Yi9bXBK2iKvFLOW1uY2TH/Z5YYzC24f/U+Tz0+PugKChkBPfJPXl9MAss/laJ5a8YxGRtrxpdKLEHT46ADDS1TPXB0OfxuTGvCotjSYO" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14795" ], - "x-ms-request-id": [ "8001ba1e-4db9-45e9-830c-6c205ec11373" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233934Z:8001ba1e-4db9-45e9-830c-6c205ec11373" ], + "x-ms-correlation-request-id": [ "8208da5b-2b97-4a0c-a3c9-5335f4f15a59" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14867" ], + "x-ms-request-id": [ "8208da5b-2b97-4a0c-a3c9-5335f4f15a59" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222219Z:8208da5b-2b97-4a0c-a3c9-5335f4f15a59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:34 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrq7V/f7+LeI02E/wC3/dKFGJenfy6PeoYVzVx1ov970aCJYMltryu40kbRsa8e7yynDZrH8849MGD2toJ2xkhgSelQdzDnLw+4ltZeFOxS3o538T2X0T8bAT8gFGysQlCqCcCyYiegL9TC1wAdH/" ] }, "ContentHeaders": { - "Content-Length": [ "426" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota\",\"name\":\"AComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526\",\"name\":\"crp-test-admin-quota-3553158526\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas?api-version=2021-01-01+1": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "5" ], - "x-ms-client-request-id": [ "9a35b76d-d16a-4a4d-9dc3-cf33fde8e6d7" ], + "x-ms-unique-id": [ "1978" ], + "x-ms-client-request-id": [ "26656521-473f-4d3b-ac60-2c6163812411" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -139,38 +146,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5928de4f-4ac4-46fb-acd1-467aabe13851" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8VfGhlcVQikSJ3UBpV6BZvzc+sHpNHTBVkOfzXKRtgIpVWIIh/aOMRicrUzPUUmjE5/Gvuljx/g8GhOwpZRSUjGeZaQ/H/i1eUAk+kw3AWHbhkEZJWTjO7N/scfKFxMDkk5mAe2wf5c32nmvZvuW" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14794" ], - "x-ms-request-id": [ "5928de4f-4ac4-46fb-acd1-467aabe13851" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233934Z:5928de4f-4ac4-46fb-acd1-467aabe13851" ], + "x-ms-correlation-request-id": [ "cdcd4922-7664-428b-820c-e6d4c00c2168" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14866" ], + "x-ms-request-id": [ "cdcd4922-7664-428b-820c-e6d4c00c2168" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222219Z:cdcd4922-7664-428b-820c-e6d4c00c2168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:34 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8Z8NJWYCCn0GM1TSDOBef87dJhFFgY/YApiYINKXqXs4aWiH/LLPq4oTpudaVp3I3RZY+kXRJbk1dnNj7u2I9pxaDIBXRG60pE3oAmYz3KyomIzSfEoMaKdw+42ICjoWav/W4v3u6IUb9bnlJMFj" ] }, "ContentHeaders": { - "Content-Length": [ "3541" ], + "Content-Length": [ "44189" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota\",\"name\":\"AComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist\",\"name\":\"AComputeQuotaThatDoesNotExist\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist2\",\"name\":\"AComputeQuotaThatDoesNotExist2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/Default Quota\",\"name\":\"Default Quota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":20,\"coresLimit\":50,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/MyNewComputeQuota\",\"name\":\"MyNewComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":99,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/myQuota\",\"name\":\"myQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/TestingSettingsToZeroIssue\",\"name\":\"TestingSettingsToZeroIssue\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":25,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000}},{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/VaaSSDKTestComputeQuota\",\"name\":\"VaaSSDKTestComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":500,\"coresLimit\":400,\"availabilitySetCount\":2000,\"vmScaleSetCount\":2000,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}]}" + "Content": "{\"value\":[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526\",\"name\":\"crp-test-admin-quota-3553158526\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286\",\"name\":\"crp-test-admin-quota-5815279286\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284\",\"name\":\"crp-test-admin-quota-7873942284\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":0,\"availabilitySetCount\":5,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515\",\"name\":\"crp-test-admin-quota-8756038515\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":16,\"availabilitySetCount\":1,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579\",\"name\":\"crp-test-admin-quota-9433431579\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":16,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036\",\"name\":\"crp-test-admin-quota-9917977036\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":0,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default Quota\",\"name\":\"Default Quota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":20,\"coresLimit\":50,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota\",\"name\":\"myQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c\",\"name\":\"TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b\",\"name\":\"TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670\",\"name\":\"TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004\",\"name\":\"TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847\",\"name\":\"TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0\",\"name\":\"TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8\",\"name\":\"TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8\",\"name\":\"TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5\",\"name\":\"TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8\",\"name\":\"TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493\",\"name\":\"TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2\",\"name\":\"TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6\",\"name\":\"TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0\",\"name\":\"TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508\",\"name\":\"TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d\",\"name\":\"TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9\",\"name\":\"TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e\",\"name\":\"TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84\",\"name\":\"TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99\",\"name\":\"TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7\",\"name\":\"TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5\",\"name\":\"TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4\",\"name\":\"TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619\",\"name\":\"TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4\",\"name\":\"TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba\",\"name\":\"TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71\",\"name\":\"TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76\",\"name\":\"TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5\",\"name\":\"TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997\",\"name\":\"TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12\",\"name\":\"TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96\",\"name\":\"TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a\",\"name\":\"TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7\",\"name\":\"TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244\",\"name\":\"TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa\",\"name\":\"TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf\",\"name\":\"TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f\",\"name\":\"TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87\",\"name\":\"TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570\",\"name\":\"TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858\",\"name\":\"TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e\",\"name\":\"TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b\",\"name\":\"TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2\",\"name\":\"TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc\",\"name\":\"TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8\",\"name\":\"TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae\",\"name\":\"TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1\",\"name\":\"TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1\",\"name\":\"TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71\",\"name\":\"TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663\",\"name\":\"TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26\",\"name\":\"TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2\",\"name\":\"TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8\",\"name\":\"TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979\",\"name\":\"TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888\",\"name\":\"TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca\",\"name\":\"TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f\",\"name\":\"TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d\",\"name\":\"TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968\",\"name\":\"TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794\",\"name\":\"TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d\",\"name\":\"TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5\",\"name\":\"TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f\",\"name\":\"TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41\",\"name\":\"TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f\",\"name\":\"TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f\",\"name\":\"TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d\",\"name\":\"TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4\",\"name\":\"TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91\",\"name\":\"TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540\",\"name\":\"TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf\",\"name\":\"TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6\",\"name\":\"TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d\",\"name\":\"TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}},{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04\",\"name\":\"TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}]}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota?api-version=2021-01-01+2": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?api-version=2021-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "eacc7e71-c8f0-4236-bcc6-e81b0b6cfbb3" ], + "x-ms-unique-id": [ "1979" ], + "x-ms-client-request-id": [ "dd3e196c-9b36-4f4a-8446-4e886c0d8c2c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -179,38 +188,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "97e9fa45-bcb5-40c3-a611-2ffb5ac6ebc6" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ5a9RsuPEVaHkJgpMabCK1Co71joiUx4pKZqbqcBZtrzvK284uByMm1Maf/Hj/vt6BW/Do50KlQDtfMeTCk+rOa+nfvPj2ZLXCu57+OsPmxelRb2ppVOyGcS8s0DLwO57WHNAVgIX+iGUv/eLkGh" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14793" ], - "x-ms-request-id": [ "97e9fa45-bcb5-40c3-a611-2ffb5ac6ebc6" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233934Z:97e9fa45-bcb5-40c3-a611-2ffb5ac6ebc6" ], + "x-ms-correlation-request-id": [ "6ad8440c-7186-4cee-816e-46321c4af908" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14865" ], + "x-ms-request-id": [ "6ad8440c-7186-4cee-816e-46321c4af908" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222220Z:6ad8440c-7186-4cee-816e-46321c4af908" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:34 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYQtKWnI1uqpZLB6jXEweLmTY9in5enVp5wHVImcJtU/PgXMJ9k8zeaK3dWA7XsfpJWACiI79TvftbD37J4/yRoSoHDlAWoeG4+n58Zcc3XERD5uxvXntPqwMVcnmxfhQZ7UmVTaRDjaQipifTra7" ] }, "ContentHeaders": { - "Content-Length": [ "426" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuota\",\"name\":\"AComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526\",\"name\":\"crp-test-admin-quota-3553158526\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist?api-version=2021-01-01+3": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286?api-version=2021-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "7" ], - "x-ms-client-request-id": [ "d89a0493-5d82-4330-bb70-3eae097b41db" ], + "x-ms-unique-id": [ "1980" ], + "x-ms-client-request-id": [ "303052fc-4411-472e-a3f9-004ee35797f8" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -219,38 +230,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d6b2dd50-0f2f-4d6d-a56c-e32133511a90" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEtO5idWDdpzLNUrW7qNathhz0q0luHGKR+wEz0o7FJU36/t/cQbyCehZg5DeytYwY4/IvKCnhs8kKngWISe4dEVEa4yWyEmKEUiEYqzfG7o7k6aE63UeV/GCJ0Ok4Shvc5BkpJi+FF0iRtdkJvdL" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14792" ], - "x-ms-request-id": [ "d6b2dd50-0f2f-4d6d-a56c-e32133511a90" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233934Z:d6b2dd50-0f2f-4d6d-a56c-e32133511a90" ], + "x-ms-correlation-request-id": [ "459cfd35-8801-4e05-9e1e-51028e0e6936" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14864" ], + "x-ms-request-id": [ "459cfd35-8801-4e05-9e1e-51028e0e6936" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222220Z:459cfd35-8801-4e05-9e1e-51028e0e6936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:34 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ51ZU9+71IckOsnPqFDFwtH544zsxDaVPKqSuUN0ODOsiq6J+iVIXuPnKcvRPABOxmbtwWk50c727iKNLeJ4m5UkZi3k+ZH/GUfNJeenfllyvxwxq/QMjt6+2PLPoDBGXwVDjYi2thbUoh/x2LB7" ] }, "ContentHeaders": { - "Content-Length": [ "458" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist\",\"name\":\"AComputeQuotaThatDoesNotExist\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286\",\"name\":\"crp-test-admin-quota-5815279286\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":20,\"availabilitySetCount\":5,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist2?api-version=2021-01-01+4": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284?api-version=2021-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist2?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "e4a75d50-06d3-4f18-b0cc-1afc8092bf5d" ], + "x-ms-unique-id": [ "1981" ], + "x-ms-client-request-id": [ "b9a6f516-d455-455d-a384-f22ed045e21a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -259,38 +272,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "94b99781-3a8a-4110-9155-abd8209cd059" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvs4FjTEBPBmSdlKeCeDsLyefs6921SCzXCQzwyLdsjECjF4AgAqj6NzP4FBgnSKbrMrJ1jE6Wd7poZudPU6rpJdG/ZgSfuEnUe/Zxc8f/sVhXqqdWPFhZsGnBdgr0uAko2otSayl6/biyrbQefM9L" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14791" ], - "x-ms-request-id": [ "94b99781-3a8a-4110-9155-abd8209cd059" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233935Z:94b99781-3a8a-4110-9155-abd8209cd059" ], + "x-ms-correlation-request-id": [ "dc5cf760-7bf3-4ac8-acd8-c66b2a0523fd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14863" ], + "x-ms-request-id": [ "dc5cf760-7bf3-4ac8-acd8-c66b2a0523fd" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222220Z:dc5cf760-7bf3-4ac8-acd8-c66b2a0523fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:34 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7pPkthmC5Y18jmDLUXqAI1H1+9Nn3n5CXbRF9wFbsr6wlsF67W6fPDFFMIhGpT7lo5R6X2tteEcgDaDSxars9JSvxeQkidgV7ZBtfXWlE5WAPdeJ3ZyF8dmxN1SV8uAyovxVErd/d13bxBIWZYm8" ] }, "ContentHeaders": { - "Content-Length": [ "460" ], + "Content-Length": [ "497" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/AComputeQuotaThatDoesNotExist2\",\"name\":\"AComputeQuotaThatDoesNotExist2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284\",\"name\":\"crp-test-admin-quota-7873942284\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":0,\"availabilitySetCount\":5,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/Default Quota?api-version=2021-01-01+5": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515?api-version=2021-01-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/Default%20Quota?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "9" ], - "x-ms-client-request-id": [ "fae3a285-b07c-4443-b832-f8fe29a4ce5c" ], + "x-ms-unique-id": [ "1982" ], + "x-ms-client-request-id": [ "2846a619-c203-410d-9199-f716cc4de02f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -299,38 +314,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a90e96e7-fd0d-4a37-b67c-7634c0b5608f" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCaHLtMrWfjLgoTu6gKQtVY7C0fpFWmkgDMBsPj/qwiTIOb1DFuOXJEE/Ze9OVmRI5MFv2e7tqwTPP1HLeSE98NV0AplG3Ln4KdxIWdfPmsJei3W0DlhtYYMd1Wj2iphnrKqXwWV1dKFLIqPVPlsL" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14790" ], - "x-ms-request-id": [ "a90e96e7-fd0d-4a37-b67c-7634c0b5608f" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233935Z:a90e96e7-fd0d-4a37-b67c-7634c0b5608f" ], + "x-ms-correlation-request-id": [ "cce6453e-ef5e-4cfb-b26d-ba6042e2add5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14862" ], + "x-ms-request-id": [ "cce6453e-ef5e-4cfb-b26d-ba6042e2add5" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222220Z:cce6453e-ef5e-4cfb-b26d-ba6042e2add5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:34 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYPK7praCvYom9zLOKWp9M2mWXV/KEY7G9jsoNcpSe8lG1eiwz4vnKpWkNRJnZyLmRDgali5mJaNM1WTs7oKYSWqwlMA/ODlkyZ2Nu68YHKfxknhtfwRvgr05XmywFHOyERt2doaRSvhtx71lfq8i" ] }, "ContentHeaders": { - "Content-Length": [ "429" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/Default Quota\",\"name\":\"Default Quota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":20,\"coresLimit\":50,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515\",\"name\":\"crp-test-admin-quota-8756038515\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":16,\"availabilitySetCount\":1,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/MyNewComputeQuota?api-version=2021-01-01+6": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579?api-version=2021-01-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/MyNewComputeQuota?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "10" ], - "x-ms-client-request-id": [ "229eba2c-15b4-4eb9-a0c4-855f80cb2ef3" ], + "x-ms-unique-id": [ "1983" ], + "x-ms-client-request-id": [ "415fce7a-44a3-48f3-b42a-b49d24b0e33f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -339,38 +356,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b5735701-f24a-4d58-b909-2261c1d0e6a9" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvngy4pL3RdegEWpftif7fsHu533R5YSErkiIb/wCiHv0LbrMt+3bdFEOZkwEtqQiHtjDFHe6KrNYwrSRJE+uL5Zgl9VMad9bhLcL41QaXaiHADBUWUz6cFuFvxXpKVfComkemXCuMQLXjWueRpvTE" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14789" ], - "x-ms-request-id": [ "b5735701-f24a-4d58-b909-2261c1d0e6a9" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233935Z:b5735701-f24a-4d58-b909-2261c1d0e6a9" ], + "x-ms-correlation-request-id": [ "cfa43d90-085e-4ff9-8874-83914da957b6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14861" ], + "x-ms-request-id": [ "cfa43d90-085e-4ff9-8874-83914da957b6" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222220Z:cfa43d90-085e-4ff9-8874-83914da957b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:34 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0NS26c6G3fmNYR2zRDERXiVDhZgWcmuzklk3BVk0PvHrnlP8ij1LW87FuMBwtfTozK/YJqk+2WdoWoEpS5dNfRp9cBl5nXLooARdERwhaahfEf0UOuoou47QtzeAgKHgbABCgJCiARNRkfrPf1FI" ] }, "ContentHeaders": { - "Content-Length": [ "435" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/MyNewComputeQuota\",\"name\":\"MyNewComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":99,\"coresLimit\":99,\"availabilitySetCount\":9,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":4096,\"maxAllocationPremiumManagedDisksAndSnapshots\":4096}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579\",\"name\":\"crp-test-admin-quota-9433431579\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":16,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/myQuota?api-version=2021-01-01+7": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036?api-version=2021-01-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/myQuota?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "f9fa73fe-e41f-4ab1-b206-a2aa7eab5b41" ], + "x-ms-unique-id": [ "1984" ], + "x-ms-client-request-id": [ "6448fae6-2ee8-47a5-b1bb-26a6edae601d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -379,38 +398,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f23dd175-27ee-47fb-b8f5-95a2d8a8e422" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviXbBmX9MK0dEjXTZgQ+mvgO6GF5ut4Fk8WS6lx33Fibrc8S2Uhj/EJ+ST9NJyiPZZYmMqD9frmmDCNiOv4OYGBiaJ4pULxAIHc/DzvKrlI77DjRjyJaunLs6xwuEaemdxwdDskHxYozdcQmM098b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14788" ], - "x-ms-request-id": [ "f23dd175-27ee-47fb-b8f5-95a2d8a8e422" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233935Z:f23dd175-27ee-47fb-b8f5-95a2d8a8e422" ], + "x-ms-correlation-request-id": [ "bd5edc5e-ded1-4f56-95e4-61b1d612e936" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14860" ], + "x-ms-request-id": [ "bd5edc5e-ded1-4f56-95e4-61b1d612e936" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222220Z:bd5edc5e-ded1-4f56-95e4-61b1d612e936" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:35 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPTbqKUL0Va4V3StsMxvhxbuBPnAp2dwuYYsIjBeZkCSzeRo1eM0MZ+999PAzr7GAi9S0cICQrbLudltZ22COoMjbuQFXH9y6SU3ZbrFEe7Maf4sslYy0dR1b2cf+zbjqsLQWb6e6OkdIku18h6T5" ] }, "ContentHeaders": { - "Content-Length": [ "407" ], + "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/myQuota\",\"name\":\"myQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036\",\"name\":\"crp-test-admin-quota-9917977036\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":5,\"coresLimit\":20,\"availabilitySetCount\":0,\"vmScaleSetCount\":5,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/TestingSettingsToZeroIssue?api-version=2021-01-01+8": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default Quota?api-version=2021-01-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/TestingSettingsToZeroIssue?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default%20Quota?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "12" ], - "x-ms-client-request-id": [ "3e635ab9-40cf-4cc9-b613-f84035805533" ], + "x-ms-unique-id": [ "1985" ], + "x-ms-client-request-id": [ "db2dab21-d3a4-41ba-9f2e-4e2aa942be9a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -419,38 +440,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "43045f5d-8aa9-4313-9e5b-42eb4ce535ff" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzNGqWWH0sm+4lrUmEQsH/Vp9+bzfzQ1dyuYP3osWWCnoQKXLOqtEQ+CC2UgB47YSnV+54FTk0+EMQp4gDZmnzrSQq7gKoEtkNSTHxiuvtPXYe0F2juD+F1xa+DUJ3w/BWC//AwcKkDvbvQi5o7g7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14787" ], - "x-ms-request-id": [ "43045f5d-8aa9-4313-9e5b-42eb4ce535ff" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233935Z:43045f5d-8aa9-4313-9e5b-42eb4ce535ff" ], + "x-ms-correlation-request-id": [ "f9db0e2e-8a2f-4597-994a-c41bbaa91de5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14859" ], + "x-ms-request-id": [ "f9db0e2e-8a2f-4597-994a-c41bbaa91de5" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222220Z:f9db0e2e-8a2f-4597-994a-c41bbaa91de5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:35 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEX2bQ3x/aQ8Pe8YYcnzdzlXPXhmMY+/AiO7wr9QLCmmCcMbailepcuIfC0RPwqTPQg3KBxVNnztOCGGIUkZsk5Wx2Q7UxtToTssi/KDnDeQpCRPi/eSWu3zqshH5q+HNoPPwj2B6dCUMAxiFeGLm" ] }, "ContentHeaders": { - "Content-Length": [ "452" ], + "Content-Length": [ "465" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/TestingSettingsToZeroIssue\",\"name\":\"TestingSettingsToZeroIssue\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":25,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default Quota\",\"name\":\"Default Quota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":20,\"coresLimit\":50,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/VaaSSDKTestComputeQuota?api-version=2021-01-01+9": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota?api-version=2021-01-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/VaaSSDKTestComputeQuota?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "13" ], - "x-ms-client-request-id": [ "402fbb16-e28e-4c39-9013-bb9ba9232e72" ], + "x-ms-unique-id": [ "1986" ], + "x-ms-client-request-id": [ "c1f32287-f28e-4a0d-9cfc-57b14e2ba352" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -459,416 +482,418 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "29186cef-c55f-4ea9-8d80-2546b0726081" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIFaIp5dEAs09bYWO1kBMr62jHbtqiZJNAwQLHn/gAi6ThrZTXX3M/zoZp++lI1slxu9CjGawR1T06iKs4JeDskEyO/Ld1sKU3GKQIppA4YxTnIcGRWr9SxiZDn0wD8wURupr3WUE1jzokCIqGQYR" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14786" ], - "x-ms-request-id": [ "29186cef-c55f-4ea9-8d80-2546b0726081" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233935Z:29186cef-c55f-4ea9-8d80-2546b0726081" ], + "x-ms-correlation-request-id": [ "5c7dc745-3b72-47c0-9ec0-7852460e9407" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14858" ], + "x-ms-request-id": [ "5c7dc745-3b72-47c0-9ec0-7852460e9407" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222220Z:5c7dc745-3b72-47c0-9ec0-7852460e9407" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:35 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfdAZVrRxLwpQUORwc7E74/Gv3WGfk7EQoXh0Oaqe0XdedjBUMVFxlxa/TF9k28TsM4V18xONre/s+xt6iZ4QaWO4xeLmIG4Ro6JFpKqvAYCHpIN3eGAlyxCsEFnlZAKdVHZqtDGLL8hRRnSxZapv" ] }, "ContentHeaders": { - "Content-Length": [ "455" ], + "Content-Length": [ "443" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/VaaSSDKTestComputeQuota\",\"name\":\"VaaSSDKTestComputeQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":500,\"coresLimit\":400,\"availabilitySetCount\":2000,\"vmScaleSetCount\":2000,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota\",\"name\":\"myQuota\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01+1": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c?api-version=2021-01-01+10": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "07d280ea-a231-483d-866c-8ed32518db53" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1987" ], + "x-ms-client-request-id": [ "d98f575c-f4f4-4bc6-a55d-f09835ae1625" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0cb07420-bb87-457e-b791-3cdfb131ce00" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvYSGARH9x2Ekpkp76ieehEbPBnvIDhltuDMpidfVdVIMx/yLG7uVINCUqLjJ0TIRKfNCchbwuKJyqSkMnORCGn9C2xnQ+jQJkJa8NC49YtEbL1Sieokdjsc31RERjLscs18odFKDRki288tKvvVt" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "0cb07420-bb87-457e-b791-3cdfb131ce00" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233936Z:0cb07420-bb87-457e-b791-3cdfb131ce00" ], + "x-ms-correlation-request-id": [ "6f216cd4-a89c-4198-a2d5-e17d88520636" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14857" ], + "x-ms-request-id": [ "6f216cd4-a89c-4198-a2d5-e17d88520636" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:6f216cd4-a89c-4198-a2d5-e17d88520636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:36 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdzFTnbfQUnXHrmX0hp78ED+3Gq6uxT7NQLiisurFD0IV/6Sy3fcBy+Cy/d0X861/HyAxWM3TwD1jR2KoqCrpqleVTw86PzfFs0f+erx5F8FCARbbZEk184czlaDW8UpLK6Wh3B7oKQxybgNjfCCa" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0\",\"name\":\"testQuota0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c\",\"name\":\"TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01+2": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b?api-version=2021-01-01+11": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "2374fd77-7d44-43e0-97d0-2003812921ff" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1988" ], + "x-ms-client-request-id": [ "e8cd9991-f4fc-412c-a317-9909451f5031" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "59c935b7-3df6-44ab-a64e-08aa5a4cbfe6" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHWMAxdPicigv//FOkqAOk2liYaEr+Awaqi+qMtoz9C9u5tczfeqxMRycRxAS+FDv5OtlhJ+86j/vc+CxOpHko8mr0PJVsLl9zlLoXBF8pCNtmNXqmt0KJu9UdcjgG9Cr1HK1MUs5jos9ZqdK8Xj7" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "59c935b7-3df6-44ab-a64e-08aa5a4cbfe6" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233937Z:59c935b7-3df6-44ab-a64e-08aa5a4cbfe6" ], + "x-ms-correlation-request-id": [ "53b03e1e-b6d1-42f0-a031-85fb92710086" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14856" ], + "x-ms-request-id": [ "53b03e1e-b6d1-42f0-a031-85fb92710086" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:53b03e1e-b6d1-42f0-a031-85fb92710086" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:37 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwke3swTELj+ntZb1ZIEyKuTlJB0tQVxIuNMNnf0qa7zrpcl7U5kXppOe2I8m8Glp2R7YwcjQHvygzl2yzW1mmHkqi8+7aKwo6Xdgz7tjKk1SIQYbWPeXcKY1t6/iKnI+Ghy7bt3zDJPA6vrZaga5" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1\",\"name\":\"testQuota1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":1,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b\",\"name\":\"TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01+3": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670?api-version=2021-01-01+12": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "87668c72-9282-4ab7-9ffd-dc7ca00020b4" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1989" ], + "x-ms-client-request-id": [ "b2218070-28e5-4999-8c35-7d160a28f9fd" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f2bc6220-af3d-4f68-883d-f945223a9b05" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/VKcB0NismK96UnSVkWS5PRHf1bMr6p3v5TXwwMP4gR8WLfCsHz5wBIUvbvfj/PVkw6CHdLseWc1bUrhUV2yVfUKOfnzsXgOTai//3uHqyu0cV9WWnhe+mZB07gx8UXgDBQCutM+lMbppZO3RY34" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ "f2bc6220-af3d-4f68-883d-f945223a9b05" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233938Z:f2bc6220-af3d-4f68-883d-f945223a9b05" ], + "x-ms-correlation-request-id": [ "f640fa93-77f2-4194-81de-808f8f1fdbea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14855" ], + "x-ms-request-id": [ "f640fa93-77f2-4194-81de-808f8f1fdbea" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:f640fa93-77f2-4194-81de-808f8f1fdbea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:37 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3MnaNflYcQLFGYsEnZc0Z5Flm1GmtSjSVq0vo8LQYw5rMBfyWcDVIgzxc8zJf5csij2ixT58h8bVyTrBzmVlVF1Xk0WSJ6i+M/o0A+/o2vRphtnht3MAKfp0nL7Qp0+Rsc3JLwTY1b9QQZ6DONZH" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2\",\"name\":\"testQuota2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670\",\"name\":\"TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01+4": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004?api-version=2021-01-01+13": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "21" ], - "x-ms-client-request-id": [ "88902e08-db8d-43d1-8727-4cbb4c5a0ee6" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1990" ], + "x-ms-client-request-id": [ "6611dcf8-e3c2-4290-bc7f-5dea1df4bb6f" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d2bd6675-aa9d-49b9-bf95-fbf6f0013081" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKKyWWVD51iff+h5qDKWXOsUiTN2V8JtmLT8BzC3GvISt4JuMUyXkU8Af097d4u7TIn4SyKVskaPQ5SpyBsJ5DHlPcDg3QBB/VmaLl48RL2+w2VSDabCZJ+z0XdbBFGuBEPsZjpUj5VyRu4cE5NMV" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "d2bd6675-aa9d-49b9-bf95-fbf6f0013081" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233939Z:d2bd6675-aa9d-49b9-bf95-fbf6f0013081" ], + "x-ms-correlation-request-id": [ "691e4daa-0dd8-4e08-af35-70dee56d35f8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14854" ], + "x-ms-request-id": [ "691e4daa-0dd8-4e08-af35-70dee56d35f8" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:691e4daa-0dd8-4e08-af35-70dee56d35f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:38 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJfr5njRF39ijHxSxKXIn85C9zo3xIRNW6VVN2CF14JoFtluUf3nSs21URydinzEnHYZLfNYDnuzNW3YXO8UhFR+AhgQIr+TaUuzOP9XIkUAv5Sz3JCL0vAnX+EBXSY/whfhfErqxx+5UOMitUIvF" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3\",\"name\":\"testQuota3\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004\",\"name\":\"TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01+5": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847?api-version=2021-01-01+14": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "802b8755-50a7-4183-8f30-22ddb1df630b" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1991" ], + "x-ms-client-request-id": [ "af5809cc-6c48-416d-8d9d-5b120d59c917" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "298984e4-7f9a-4719-8f2f-2adb01cc89d8" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHmbtI/MWUHDaWtcslcaDvRWaOke5tpKEtBklweAF8jLMI4nv/But0WtPkVQmgnV6ttvZkaMUEM4E+jbZnpCMpeimH45Nd0DOTq21qdnmsF3TZ7LZ/IoBVtevzziAkA0L+XRxcB3UPBnMnEX+NW75" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "298984e4-7f9a-4719-8f2f-2adb01cc89d8" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233940Z:298984e4-7f9a-4719-8f2f-2adb01cc89d8" ], + "x-ms-correlation-request-id": [ "3af1ef27-bc8e-4ed6-a714-6f99d3ec51ed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14853" ], + "x-ms-request-id": [ "3af1ef27-bc8e-4ed6-a714-6f99d3ec51ed" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:3af1ef27-bc8e-4ed6-a714-6f99d3ec51ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:40 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+ZrVTZyEhol8j6GBKFF7WnHG9LHfQdejDd+UuwI5lpQ3RodhNJwkIk989lzMvMEDxV8ZYYnv/0uWOl2H/EV2g/7XrtT4KvGaQXKvk8qBgyP54gHvVwmY+95FN2gUZz+QCFDrbgNvcNGpoMvLNP1j" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4\",\"name\":\"testQuota4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847\",\"name\":\"TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01+6": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0?api-version=2021-01-01+15": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "25" ], - "x-ms-client-request-id": [ "19e273aa-c2fb-4f29-bed9-b6dd79b78101" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1992" ], + "x-ms-client-request-id": [ "e8d9f260-209f-4f1c-9648-511f8c91d499" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ec8c17ed-03b1-468a-a183-59e9b2b4dc73" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMfYtGHLbVADUW4IJ++qIA0kAWPtNTcg+rvqTGqtaUhxSuqwvJqTU+h68Xe7GhDOUBWLW9qmMmf2kJqcEViYOECtrvLkj9EfHPu+YSa7zlNSKnG/xoAe9PoHJ3dzF8aDJj7wEmWlu7sE+zgZe531o" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-request-id": [ "ec8c17ed-03b1-468a-a183-59e9b2b4dc73" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233941Z:ec8c17ed-03b1-468a-a183-59e9b2b4dc73" ], + "x-ms-correlation-request-id": [ "ea1fa03b-c829-4b4d-be18-95400f7f4b6c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14852" ], + "x-ms-request-id": [ "ea1fa03b-c829-4b4d-be18-95400f7f4b6c" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:ea1fa03b-c829-4b4d-be18-95400f7f4b6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:40 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcsyT4FmnjpVLp79h5kGwR/yvfBEg0s61ERdTcB8tM+QT0iP+IigWhExhGvJoPy38j4zLNO//0sfmypXjJhpBWuYgZClBAeteedEyMT4D/ZzOg3fqHY0L03y6Hfry0OZaZbW8XEniTET2tSs6og7c" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5\",\"name\":\"testQuota5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0\",\"name\":\"TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01+7": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8?api-version=2021-01-01+16": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "27" ], - "x-ms-client-request-id": [ "60e86a49-3d01-4688-a1f2-8b464186e8c1" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1993" ], + "x-ms-client-request-id": [ "be40a895-a226-46a9-a320-7d0b236359cd" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6e11c076-2fa0-4852-b9f5-e8223617dcd7" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGDYAcZ7vA5iOJbj/cZZGau702F4hs5UIVXB1cyIXrtSafJFIxMF8HHqg7QLJoPhCVLErwDofxU0f04dtEiWuNzTObKPUMeW+/yUMKFkdM6v4XWPgjGiyr9p+bAK2MkaLGD0wIWyUBCtfgP/WuP2E" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], - "x-ms-request-id": [ "6e11c076-2fa0-4852-b9f5-e8223617dcd7" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233942Z:6e11c076-2fa0-4852-b9f5-e8223617dcd7" ], + "x-ms-correlation-request-id": [ "dbe9493c-086f-4636-b818-94212e57487b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14851" ], + "x-ms-request-id": [ "dbe9493c-086f-4636-b818-94212e57487b" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:dbe9493c-086f-4636-b818-94212e57487b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:41 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvp17cXQvPbXclUcudpzS6iJRiwuPqC+1TKsv2k9MOldq6XEdQf38LeX+HNJCvCH3DHwFA/joGmUgVirjjlQgZ0O6f+Zq4kOssSDppBjGfIWSwDAwM0vF8FFzu0ds5ET/cgQwDqb/JH3pr1jGJitq+" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6\",\"name\":\"testQuota6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8\",\"name\":\"TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7?api-version=2021-01-01+8": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8?api-version=2021-01-01+17": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 100,\r\n \"coresLimit\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"virtualMachineCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "ac725b9d-186a-4520-b8f1-3cf829a8e55d" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1994" ], + "x-ms-client-request-id": [ "b71f8a9a-8ad1-4f4a-ba8d-cee90bc96095" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "264" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4bd05983-e02b-43c3-819e-93a80ba0f67f" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzq7Q9SzmPg2Y3TCe0u/ToLWcXHhJb8Vhpx/YvumgeCXZOXSxm+AQqOYrG+skFnG3eB2lmrPH3y/F69UmSFIdNmP2OibvPeQFq5YhaxCKLbVjckVoOJWLnBnHHaUhIR3llORxtaFUIMA0zmER80Ly" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], - "x-ms-request-id": [ "4bd05983-e02b-43c3-819e-93a80ba0f67f" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233943Z:4bd05983-e02b-43c3-819e-93a80ba0f67f" ], + "x-ms-correlation-request-id": [ "d9d68e93-0e7b-4893-915d-951acf768f69" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14850" ], + "x-ms-request-id": [ "d9d68e93-0e7b-4893-915d-951acf768f69" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:d9d68e93-0e7b-4893-915d-951acf768f69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:42 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMhVPGRtl62pV9EbeGw9I4x+ThuJBalUriJJ+OgEIBWTKlM3Bj1UZqgrrL7vrHzmmrpmNHfvEVdGMI9qhYRtjXnEFFqOABkyBSw/G3jFUyJhQhYvxaXpGOiWxKNVkBmvJAtodhpEvz2BSWI9GB0zV" ] }, "ContentHeaders": { - "Content-Length": [ "425" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7\",\"name\":\"testQuota7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":100,\"vmScaleSetCount\":100,\"maxAllocationStandardManagedDisksAndSnapshots\":100,\"maxAllocationPremiumManagedDisksAndSnapshots\":100}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8\",\"name\":\"TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8?api-version=2021-01-01+9": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5?api-version=2021-01-01+18": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"virtualMachineCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "31" ], - "x-ms-client-request-id": [ "078e64c3-0312-4b23-a31d-384493e8cf21" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "1995" ], + "x-ms-client-request-id": [ "cdbfc5dd-f212-4ab7-b52b-837ca36f7803" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "270" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "eb24ef75-7abd-4b55-90dc-de18521b87cb" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPEgZmUajoGLIG2lLhxw+b4JsxrCZBgMSYI77CF6FfS7pO5+hwg7spOCgkKP/NLKKIzNSEcVvxYbKff3wKOsNuacIApWy8LIv9k0xvnYDStVlrlNuONDA0BXx2crOFfKqAdYF3gO1zb0EpIc6E3OL" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], - "x-ms-request-id": [ "eb24ef75-7abd-4b55-90dc-de18521b87cb" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233944Z:eb24ef75-7abd-4b55-90dc-de18521b87cb" ], + "x-ms-correlation-request-id": [ "59c24404-e155-4361-a340-47446df03035" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14849" ], + "x-ms-request-id": [ "59c24404-e155-4361-a340-47446df03035" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222221Z:59c24404-e155-4361-a340-47446df03035" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:44 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcwHyo8NWdKGJ1PIbITqwXfulk/uqdCjycxOzgeHjL2Dz1YUPFrxF4ZqwF38Bcw5drmokttb8K9auk4UKq8e4kFRO1MUK6teSKbpY5w6tZzE8xKjYmh+QdzEj9qX8PlLayL1GRnl/439/LxAh1ad6" ] }, "ContentHeaders": { - "Content-Length": [ "431" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8\",\"name\":\"testQuota8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1000,\"coresLimit\":1000,\"availabilitySetCount\":1000,\"vmScaleSetCount\":1000,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5\",\"name\":\"TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01+10": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8?api-version=2021-01-01+19": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "32" ], - "x-ms-client-request-id": [ "fbf5e2f7-2a1d-4e66-a448-9374d7c9b66f" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "1996" ], + "x-ms-client-request-id": [ "ad600333-22dd-4aa5-854d-bb1a884571a8" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -877,37 +902,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e9f8eb61-00b8-41c0-b853-eaf6f047425e" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnw1sfpebONpCjelRhvMSOzstiFqV7/5k+Rw7sFe1NZ4VR4vDgiDgsDzb3sQHuRm1qEuNOdUe6VYM/dhGp4vOY6M9WW4zlHNOgFTVj920tpvy59tVAHRD4/KEFVeytnM+pB+pHPmU6b57PrePcsSz" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "e9f8eb61-00b8-41c0-b853-eaf6f047425e" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233945Z:e9f8eb61-00b8-41c0-b853-eaf6f047425e" ], + "x-ms-correlation-request-id": [ "d6bbfb32-8aeb-44e9-ab2e-4b17e363a658" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14848" ], + "x-ms-request-id": [ "d6bbfb32-8aeb-44e9-ab2e-4b17e363a658" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222222Z:d6bbfb32-8aeb-44e9-ab2e-4b17e363a658" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:44 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXbSTWC+PMdUCyi6gqhaFS10L3fkIadqsxvibL+hwppYIVhS9fwI7cYj0786iE1CuQCu8lo6IGqEsrmNkcNvj05cJDSr0LVa7yY7Q14SqVxmbqjT+h0ieLidNfSzVnOBVWZNK+X17nU1QAUox+6JI" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8\",\"name\":\"TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01+11": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493?api-version=2021-01-01+20": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "bbc9306b-882c-4f71-85bc-b4c5d4a8aeac" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "1997" ], + "x-ms-client-request-id": [ "3b364c91-ae99-4d35-a799-e5ab255a9606" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -916,37 +944,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5ffc11d2-c535-4818-9675-96b2fa4d9446" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSkCSYBcZ7bhRgmvhRjcMddSaHQIZY9hv9zbskKlQjfy4cozKNNFBhhg+V5We2w/2QEm9SOVNuo1lmIuJtA5p0zXnfpdebKWckoFs2gYwl0EkV5x//FjZMAluBAzyrg16pCnHnVspAXTVxvdcpw1n" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ "5ffc11d2-c535-4818-9675-96b2fa4d9446" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233945Z:5ffc11d2-c535-4818-9675-96b2fa4d9446" ], + "x-ms-correlation-request-id": [ "f73c460a-6b22-40fb-9d79-8c78d6faaefa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14847" ], + "x-ms-request-id": [ "f73c460a-6b22-40fb-9d79-8c78d6faaefa" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222222Z:f73c460a-6b22-40fb-9d79-8c78d6faaefa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:44 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBQrVO5xH41AGS4VElru+tIwbaPplYQ1CT1rhe3b4gLHHprFytZ0j9nLN+GIvgXWKfExaxnlTSuRR3sU8TxEK304g0W6dKD3n54vIkCFeLaCmyyLrPkfi2xGM9VBuBhuqsXjuASUT4LbXPwkSBgfm" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493\",\"name\":\"TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01+12": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2?api-version=2021-01-01+21": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "34" ], - "x-ms-client-request-id": [ "c249b38a-cd62-48d3-8fc4-a64d241d579e" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "1998" ], + "x-ms-client-request-id": [ "f9b5bdcb-69e9-448e-b469-a6afe1e86c72" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -955,37 +986,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "507fde3a-26f0-40e8-b490-be2b1b98092f" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXdm42pWtqFjnFbSvLlyZIRg3neBi9E2+QcL38KKhH+k62WvpqVNYyr5qM0ij4Po4ZiVVs+kDJOTof5fvpoUEnqPH31yLaAw+9Kgm1Q6tRw2LOqE6eCM40kYuNrMF4xcL3svTS8gep/lrv9BS/zm6" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-request-id": [ "507fde3a-26f0-40e8-b490-be2b1b98092f" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233945Z:507fde3a-26f0-40e8-b490-be2b1b98092f" ], + "x-ms-correlation-request-id": [ "6d56d607-9636-472f-92dc-944609892612" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14846" ], + "x-ms-request-id": [ "6d56d607-9636-472f-92dc-944609892612" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222222Z:6d56d607-9636-472f-92dc-944609892612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:44 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZeEXrHtIjXq06NsGC1RbjDFW4sG3AfTMyOK+XBdnj/ssDRuKs29F3afz8PtJGnOXTS3WH7QB2V6HcVRj3G1/hhQbqSe3QUv4a8ojoZT0RhCNwA9bOoj3nuBaC+54N89O/LDb7ZkgjPOhvdM0Bn8i" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2\",\"name\":\"TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01+13": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6?api-version=2021-01-01+22": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "35" ], - "x-ms-client-request-id": [ "a82d3a12-e71f-4500-8653-a2451da0b869" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "1999" ], + "x-ms-client-request-id": [ "17530041-5e07-4643-b3d0-4ae1613e5f37" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -994,37 +1028,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d0808f60-7dfd-46f0-adb0-e258da2b854a" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHsZvqBt8TcY7T++1+OM3JJ9+3I0QQvJgU/TL0TbXZeFViNInyb8xEfhsZYdXcQvUVnVhM0sIkClh3D1RGo2XtR1UkylrXC6y6OatuI+U7MzxuAfE6Ol9UnUon5TTebfvcB5Sdx8rTiCvwkQhYqZh" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], - "x-ms-request-id": [ "d0808f60-7dfd-46f0-adb0-e258da2b854a" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233945Z:d0808f60-7dfd-46f0-adb0-e258da2b854a" ], + "x-ms-correlation-request-id": [ "1a1cac23-c5af-4e74-a2af-24066a473dc8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14845" ], + "x-ms-request-id": [ "1a1cac23-c5af-4e74-a2af-24066a473dc8" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222222Z:1a1cac23-c5af-4e74-a2af-24066a473dc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:45 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvesU0Z3IFD9D983T2TaGgppgwhNKmWOoT+jPjnbHyzP45zTeidwT7pKr9oo94CtfkihKDiwiAnI0Xa7R8efFxvt9COFfTE4lVX+6OJUX8LyMgJ8hxKxO0o+tK9f1/oNypywThxuO6KQLYh5z46KmA" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6\",\"name\":\"TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01+14": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0?api-version=2021-01-01+23": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "36" ], - "x-ms-client-request-id": [ "f490f39f-3898-4884-b19b-96a1ed8504f6" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2000" ], + "x-ms-client-request-id": [ "2945625e-ab04-42ca-9840-bf6cb044ac5c" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1033,37 +1070,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fb02a504-89db-47cb-bb3b-c1005838cddf" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCYW+TF8V69JRzwn3imivPL8rwuZRK4I2ove2JWkJtz7e7TZpn+K6GWQ6RhaHybyLFaUUWjtUKXMmHSOLXUXioZoep4v89new9JpscBpMJ7IoEpxsoVcp5vihCVUj/pLoyX6gg5SOUJV9eCFXk1rZ" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], - "x-ms-request-id": [ "fb02a504-89db-47cb-bb3b-c1005838cddf" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233945Z:fb02a504-89db-47cb-bb3b-c1005838cddf" ], + "x-ms-correlation-request-id": [ "1d44d0be-4805-44e1-bb5c-d7897ca75260" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14844" ], + "x-ms-request-id": [ "1d44d0be-4805-44e1-bb5c-d7897ca75260" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222222Z:1d44d0be-4805-44e1-bb5c-d7897ca75260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:45 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/gh+D7pbDwYgMwun0Vh54MD3DAbX3+N2ciB8j3Esd6QmBsZJExjgP/5jd4SjDuTSpQwSGEAk/EaQPlfj2CcNARgq5LVzcvNAeQVxYD/zISsEMCqXQYjhbFb27mzoYYPhyJV3coiUrqcFzO2rQoUi" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0\",\"name\":\"TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01+15": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508?api-version=2021-01-01+24": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "37" ], - "x-ms-client-request-id": [ "65af5f2e-f27c-45ab-bb51-b0c5970cce05" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2001" ], + "x-ms-client-request-id": [ "862c4aec-3081-42d1-80dc-fe0f204e716b" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1072,37 +1112,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4c2c96e3-ebc6-4d09-bb35-c5273133058f" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvL3u05R8DhdDGCQNPoArwQdASI1kJPR9hN7CxOTEmK2PYtXU3fsABUdaSKnJHgjpjH6q7prRgGiIXWp9DfVFlyMRXT86pHcElcBVtTVTbDa/W4+kJQuMLqcLyKNw4VLSJi65GwY3bEXmAMYEfysIZ" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], - "x-ms-request-id": [ "4c2c96e3-ebc6-4d09-bb35-c5273133058f" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233946Z:4c2c96e3-ebc6-4d09-bb35-c5273133058f" ], + "x-ms-correlation-request-id": [ "27091246-c609-48b3-af99-a6c02ca9cdbf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14843" ], + "x-ms-request-id": [ "27091246-c609-48b3-af99-a6c02ca9cdbf" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222222Z:27091246-c609-48b3-af99-a6c02ca9cdbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:45 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIT8DYF4bXP+X5T1dEcsK8XInoaW5RaBfvqsB4uusLGmZMItEaonHkMK9toOelqiOPfyMGc2/RgSPjFNQs2t435VaXWQZsStGxgPDRutC6S2yvBqV6uCR7RoVZmRInc78g6V3X/Tb/+qN7Ore5+WK" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508\",\"name\":\"TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01+16": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d?api-version=2021-01-01+25": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "38" ], - "x-ms-client-request-id": [ "863d544e-42da-4f10-bf2e-328970c8abc1" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2002" ], + "x-ms-client-request-id": [ "d63a16e1-8a9b-44e2-bf0d-a5a09d56071e" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1111,37 +1154,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f4acf255-314c-48aa-bfde-ae362225815b" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9sOKe8cglLRpu3U/cpZzuNggpRS4CkkENm1zRZz+QKQYQpSTRzGAXdjTBUmR6p6iH/ynjJy5lcN5CnMf3JGsvyWPAUv6Au5aIUqJd+/3nVdPEFwkJwd27rs67+jBlPsVSZiwZoUCigOMka7rcDTX" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14993" ], - "x-ms-request-id": [ "f4acf255-314c-48aa-bfde-ae362225815b" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233946Z:f4acf255-314c-48aa-bfde-ae362225815b" ], + "x-ms-correlation-request-id": [ "1f03af8d-6e39-4617-9966-20a3bb234ef5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14842" ], + "x-ms-request-id": [ "1f03af8d-6e39-4617-9966-20a3bb234ef5" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222222Z:1f03af8d-6e39-4617-9966-20a3bb234ef5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:45 GMT" ] - }, + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnqW+qBttLhf8e8vE1rxKLL9rDFFQj6q0Otgf1OD0hVgcxWaHeGO8apfkSxeFpt5WaqQZ6FbbIhDdtE6G6U+/koThuDC/MtJ2lpJmqXN4CA8qpu78iFASTS+y4PmVoykILKBSDDHN29bLJso4XhvM" ] + }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d\",\"name\":\"TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7?api-version=2021-01-01+17": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9?api-version=2021-01-01+26": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "39" ], - "x-ms-client-request-id": [ "e956dcd0-eda4-48ad-8717-ee3a8d3c2852" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2003" ], + "x-ms-client-request-id": [ "2ee08037-82ea-49cd-81df-1dc8631be803" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1150,37 +1196,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "25b956d2-bf90-4601-94a5-71bcba9c01c3" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFA/pVOAKyIhciYD3klNwdlzgzkqXHHa0TFD7kB8yndvxiNPudrGOIfynPvJ+4Q0JkLEnzB3AXIobR9ZqKzEuALxPr65KgYHJHk8vmabgy8pIA5z+xLOUJSMc+MIfyAaEjPDhIJSTk2CCcy8c5mgj" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14992" ], - "x-ms-request-id": [ "25b956d2-bf90-4601-94a5-71bcba9c01c3" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233946Z:25b956d2-bf90-4601-94a5-71bcba9c01c3" ], + "x-ms-correlation-request-id": [ "8c027a89-886a-4208-8dd1-b7bb415b9d56" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14841" ], + "x-ms-request-id": [ "8c027a89-886a-4208-8dd1-b7bb415b9d56" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222222Z:8c027a89-886a-4208-8dd1-b7bb415b9d56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:45 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwCv9WtpL0Ohm1kXePOrUsRhihEDahN4dJ9tyGViorIQ0OKXRbxHoV6hNMHHFdXhFyPWseSY04RR3J9GCdSVvmHCxzF9FQczht0x4bGHENaautnwaMkthn4BzfwJIZJM9NLu+Oe5LS0HVxd1th074" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9\",\"name\":\"TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8?api-version=2021-01-01+18": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e?api-version=2021-01-01+27": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "40" ], - "x-ms-client-request-id": [ "9deba718-ad57-47ab-9904-db59296abe32" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2004" ], + "x-ms-client-request-id": [ "0ac478e3-1ade-47b2-b005-2b17291e1fb4" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1189,415 +1238,418 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "86d1612a-0d7d-4512-9035-aa71b06e3e5d" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjQ72eMULBk+nch976Is5wdpBsx5soSAScOlB8UqRS/za3dsDKfxv36JCmsgR+TGGlYD5jJN/n9d2Tvys/WDoAzYo6tnCorf99KjNuAJShTr8bEwT7qQ5gvCWNNnwSb0J/yj8RM+suFRpvvipEQiR" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14991" ], - "x-ms-request-id": [ "86d1612a-0d7d-4512-9035-aa71b06e3e5d" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233946Z:86d1612a-0d7d-4512-9035-aa71b06e3e5d" ], + "x-ms-correlation-request-id": [ "81d7baca-9970-48c8-9761-191399d1c6f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14840" ], + "x-ms-request-id": [ "81d7baca-9970-48c8-9761-191399d1c6f6" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:81d7baca-9970-48c8-9761-191399d1c6f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:45 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0XGzki+NBRarR/8szMeMkHNWSQtq46k13DLJ/GKS/r1dhyQpQfhg4iiOS0frEtB62+OdMt+u/Bvahp0GSfKkWdHeq16UyeHFgqKCD8JH27II8kqNw0JbFoRZaRT3gm3kt1NuPIELkiefHtYaeJN1" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e\",\"name\":\"TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01+1": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84?api-version=2021-01-01+28": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "42" ], - "x-ms-client-request-id": [ "2380953e-3abc-4d68-b77a-19f7b14edcab" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2005" ], + "x-ms-client-request-id": [ "c00a9e4f-6756-4666-9ded-c40a0355aea8" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ee2719ba-6301-4e9e-a8c9-2426e1834112" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9YbjV5nc2bNC9mVZ4Pz6cSsNl1H802+kcIltk9gJr+gyg8V2ZDCIy6i47s5pgt1H+cHmA45o6XoF+96xf+dfSNrsoErFMxcymIQKmgUqjm8cPTfh2Zy/49kcXEfEslzpQEBfDJb5zNsRUkMxsLr5" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], - "x-ms-request-id": [ "ee2719ba-6301-4e9e-a8c9-2426e1834112" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233947Z:ee2719ba-6301-4e9e-a8c9-2426e1834112" ], + "x-ms-correlation-request-id": [ "96ab9b71-9a9c-4bd7-ad68-f549c25be94e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14839" ], + "x-ms-request-id": [ "96ab9b71-9a9c-4bd7-ad68-f549c25be94e" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:96ab9b71-9a9c-4bd7-ad68-f549c25be94e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:46 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZN2WM2DMFX3Wra8XGU0pdt+/0pSWwCOBFfHxJfM9BDLgmvcOE+j7v4ND17fWmNDlxR/AJcewqX53x+ViocOvdkjmy/EinbTvZnDa4CmAk8ASAri5GVyII9oxEP2+f3te9KCCbTGD45jn0BcnjTY8" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0\",\"name\":\"testQuota0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84\",\"name\":\"TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01+2": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99?api-version=2021-01-01+29": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "fff45a83-49e4-4762-a0e0-5deebc2c3790" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2006" ], + "x-ms-client-request-id": [ "0bdadc1f-3f4b-443b-84a5-4186059c8e6a" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0a7d47e4-0ee6-4f21-bcbe-23d2d8acb14e" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTqoMXCYDs9gFP3qB4y1MZm5y+EXrOAReUPzOTOdfKtZ7uBpVFp/gXgbx6oRaPVjCpL/KBaAWp0WOS0olQ93uMn1/R/9XdBDyBn0Qb6KyIEl/St3KPHyBHuhO0rukzbHgJldGAlYlbi21j1G6OI+L" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], - "x-ms-request-id": [ "0a7d47e4-0ee6-4f21-bcbe-23d2d8acb14e" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233948Z:0a7d47e4-0ee6-4f21-bcbe-23d2d8acb14e" ], + "x-ms-correlation-request-id": [ "2f4a292e-7034-4105-a9a5-451d284305d9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14838" ], + "x-ms-request-id": [ "2f4a292e-7034-4105-a9a5-451d284305d9" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:2f4a292e-7034-4105-a9a5-451d284305d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:47 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcE6KgYNOlBwTHQOdG9W+qPw/sRSGV4rO4DBuRoo+tg2Sg3hQbuEuaX0o7PTC02ymB1YCFpNP0tFMaWXX4kH6UvXz16E1R5sMGETGienvqvD0zmcOxf28YWhY4Coybb/pbjB4Z5t8RV7NsZtjOJqK" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1\",\"name\":\"testQuota1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":1,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99\",\"name\":\"TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01+3": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7?api-version=2021-01-01+30": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "46" ], - "x-ms-client-request-id": [ "355e21f3-ff3f-44fc-a336-0e1abfa25b76" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2007" ], + "x-ms-client-request-id": [ "0ed2fa75-67df-4f29-9791-8d426ffec4f1" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ce54ac67-4b67-4031-a826-8848b24acde6" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzp624A0P1J6zqNa/7IzfcpUgF4fMQbN4BUdpEvQ1AIDvlSGKylywGrtxAHJUxnfLdpvuFBZCZ3acxbUdiz3+cfkTgwnaneDMBFSGdMPp5GA2ijIUEt3NPI8JRHabR8naDdZtLNU7lWSkD6+S9aAb" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], - "x-ms-request-id": [ "ce54ac67-4b67-4031-a826-8848b24acde6" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233949Z:ce54ac67-4b67-4031-a826-8848b24acde6" ], + "x-ms-correlation-request-id": [ "7ea78fec-2476-46cc-9246-19900a6c4dc3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14837" ], + "x-ms-request-id": [ "7ea78fec-2476-46cc-9246-19900a6c4dc3" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:7ea78fec-2476-46cc-9246-19900a6c4dc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:48 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv07GwexrLFkOzuErk6uxA8ySQ1vxiT+BxtH0UliUj0nYTQfAHuStEdcBRwfYkdPgLZKUzTqUJgq9q74jmNE6edz5Wtl7mWrM2Se+LTDnHbRh6PNWSke8ftCgoT89/swCb5JXiHLTp6Vp9tdx8jLvl" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2\",\"name\":\"testQuota2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7\",\"name\":\"TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01+4": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5?api-version=2021-01-01+31": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "48" ], - "x-ms-client-request-id": [ "7cc23037-2f08-4062-b8a0-1ca61ac90ad9" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2008" ], + "x-ms-client-request-id": [ "75621250-a066-4ad2-a581-ff987d643606" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "67fde911-eed7-4ae5-8bf7-ccd59418fb67" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveySJrtj0BsQh/XLEMVlPXSRmnj1Dng6R+M9jZGHi8KlaZNkmGYBX1XH3dSbo3oSQawEbJBU2L+hREwBSvFQpnnGYEXX4KmqXCfH/r9j5Oy2dxuCCnyqyBV1gsheOASB7l4WcIOVJJ4PhK9J78ZP2" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], - "x-ms-request-id": [ "67fde911-eed7-4ae5-8bf7-ccd59418fb67" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233950Z:67fde911-eed7-4ae5-8bf7-ccd59418fb67" ], + "x-ms-correlation-request-id": [ "6ab186e0-4aea-4e9e-8f57-ef27e4dd24b7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14836" ], + "x-ms-request-id": [ "6ab186e0-4aea-4e9e-8f57-ef27e4dd24b7" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:6ab186e0-4aea-4e9e-8f57-ef27e4dd24b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:49 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcfoRNVNhrJYMT4Pc5d28jOjqGm4YK/m09Zsquk1X5zC4R2lzUS4LUk+4Rt5ttrXsqEhD2hWOxRdgxhpU/RkmvVA8OVDEqKda49DDURBf45t1KMYT0sSZR/ioH6rbqiGWUerxiD5KU2V1DIePWoHC" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3\",\"name\":\"testQuota3\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5\",\"name\":\"TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01+5": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4?api-version=2021-01-01+32": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "e070e50b-691e-4407-a7fd-f48b5ebc1cc0" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2009" ], + "x-ms-client-request-id": [ "889de448-b9ed-47c0-bedd-92d05d7e17d3" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "47da8f5f-b581-4641-ae44-8d6af641f2f1" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3/QHxTi7koFwbUPnMlYD9mBt9v8dGSdwVgR7yjVs4D70+huatCV3g+Rr7TGDJFbb4RMIaefWdc2Juca2ie6ZjnVcW7SIsmOE3JFPGdF9BQ5ggjgvywUImYjZfJQkLr7bIaD/TZOsqOFayFieEH6s" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], - "x-ms-request-id": [ "47da8f5f-b581-4641-ae44-8d6af641f2f1" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233951Z:47da8f5f-b581-4641-ae44-8d6af641f2f1" ], + "x-ms-correlation-request-id": [ "6fd6525d-aea4-4fd4-ab02-5b9ab7ba6ebd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14835" ], + "x-ms-request-id": [ "6fd6525d-aea4-4fd4-ab02-5b9ab7ba6ebd" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:6fd6525d-aea4-4fd4-ab02-5b9ab7ba6ebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:51 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGt0bh4IWoz10SYL51ZtQ81e2wrPFMj4i2URAnnKH+D8J73cdzx22KslgRcid6DNPKY6ApQMODs4uH/FDzqTm/VXeW1M5aYsPkmtaHZvVu2RakxRKTQ2rqEYsuCamMeIDBGDEuTPZkGzDZGRpeh5I" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4\",\"name\":\"testQuota4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4\",\"name\":\"TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01+6": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619?api-version=2021-01-01+33": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "b1fa078b-39c7-4119-be26-4e1d56447c39" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2010" ], + "x-ms-client-request-id": [ "408c4c2e-d384-48ab-a4a9-1695d03321ae" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3a4876f3-da65-43ac-a232-418b620a2980" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlEbdiQtEmSCO3V52d/sMi5kASaXIRAKnOImsvMecjFj9w2Nj7LZVWhZJhuynZYacpx+CI4EikACyrA48+IepS1WTU7f5uuPuzdJd/qrEfrL6lBYi9mZMyuAegqo1uM0JiIUQ4bZoSt498Yi8pupx" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], - "x-ms-request-id": [ "3a4876f3-da65-43ac-a232-418b620a2980" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233953Z:3a4876f3-da65-43ac-a232-418b620a2980" ], + "x-ms-correlation-request-id": [ "9e10c3c1-f041-4593-9d05-3cfa6e1b3185" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14834" ], + "x-ms-request-id": [ "9e10c3c1-f041-4593-9d05-3cfa6e1b3185" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:9e10c3c1-f041-4593-9d05-3cfa6e1b3185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:52 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv08M0IKKeOfXHPfzZ+wfzpN1rZP0qjhz6cuV35v2czLpkaDz3xwoPOUy/REdfHqxYWtcRJQRzZKbYxjhHMSShuBwSswB1jFTYnrDp+5Hf1oMgqRVsA2xe8MSrHGLv+zrySxKNo47L0fFHOKUIMmV8" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5\",\"name\":\"testQuota5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":0}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619\",\"name\":\"TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01+7": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4?api-version=2021-01-01+34": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "d5d1894b-a389-49e1-b083-b459f269267c" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2011" ], + "x-ms-client-request-id": [ "e61e78cd-0912-4cad-a78f-b7ded0277ff8" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6f638bd4-7ef5-4cee-bfc4-f0b5a82ddbc8" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaiKi9cwBmI8xvJ//ThC2UM3W3D+gdTS0wxU5iMWDSSBfXPGQQwiIQK4IWLfWZOKd0f77jAOyuuyHrFINQ1wUkF+6olEeT2occoKFwCiR517sc+iHPZZPlNpJLsiF+wtXC8mhXmUGAU1zhFSisVor" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], - "x-ms-request-id": [ "6f638bd4-7ef5-4cee-bfc4-f0b5a82ddbc8" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233953Z:6f638bd4-7ef5-4cee-bfc4-f0b5a82ddbc8" ], + "x-ms-correlation-request-id": [ "acf5b0d0-9d00-4ca9-8548-ffb9df8e47db" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14833" ], + "x-ms-request-id": [ "acf5b0d0-9d00-4ca9-8548-ffb9df8e47db" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:acf5b0d0-9d00-4ca9-8548-ffb9df8e47db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:53 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsj7wyyrLuq2Wd2wXtgFfeiHaJCni5HXuaY7g4zXtM2r0qgL+FLIIOEwm9h0IzvdP+Q44zntE8woEWF4wOPweh9+y34My5w8FmGzhpfT6XIi59fsaxKC05QmbnzSU/F1H0TuyqgizKCYTHp/T+655" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6\",\"name\":\"testQuota6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4\",\"name\":\"TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7?api-version=2021-01-01+8": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba?api-version=2021-01-01+35": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 100,\r\n \"coresLimit\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"virtualMachineCount\": 100,\r\n \"vmScaleSetCount\": 100\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "2824eb36-9436-4701-99b2-b47032ccbb20" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2012" ], + "x-ms-client-request-id": [ "44931393-dac3-4741-8f4b-92168e3fa595" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "264" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4a853f4e-3470-4cf5-a408-78d4bf55eb40" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVwQp9Qd5fgJrtExrCEZYVPs4HzbnAeIpCfkWlIhdYICu1Cs+ghSV2eAK3C+WLYyeYvUk3zCe9wp4aUagw/apZvmQdyV45xbTTuh2ipDB41fFcoBCDlHjO2sfbPsHnNqFobD57LC0beRMhTGJjESJ" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], - "x-ms-request-id": [ "4a853f4e-3470-4cf5-a408-78d4bf55eb40" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233955Z:4a853f4e-3470-4cf5-a408-78d4bf55eb40" ], + "x-ms-correlation-request-id": [ "707052bd-1dc7-42a7-8824-6689d86cd564" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14832" ], + "x-ms-request-id": [ "707052bd-1dc7-42a7-8824-6689d86cd564" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222223Z:707052bd-1dc7-42a7-8824-6689d86cd564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:54 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBIJRx6YMA6xoZ8RzXAaNiav+jKfzn8/fYbypIjCVsYl6g4msvlUSs4ZAUuAfPXbTSiDG/qonz8tS3H2Rpnl9nMp2qdqB1qyPOyWyn8Dw9bXitm0xX0QxBJlrDdtu4rvS+4y37pl3dZIYuBNd+2Fh" ] }, "ContentHeaders": { - "Content-Length": [ "425" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7\",\"name\":\"testQuota7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":100,\"vmScaleSetCount\":100,\"maxAllocationStandardManagedDisksAndSnapshots\":100,\"maxAllocationPremiumManagedDisksAndSnapshots\":100}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba\",\"name\":\"TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8?api-version=2021-01-01+9": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71?api-version=2021-01-01+36": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"virtualMachineCount\": 1000,\r\n \"vmScaleSetCount\": 1000\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "c330250a-9f06-4289-a2e3-d8b77ecf429a" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2013" ], + "x-ms-client-request-id": [ "498e693e-ad7a-493a-bb2f-7a679d49d7e7" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "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": [ "270" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "62282dff-1844-4f29-b5d5-f22ddb7eb71a" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxUjNwN/GhSLdETQH25Z9kAbUom2V/6k8SJ+HXRjCJp2TE1pp9s2BHRDxiS5lKmcAKbsr5sbChKlN+QlMS2OwNwIZvdTyi4c0Q47N0wXgYLmsRODmpLv6BwsmnBy3kRepLr1mYoXWJ9Ozz7mMxxHP" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], - "x-ms-request-id": [ "62282dff-1844-4f29-b5d5-f22ddb7eb71a" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233956Z:62282dff-1844-4f29-b5d5-f22ddb7eb71a" ], + "x-ms-correlation-request-id": [ "0be56310-0587-4ac0-9741-7c6ca6b8cf48" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14831" ], + "x-ms-request-id": [ "0be56310-0587-4ac0-9741-7c6ca6b8cf48" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222224Z:0be56310-0587-4ac0-9741-7c6ca6b8cf48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:56 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmeMqsmQpgUG4C7jaOeWaf0PD1vHG8j0c02pYV9Hyd8VTgCTQ3ebvkIvltQjXtfqJUuejcY/pFn9eMDqCz6xezYguPEOUj+tru9fS3howxsWG6gQEx84pRXvuLZ2BE6idHF174ate4gqgNzFqeJPq" ] }, "ContentHeaders": { - "Content-Length": [ "431" ], + "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8\",\"name\":\"testQuota8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1000,\"coresLimit\":1000,\"availabilitySetCount\":1000,\"vmScaleSetCount\":1000,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71\",\"name\":\"TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01+10": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76?api-version=2021-01-01+37": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "bda905b0-4d03-48ad-93ce-ff3d755e7173" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2014" ], + "x-ms-client-request-id": [ "367f524d-f6b0-4c22-871e-c9ef8ea7432f" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1606,37 +1658,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6d703479-9d6a-4a2c-a406-5f14275ac325" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzQWcvN8kNUxPa3OJKFQOC8BWBiCIOCGnhnzJngcJD6E7djWUPS6rt1GgP74s3H/IMfNOfpJjwqnWHdW/Y4j3BZDnjmNS8cZHuMyYcKlXa6JS2WIA4nRVxQTVhlMJ2HCFWTIucbbFsjn8cCZ5hMHg" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], - "x-ms-request-id": [ "6d703479-9d6a-4a2c-a406-5f14275ac325" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233956Z:6d703479-9d6a-4a2c-a406-5f14275ac325" ], + "x-ms-correlation-request-id": [ "c682053d-f418-4a40-b7ef-f53e664a1a6f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14830" ], + "x-ms-request-id": [ "c682053d-f418-4a40-b7ef-f53e664a1a6f" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222224Z:c682053d-f418-4a40-b7ef-f53e664a1a6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:56 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAcohrUT69gaCmyjj9D5M/Cy7NikZlCKU4Cs90pTkVRb5NT+WzshlHe0QNg46EOr6ykdtoM1H4eXRMNnXoDMv8Fw0IbLbg1BqxttxV6HuMZlS/SRga+7plIo0gG9ZGH53IwI+OgWyKu4DaXwPpJcC" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76\",\"name\":\"TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01+11": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5?api-version=2021-01-01+38": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "f733823c-7272-4be0-8934-1f67f9b888ae" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2015" ], + "x-ms-client-request-id": [ "4dc5b9ef-4c60-4fb5-a74c-82eb8e28c54c" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1645,37 +1700,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f7ff849f-7c0e-4594-9ff2-7a5970f6f2d8" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAFL5zqAWGwEYdwgJjmyIKEsvoL2KaCkwxtEIZyyKR8JixE+D1akc01RWzy79GBY+vYHm6to+pkIzO1PajqCv1yGZ5WOEgM0x8CN3oG0LRebDT01Zo+1xKb6bNae0jdJMSd18o594N8DZeqWOM/We" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14989" ], - "x-ms-request-id": [ "f7ff849f-7c0e-4594-9ff2-7a5970f6f2d8" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233956Z:f7ff849f-7c0e-4594-9ff2-7a5970f6f2d8" ], + "x-ms-correlation-request-id": [ "b424ab48-f652-4e2a-88cf-42fba82521a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14829" ], + "x-ms-request-id": [ "b424ab48-f652-4e2a-88cf-42fba82521a9" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222224Z:b424ab48-f652-4e2a-88cf-42fba82521a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:56 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoXUJBqh8n4P/rNUyy8lczqGonlXN4eZe+y7b1BSD/8K8dMAJT6L+b0UwRkuhHo1Ws2xijGBLCLjqBjqDQW4HvImWcAFxOXtOOlIp6Tx6VStPuwDAQpmZH4mZR4jazB0wWAr75TnL7ikxMaaCJXYy" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5\",\"name\":\"TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01+12": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997?api-version=2021-01-01+39": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "d1f24ae2-92d2-4755-88e0-678efac4ba53" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2016" ], + "x-ms-client-request-id": [ "715569a7-3169-4454-a938-22e0e9df62c7" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1684,37 +1742,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3e5cee10-7503-476e-b35a-6a304855a86b" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveleXbHVv6cpEge15IkM3zDU/Zsz3LxZr205jCQToSvNpBZcq60vMUimzR7IscPrXdyir3cWUVU17+L7GlGaIitSbLPX0o+esgDMj85DtOo6oSPdWihPUqB71r8y47EEe33ZIIS2a+HzPk0p0Nrrv" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14988" ], - "x-ms-request-id": [ "3e5cee10-7503-476e-b35a-6a304855a86b" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233956Z:3e5cee10-7503-476e-b35a-6a304855a86b" ], + "x-ms-correlation-request-id": [ "3925f1ee-c8c5-4a08-8eb1-fb84e43c92f7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14828" ], + "x-ms-request-id": [ "3925f1ee-c8c5-4a08-8eb1-fb84e43c92f7" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222224Z:3925f1ee-c8c5-4a08-8eb1-fb84e43c92f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:56 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsPEITntOBH0oX9ap03B0C0EOyHMrrLhr/3Kd4uy/7K5SMGGL948zh1Ce6FW8bgfo10vxc6N47Tef/q+O92MMinRUcHo3hChXoV58IpoATgOrhTCzn9607W+KqHal9nHnWFUwBXgNJnn7h0ag5TvU" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997\",\"name\":\"TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01+13": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12?api-version=2021-01-01+40": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "b636145c-6fd5-408a-8527-b9961a8a1bcd" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2017" ], + "x-ms-client-request-id": [ "71b68303-3385-4dc7-8b43-a4ea5d5a2a55" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1723,37 +1784,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1a176625-8285-4733-914b-663aa80a7eaa" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwngh3JYQ9JtyarQISI7eLv3Lw36pALWrAKs3N2MYBP+A2z6e8KHOb705F/yeJ1lDkd6yvCdcxI69kinFA61zIem4ePVgAZjCHneSZSPtJCSCIhb4FXCqn5H9vsojhdXgfR5c1aqA5OWi5ihJmfNK" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], - "x-ms-request-id": [ "1a176625-8285-4733-914b-663aa80a7eaa" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233956Z:1a176625-8285-4733-914b-663aa80a7eaa" ], + "x-ms-correlation-request-id": [ "22a08e57-2e16-409e-8da0-a6cd8dc1b49a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14827" ], + "x-ms-request-id": [ "22a08e57-2e16-409e-8da0-a6cd8dc1b49a" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222224Z:22a08e57-2e16-409e-8da0-a6cd8dc1b49a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:56 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9rtkWJBToGEdJaJuUu5CiYtwhwFtfbgCVgQMQjyaBIWCI+e+HiKe4YUixmcm41hBV7vJAgSoAd56Oph/EPw01s5K9hRNtIcRzq8/VPrL30ldy0l7nb3WfQGJMm6Iw2QwTCaqz8getahpDrVsmVmU" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12\",\"name\":\"TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01+14": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96?api-version=2021-01-01+41": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "f99d1332-25b9-43f7-bfad-9c3286c7b2ae" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2018" ], + "x-ms-client-request-id": [ "9ea795df-1e05-463b-af42-4cfe09255835" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1762,37 +1826,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b0ac4dc6-c49b-41b6-81f0-355fd3ec9857" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3ERYxKkO9GS+WY7kzEj4UpcLj+ggTNkTKIMji4JTZASrI88kpuJzLJhqA7flc+WE3Q438STyeSCFRp3haYyuHIcbyXjsQG9tSX5Hs93zpqiV+QnNuv9slJpH+782oIfzLIsh0WX2Bz1TmnVSfIcs" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], - "x-ms-request-id": [ "b0ac4dc6-c49b-41b6-81f0-355fd3ec9857" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233957Z:b0ac4dc6-c49b-41b6-81f0-355fd3ec9857" ], + "x-ms-correlation-request-id": [ "b41c5381-7015-4377-bd4a-8eb215d200eb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14826" ], + "x-ms-request-id": [ "b41c5381-7015-4377-bd4a-8eb215d200eb" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222224Z:b41c5381-7015-4377-bd4a-8eb215d200eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:57 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKVQo8ViTRO+vtXgLnVCtDpSU84LkmIIq0zDoK3qcErfw8HVs4f6JoGhNn6k5/BwSjYziHYtEd50YtwlLRuUkgXxtSA/bScw/77wZQMNm+4s22ub0DX0AzV9PRv/SymOwFFGQ/+d5nI0isC7DqVuz" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96\",\"name\":\"TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01+15": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a?api-version=2021-01-01+42": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "e977b443-acb0-442e-8c47-a6393939628f" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2019" ], + "x-ms-client-request-id": [ "884e7efe-9bc3-4f0b-9dd1-0f6a5a520a14" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1801,37 +1868,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "543e20e5-61a9-4d52-9cd6-d2e6d5f5937a" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3hpycdu4emkEZWkRWdC9ctBIMqaIq310B8Ps2MWKClh0Qq73I3pqX0dwiE+CCFuG7510O8+8KN4/65xi2xhg4+1Yr0zK/jvvXe7m5qaatJKvSwVun876opw6qsNt/W3uyaxwzyvedOSOxiJktaIk" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], - "x-ms-request-id": [ "543e20e5-61a9-4d52-9cd6-d2e6d5f5937a" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233957Z:543e20e5-61a9-4d52-9cd6-d2e6d5f5937a" ], + "x-ms-correlation-request-id": [ "e1abb73a-b135-4249-a6f0-b32d7e4f6625" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14825" ], + "x-ms-request-id": [ "e1abb73a-b135-4249-a6f0-b32d7e4f6625" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222225Z:e1abb73a-b135-4249-a6f0-b32d7e4f6625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:57 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:25 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWanNGkgxYagbyZLSRUX/tDmeO2opFZBYw97WlfPuPxjwD8n0CGzcNFSM4BpocBYUnTcYrnDeYZBaNtt+x27B1GdP9WP1AyaHoojFjaHRiDlcRhykjp45gPVwRh/STZJPjSrMe7q+ITp82po5OD5I" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a\",\"name\":\"TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01+16": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7?api-version=2021-01-01+43": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "89627910-8cbf-4dda-b481-4ef295c0ab11" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2020" ], + "x-ms-client-request-id": [ "3a70b7a7-8e05-40e1-95cd-98132e5b239a" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1840,37 +1910,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1e84d6ed-857f-4f6a-9e2b-408f0aed8f30" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZXekPOb9NeknFNb+WChhE69gzAHrvlTea56aewSP9f3b1dbcg3mfKG6XmnGK2ZbL4Bu9H5V0yBqf5aDX4SIMobmAMdTeAAfJxYv2hhlXSDgnNN0gjrfnq0+mGckD/j94QwVTDJ3dizRVB05EN8Rn" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14984" ], - "x-ms-request-id": [ "1e84d6ed-857f-4f6a-9e2b-408f0aed8f30" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233957Z:1e84d6ed-857f-4f6a-9e2b-408f0aed8f30" ], + "x-ms-correlation-request-id": [ "55e57503-1851-4777-83f9-a2aafd489024" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14824" ], + "x-ms-request-id": [ "55e57503-1851-4777-83f9-a2aafd489024" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222225Z:55e57503-1851-4777-83f9-a2aafd489024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:57 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:25 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5MsCUrEdZpq3HVTGpwhv+MRGmkEewkj/79sIFc3AME+Ej4tzedZ62Io3TfcMylPi8TIYB31o5dBFl2cLDt8M34M7SChS2tW/NCKv70gJutczSlJm1GlHSV6/h+Z/uNnQ4kUUSq0CJC56gOQ8lrry" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7\",\"name\":\"TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7?api-version=2021-01-01+17": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244?api-version=2021-01-01+44": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota7?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "f56a6702-dfe5-4bd7-b785-29def2e931df" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2021" ], + "x-ms-client-request-id": [ "b9be1821-6b8f-489e-969b-68d36d69ad3a" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1879,37 +1952,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0e37b85b-e832-4b69-9389-59d4f1392c0f" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3eBr6lFhPu54+RUFTbeyjAdI9s0M0+vxawz5pcRjm58D+AusT3Yow6HFh5BhHQHF4Qn/H3GKk6DT41l03yUWsmPmF8OEnR6i1T/qTq62s0Ayxbg1k14E6GKq0QSfhif542qDx2Gpv95bO2p1JG/A" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14983" ], - "x-ms-request-id": [ "0e37b85b-e832-4b69-9389-59d4f1392c0f" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233957Z:0e37b85b-e832-4b69-9389-59d4f1392c0f" ], + "x-ms-correlation-request-id": [ "c9b767ac-6394-4abb-b6e4-f8fdd9b80a05" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14823" ], + "x-ms-request-id": [ "c9b767ac-6394-4abb-b6e4-f8fdd9b80a05" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222226Z:c9b767ac-6394-4abb-b6e4-f8fdd9b80a05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:57 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:25 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvROzN8HL6axrR3t+IBxPdZXxdqukNgtUujydstTOyXsKKazRzcY0g9sXvC091QaekEb1N/v5DD+rBDjofy+R/kfZUnaNVdCkvpcPvw9I4f0x2zq0sU8UtYuneGD/mDR1PIHC3sWYmgDxczBtIeWZA" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244\",\"name\":\"TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8?api-version=2021-01-01+18": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa?api-version=2021-01-01+45": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota8?api-version=2021-01-01", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "e003f71c-4c15-4eff-bc93-fbd2753a4a80" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "x-ms-unique-id": [ "2022" ], + "x-ms-client-request-id": [ "54f9474f-4b72-481c-81c2-c72a8440e294" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1918,200 +1994,2713 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c01bf802-cade-47e5-9fae-c55f2e105835" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpXL04tfEaA5EtEuhxZ8BI1fvOH14OiJlP7DXslOMKnK0Hy1B2j+D/Qm2qa98Nkbqknj4uln6OkohJ229bLA/dYuV/iyIuB1tBEIkzp80PIDTo1fqTOXelrjuKt7Rij5SA3labhFRo3JxWoqjcoJu" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14982" ], - "x-ms-request-id": [ "c01bf802-cade-47e5-9fae-c55f2e105835" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T233957Z:c01bf802-cade-47e5-9fae-c55f2e105835" ], + "x-ms-correlation-request-id": [ "0d88d87a-7fc2-4aaf-9019-42c94c282e3f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14822" ], + "x-ms-request-id": [ "0d88d87a-7fc2-4aaf-9019-42c94c282e3f" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222226Z:0d88d87a-7fc2-4aaf-9019-42c94c282e3f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:25 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQ6SnOfYp48msYC5+WrFQzgI5T2Fj1tL8oaTKHkXiDDTssn1EiO3XyiEDNqh8dYg3uBfbqlPHRs4+2WknNjfQH8N7cKdSaT+W49Tlrdya4Gjf8x5PHqEOA5UZEyGTL4bsygaNSDYVy2WGuISLwOsG" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa\",\"name\":\"TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf?api-version=2021-01-01+46": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2023" ], + "x-ms-client-request-id": [ "77ac8beb-96b6-4bad-b7c7-6c920573e3b0" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "8eae68b3-7d92-4839-9cae-d2f9de877103" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14821" ], + "x-ms-request-id": [ "8eae68b3-7d92-4839-9cae-d2f9de877103" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222226Z:8eae68b3-7d92-4839-9cae-d2f9de877103" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYwxLRyZ2cIk9p+shbZUYhZhH/a5BvLlQnN3p5wX8WNM6HI0Jrenu7qijV9xIXyH3kJ3HUNMv4Fc0076tGDhkxWHCz0AerDzzgK9S/P4vkamYDUya+gI0/78/Z/9ggegwMkzsRsEeVyYLHRCJ9Sfm" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf\",\"name\":\"TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f?api-version=2021-01-01+47": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2024" ], + "x-ms-client-request-id": [ "7904e64a-4311-4f2b-943b-f1702d52f2fc" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "96a9d5f9-0c16-43d6-a66a-e9074eb1afb0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14820" ], + "x-ms-request-id": [ "96a9d5f9-0c16-43d6-a66a-e9074eb1afb0" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222226Z:96a9d5f9-0c16-43d6-a66a-e9074eb1afb0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi7N3SY7A1ysb+RNsrAOIgko41lcBMJogayC4cw9rDI1toSv4PyPP4hnPI/Q5HOw9xCjQPxpVCRxCUBBVSY59zlYZMEcvewn30mB/86mxw1QMAMfmo1Uei+zzSWug6xUb/VaWXffR33OXH6Hxl+VI" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f\",\"name\":\"TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87?api-version=2021-01-01+48": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2025" ], + "x-ms-client-request-id": [ "8cd2486f-e74a-4cc9-bb2c-1210fa278483" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "f81c6e4b-b238-4879-a4e4-c7afa449f39b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14819" ], + "x-ms-request-id": [ "f81c6e4b-b238-4879-a4e4-c7afa449f39b" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222226Z:f81c6e4b-b238-4879-a4e4-c7afa449f39b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJtxPIW1NU6O654HGfjvp3Hbo742QklpR30hGZABYqdhbGtHcjDemy2JKzV/oTtRWv+gYb/+QzhSYX5hufe+bVcXoaltSCM6nTEK3tjCQ6KcrGeTpFOg89zLu6gt9m5lJFand5cGxNOEdVXFZJR3j" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87\",\"name\":\"TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570?api-version=2021-01-01+49": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2026" ], + "x-ms-client-request-id": [ "bdfeead4-ae51-4fbf-ba67-212fac497df4" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "4073fd00-ca69-46c8-8298-09fe0cb2d0d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14818" ], + "x-ms-request-id": [ "4073fd00-ca69-46c8-8298-09fe0cb2d0d7" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222226Z:4073fd00-ca69-46c8-8298-09fe0cb2d0d7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzSUfUnG0ePnvlFE5AdiuGnmm3fVI9EyxOFttPvsZXrNLkTkC+q2E3m4W202MwvAcxZcjYXcwUjcpmil6zTCdNV3nX5GAd23Dj/W4zu9bUEnmnsiQY9SGFP4pMSED75XmxX+vhpTHH55xo1JAnz+G" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570\",\"name\":\"TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858?api-version=2021-01-01+50": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2027" ], + "x-ms-client-request-id": [ "7f7db494-b07a-4bc1-b075-c6a0a9890959" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "e3286bcf-1ce6-4751-bc7b-14e7550a8489" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14817" ], + "x-ms-request-id": [ "e3286bcf-1ce6-4751-bc7b-14e7550a8489" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222226Z:e3286bcf-1ce6-4751-bc7b-14e7550a8489" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSHqBoFW9I5NtccN7AU2D/Szz4oKQjn2n+KUR2RpXz/OzCMs2AnCNzfuboNksoE4leNTxczhIdOK1IfqXb3XcYN5edWuBJiOjj0RiFPaeMJT+HCt8dsXEcRhda98VHa8eNWJHPXwtjuQPhLlt1aDI" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858\",\"name\":\"TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e?api-version=2021-01-01+51": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2028" ], + "x-ms-client-request-id": [ "7f23ddbb-2993-4cb7-9f81-6eb8fcf24100" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "a6aa1aae-2aae-4550-89d0-30a4ab85a00a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14816" ], + "x-ms-request-id": [ "a6aa1aae-2aae-4550-89d0-30a4ab85a00a" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222226Z:a6aa1aae-2aae-4550-89d0-30a4ab85a00a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEQzoUWepE41wRbThgauhbMLB8L2s6vddCwmlH014z/BZRkLI2SW4u/PQkRa3wVLzVi01UENTAEO5idEV0GUL0Sk4wpifZIWh7ocbdu+UI6G9sb2p3KWzHTpaS7R3R9DB0ZZklaLJzqQHRHhNyIxb" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e\",\"name\":\"TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b?api-version=2021-01-01+52": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2029" ], + "x-ms-client-request-id": [ "8eb9d30a-914a-4671-bd98-e31c4dbe226a" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "c7e6809c-4e23-48e4-9bd5-5f44ccf667ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14815" ], + "x-ms-request-id": [ "c7e6809c-4e23-48e4-9bd5-5f44ccf667ea" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222227Z:c7e6809c-4e23-48e4-9bd5-5f44ccf667ea" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvApoUPcu3PWYpEcoi93QdEhxnHuW48jT0ka9sBWQBp0tVQGNJ6fsrV22gK5ZkCtWOT1dGnpunlDXz1J5asyB1Or+u/lCARdv3FBYfPecXy7NBi+GUmiNfH8vC2bwV8yKcQIGlNLii8O/Q6DvvosGV" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b\",\"name\":\"TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2?api-version=2021-01-01+53": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2030" ], + "x-ms-client-request-id": [ "9e52a7b6-6d0e-455b-913f-4870715b2d6a" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "bea48763-b20e-4108-bebf-ed0d9c3cd32c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14814" ], + "x-ms-request-id": [ "bea48763-b20e-4108-bebf-ed0d9c3cd32c" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222227Z:bea48763-b20e-4108-bebf-ed0d9c3cd32c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvwjwk7/mcNGe+GlUYCm8ufoeHuc3v3Qmlam3SCTFkooYrCbtswr0NQxtS6Dp27HHV0eAAh28fEKpRBf7nyORANKbyyBFZVVZa21oCwVKy4Csd6NUUZZ/HLGJ6RuSTYKdfCt2OQ5YlM+CJ24qoFbv" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2\",\"name\":\"TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc?api-version=2021-01-01+54": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2031" ], + "x-ms-client-request-id": [ "f3cc5470-2c1c-4530-b18a-cc555f8ab2a8" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "500061f7-f024-4817-abfc-d82a9645d701" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14813" ], + "x-ms-request-id": [ "500061f7-f024-4817-abfc-d82a9645d701" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222227Z:500061f7-f024-4817-abfc-d82a9645d701" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/g44ZvtCSSvJNWTFgZ7xvF+O6cl4CBo5ef0UQRbGt+UvVmO5lTJZQFC8k58TcAedx6mDmqxjSwCBOkCeE+NG1tCXJfjyqEzse+Gfca2VjFfWk+UkEr9QJCI4QfUq2Dy9efgnF2qq7MVhoTaZCo3a" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc\",\"name\":\"TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8?api-version=2021-01-01+55": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2032" ], + "x-ms-client-request-id": [ "6f1e9804-2b39-4ce2-81bd-9c032ad71431" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "732ab6c0-6f1f-40a0-b817-f5e9eeffef51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14812" ], + "x-ms-request-id": [ "732ab6c0-6f1f-40a0-b817-f5e9eeffef51" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222227Z:732ab6c0-6f1f-40a0-b817-f5e9eeffef51" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcR/Lg2yhINb4MiS/iAoa1KDFZZRz/OCy0b4c6fGTm4iVmZbmE2TUern1PSfidVjJjZ1R4MfDCDue4eioZU+a5BeVRiM0jF9eXUV5dGRPRUQY3m8xeHyAR0emnQNGJDN2eL9RlV9y8FDVi7e2bzkw" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8\",\"name\":\"TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae?api-version=2021-01-01+56": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2033" ], + "x-ms-client-request-id": [ "0b4f63b1-0aaf-40d3-b81d-ddeb5c413e4a" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "7ec8b9eb-b1bd-4ec8-9a3b-58e3875437eb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14811" ], + "x-ms-request-id": [ "7ec8b9eb-b1bd-4ec8-9a3b-58e3875437eb" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222227Z:7ec8b9eb-b1bd-4ec8-9a3b-58e3875437eb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYYVOFzFRJ/cjX4QYAl3aUBH7vdbe1LUiZ4jJsZkwf2PprdG9GKfezTHj2rYm+AYRaHRCny2DlDTBUpF4GHqLo5STAzwC+eqo+ArOiWFY9wQ28D+RdKmg8pfKzf3Q4Uu2Uyes4f/ldh6bw4fhc2Gt" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae\",\"name\":\"TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1?api-version=2021-01-01+57": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2034" ], + "x-ms-client-request-id": [ "47032561-c663-41f3-bb1d-ac67ec67749a" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "06d47445-3749-47a9-83b3-53a48bc56768" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14810" ], + "x-ms-request-id": [ "06d47445-3749-47a9-83b3-53a48bc56768" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222227Z:06d47445-3749-47a9-83b3-53a48bc56768" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRShpzp26HohJu+2l/aj5rqcA05SJ+LHYvATdk4kw3kCu/X+C+zabAgh6AZPoxt3dwWi9Te564TZqFNnDFdeiTe4JCXvQ1xzFgxGqAI/Lj54Dnip4kSQgp+1+t9WqOudxc0IAQjGQw/jOerg8Za6L" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1\",\"name\":\"TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1?api-version=2021-01-01+58": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2035" ], + "x-ms-client-request-id": [ "daa0014c-73a7-44bf-9aca-007b1ab87cb2" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "547045dc-84c6-421e-83d8-03e421d90747" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14809" ], + "x-ms-request-id": [ "547045dc-84c6-421e-83d8-03e421d90747" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222227Z:547045dc-84c6-421e-83d8-03e421d90747" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDNIWHrt7RpTA/dkaXAApkd5N6w7YJJGsxVNqOiKlAYnT4AfgTzPNYqYUKMF0jI40RF7JHQfQhrAr5/EgT09zr+eTFaqH1V5Fy9pEmyU4Hf0gtxsplu5SELltgWcikcR1uGUKo/vTMs2fZmr1earF" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1\",\"name\":\"TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71?api-version=2021-01-01+59": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2036" ], + "x-ms-client-request-id": [ "457c1791-2e63-48aa-8289-086e49c52d7e" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "344faa60-cc6a-4078-8748-e89203249cb6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14808" ], + "x-ms-request-id": [ "344faa60-cc6a-4078-8748-e89203249cb6" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222227Z:344faa60-cc6a-4078-8748-e89203249cb6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQ6BdQy1+waa78CJKsaWFP26ZdZsBWPSMtEufGOfILKf3+QRbmtApKqWDT5Bo+1pmEw64pfYMq730DYuDf0y1axtgHvMBk167iFHGAG38w5vLcEIzvDJKkY0p9ZRuwfFmmRUBWhu0glPVCamqousv" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71\",\"name\":\"TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663?api-version=2021-01-01+60": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2037" ], + "x-ms-client-request-id": [ "09965fa4-e274-4968-ba55-a30793ad36fe" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "b2e83924-756b-4f3a-986e-d170aec0062e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14807" ], + "x-ms-request-id": [ "b2e83924-756b-4f3a-986e-d170aec0062e" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222228Z:b2e83924-756b-4f3a-986e-d170aec0062e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvJzsILNHa5TI+JLfpzLJf8UGhojqUyjrY1OotpRPMhk9VZAgcxKacRyK/4ucvicTErg++79zS1+emY14DXL92wz3m/g5VN5Lm+zBN4PSLShSMLCP8JEu7x9ujRZwWETQ7xZqeJoVYCiiX8DxatuS" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663\",\"name\":\"TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26?api-version=2021-01-01+61": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2038" ], + "x-ms-client-request-id": [ "ac4502ea-3463-4d03-9706-a5576d050b8d" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "c179e213-3b97-4dd2-b550-1d85dd8493f5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14806" ], + "x-ms-request-id": [ "c179e213-3b97-4dd2-b550-1d85dd8493f5" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222228Z:c179e213-3b97-4dd2-b550-1d85dd8493f5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMaFT1VefESPetnR7HsvnzPCZKzG5P8iew3/B6iKFLvBb+INra4CfX4zTnUAU2vozWOtDp7T3o3ueYRole4G0hc4q3FuXW2Z4juI9TXMVu7ABVYfon7BZvnICCLGZlqupQ+fZAqVfO2dU69epUhAy" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26\",\"name\":\"TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2?api-version=2021-01-01+62": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2039" ], + "x-ms-client-request-id": [ "cf2fd867-6c99-43ca-a8f7-f706ea4591a1" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "989200c8-1404-4b89-9e97-413b9baae7fd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14805" ], + "x-ms-request-id": [ "989200c8-1404-4b89-9e97-413b9baae7fd" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222228Z:989200c8-1404-4b89-9e97-413b9baae7fd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5t9epVf2UQYmCkDgZYKwHt4UOlqsIhbY//BXaUrAysC7I4IhEcTIEbRWdreBzEHoD8ggtjn2Xc2eixG7IMrR6UmoMPqghU8wuOc8aE+kkLNKd9bnATgLOlXSAt8T6YyRC218HRwUnpvxs+R8v0Ol" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2\",\"name\":\"TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8?api-version=2021-01-01+63": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2040" ], + "x-ms-client-request-id": [ "01a2bf3c-9734-4c9f-96cd-5da3cfb5f37f" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "151e3dd1-2804-4b12-87e8-79e6991fae22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14804" ], + "x-ms-request-id": [ "151e3dd1-2804-4b12-87e8-79e6991fae22" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222228Z:151e3dd1-2804-4b12-87e8-79e6991fae22" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvy6cK7o+buxKV+0f+W1apOz1ln2AgDSs+yPUqybNYhBlcosVOQ1fiwAM3du4ytRwJQqPvvur3UZ/lpbX6Znnv8Bec4TsrUgg2rieaX803y9cnprp3eOY7hR9NYEjbA3H0LWr5i2rm5A/P5OUq9Mq9" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8\",\"name\":\"TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979?api-version=2021-01-01+64": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2041" ], + "x-ms-client-request-id": [ "227360f1-9fc0-4dc1-8e9e-0424015d0c77" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "4328ebc1-e58c-4c76-828b-534f4cbdfd97" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14803" ], + "x-ms-request-id": [ "4328ebc1-e58c-4c76-828b-534f4cbdfd97" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222228Z:4328ebc1-e58c-4c76-828b-534f4cbdfd97" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWJBiAtxd93oUX93SU7QlGCC/oIt2v6SQCk+NzSC1KjZKxwt3lwSO4qIxQaiYxCKezbunNn5QC97lxcstaA9DZSlpyl2xLzPNFjQL13neCte9oBOSS8Xe/LVPunPIWC2CaOnAtuRaPUZm2YDOqDZD" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979\",\"name\":\"TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888?api-version=2021-01-01+65": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2042" ], + "x-ms-client-request-id": [ "ea26aa8a-b96a-4ab9-8c8e-7f9976859e38" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "4831a660-efdb-4baa-8671-36d41adf820f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14802" ], + "x-ms-request-id": [ "4831a660-efdb-4baa-8671-36d41adf820f" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222228Z:4831a660-efdb-4baa-8671-36d41adf820f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtY28p25vuTvTam8HHlazC40uX9kkXGSRW5NsCZ3jnKXuqfb9ndKUlQjEHkiri+b5/iOYQADQq946zdQjDGzt1+kXcmYQ9cm06iqOQGBHfrw9m8XKjSX4GtRrdTzaEx8oD5Iw7/6uRwK8QZ1PlU5e" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888\",\"name\":\"TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca?api-version=2021-01-01+66": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2043" ], + "x-ms-client-request-id": [ "548997cb-daff-4e12-8d6e-4bc23a5cb0f9" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "858e33f2-3810-4865-8e57-fa74391d7a55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14801" ], + "x-ms-request-id": [ "858e33f2-3810-4865-8e57-fa74391d7a55" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222228Z:858e33f2-3810-4865-8e57-fa74391d7a55" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvol+UtKX9oEYbt63BYjk+uP9kpZDeEC84N32Mmad1CNsXXwwHEOiOWTJFVoi1M2dq089w6/jEmmWsdLz1SWvrNvNo/aBkAAXmZjhD13BorZltcwqN7iEHTwJJFcMqqUdn23nRmJO7D6zYt861AFyd" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca\",\"name\":\"TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f?api-version=2021-01-01+67": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2044" ], + "x-ms-client-request-id": [ "a1626c75-57c0-4568-b68a-236be18f5338" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "b72a26d2-2c7a-4a5c-a0df-65647a9a371e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14800" ], + "x-ms-request-id": [ "b72a26d2-2c7a-4a5c-a0df-65647a9a371e" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222229Z:b72a26d2-2c7a-4a5c-a0df-65647a9a371e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWB/ORQFIBlXZTp2ShG4S3mKhvDDf99cq706I9Fho1SaqPAvb0vDNntbluLhrNJzpwgqB265hRmaCdjco7Z6pssJatQrytyc1xNTyVJtqZoqsn3XDq5lQR1xOEvgDncxAcO6w1OlneXp613Yuai42" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f\",\"name\":\"TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d?api-version=2021-01-01+68": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2045" ], + "x-ms-client-request-id": [ "488c36de-b5a4-4b95-a000-b56626527351" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "5bef78ab-307b-48e8-a085-d73cc77d444f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14799" ], + "x-ms-request-id": [ "5bef78ab-307b-48e8-a085-d73cc77d444f" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222229Z:5bef78ab-307b-48e8-a085-d73cc77d444f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYZP2/kBwvGmpN80IIzxOHMgZIdgiOU+SNfWYK80idEiV8naekQ89oPNB7x8tQUqJ4iId/pjQST1pSWs2pBLkA6sIPVokI2fm8g8bJXjZRhy2o/ZMmNH2aDfS2HrJoYAn3QIEc977jLpisvS4lAH2" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d\",\"name\":\"TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968?api-version=2021-01-01+69": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2046" ], + "x-ms-client-request-id": [ "5be3327d-93b8-4eef-a4fe-597116a32296" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "0f74e708-3ad3-4743-af67-f2eb9a3ce51f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14798" ], + "x-ms-request-id": [ "0f74e708-3ad3-4743-af67-f2eb9a3ce51f" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222229Z:0f74e708-3ad3-4743-af67-f2eb9a3ce51f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1DeViq3LJpUrLm3S7gb7zuWFSOfdpv5coxAgSOcSPpQhVYaN65A0kA/C7xfhM4LqznRruZfDLRPa0Sadxm6N7+3bMEuSpTq9LbmWnOUb6h9YUE/j3Jnif68ouZTeC1x9jY5fSbnRed8XUo2gzItH" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968\",\"name\":\"TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794?api-version=2021-01-01+70": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2047" ], + "x-ms-client-request-id": [ "3f4dec2c-b748-4eb3-90b4-a56fe38ee616" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "acc4a379-9804-41e5-bce8-1c20e5c114bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14797" ], + "x-ms-request-id": [ "acc4a379-9804-41e5-bce8-1c20e5c114bb" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222229Z:acc4a379-9804-41e5-bce8-1c20e5c114bb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTDDgCcnsZ95XICPXrZFNRDzrlMhTOHIGym4S2Q4qG7jsTANbgMBLG3gzm5eGbJMbt5kMyy5Ig1+tpr7zTSAYVJWKc4C4cMQyAoUqX9u01Q6gDzG4RULgdWo299872VGUcgqLX9B0BQUpPkPCFCU/" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794\",\"name\":\"TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d?api-version=2021-01-01+71": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2048" ], + "x-ms-client-request-id": [ "78e30bdb-aa01-47f0-925a-837405dfa7aa" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "81d16855-3d05-43f0-8eaa-7949f02068ed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14796" ], + "x-ms-request-id": [ "81d16855-3d05-43f0-8eaa-7949f02068ed" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222229Z:81d16855-3d05-43f0-8eaa-7949f02068ed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvo/ih6Z4t5vIDMOraeaQVZZ8QZfn5ahwoqVIKxpxfynkEIDBFz6MdW9YEJZUkO+zhaea5H00xqZ5odBdto3QtWfOyOdBBIqLsJ1VoisPEgmmIAJNTfshTHcy3sleA+5IjLa2Oi6PTEMrHSkhy4PVo" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d\",\"name\":\"TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5?api-version=2021-01-01+72": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2049" ], + "x-ms-client-request-id": [ "8744980d-eb37-4b2b-9e3c-f5b3d8071aa6" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "74f1e201-99eb-485b-9cc2-ffb5e4158c26" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14795" ], + "x-ms-request-id": [ "74f1e201-99eb-485b-9cc2-ffb5e4158c26" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222229Z:74f1e201-99eb-485b-9cc2-ffb5e4158c26" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu+XYNls6v/2WfsIdWmB/PbUuiKTCu7kpgP97UYkkV1PAXNNjn8UYDmeZVpiSvxaseMgVYqI2MnUXtj096haO6fl1tkn/TZTb54sADbn/dVEfELL+2hrFcRY0qsSoV+wRsmEi/biD9Epux7Kyro8G" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5\",\"name\":\"TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f?api-version=2021-01-01+73": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2050" ], + "x-ms-client-request-id": [ "287a9b15-128a-4eba-b559-61adb983d372" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "4878de2f-1faf-4f12-81d8-6ad76d57e4b0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14794" ], + "x-ms-request-id": [ "4878de2f-1faf-4f12-81d8-6ad76d57e4b0" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222229Z:4878de2f-1faf-4f12-81d8-6ad76d57e4b0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8OH5+gIx3PPNhFGj4JECzBsHSiyt1YHtdxzg8pohjp5FieymDqe9MVcMbJY30c32XCPz8jLfgDiH6YmGtkY1WXOnsBdOhVRbhxcv5lHjPGTG8MlDWk891OgoaJMhW/P6B8hkcj+zrG4FL7zof1Gq" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f\",\"name\":\"TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41?api-version=2021-01-01+74": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2051" ], + "x-ms-client-request-id": [ "dbc8dbd1-f430-4c2e-bd14-93bca558ab1f" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "75032b82-6ba3-455e-a6a1-4d0ccc4d04eb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14793" ], + "x-ms-request-id": [ "75032b82-6ba3-455e-a6a1-4d0ccc4d04eb" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222229Z:75032b82-6ba3-455e-a6a1-4d0ccc4d04eb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrmb5kA8cQ94MW8Su0O5mXD5qFBpju8pDMC87Ed7yh9WZ8hyBjfYRsGHdBmggTII3mUqunjwioQLC/FQUAkD5BvJrIs4gtXnymS7AQakG7aeInMy0jqTXHJY9ybSl15v9A2P8ocMwBpXtCiprMXJS" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41\",\"name\":\"TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f?api-version=2021-01-01+75": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2052" ], + "x-ms-client-request-id": [ "0e490545-58c8-4a2a-bfd8-f38e81c73001" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "10e29cf7-1a38-4350-8a27-4a14824f2056" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14792" ], + "x-ms-request-id": [ "10e29cf7-1a38-4350-8a27-4a14824f2056" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222230Z:10e29cf7-1a38-4350-8a27-4a14824f2056" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv62mi3p/sF6sRAcg/rFVySQnmaTv/ebO25e2Dl0sx7WsB2jYT9MIEIcmGzfPSvUwH+1RUzN48JukyF2uVKR6nzZv+1E1F5FvaeN9Y98gvnLzQiL1rJAIngTde4IVKdu14qQhtVHwqbe61P/E1a6/K" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f\",\"name\":\"TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f?api-version=2021-01-01+76": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2053" ], + "x-ms-client-request-id": [ "330f06ff-2120-4bcb-aebc-8cdc7bf8ac17" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "1ce99fdf-9d12-49dc-be05-6ab95eb0e487" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14791" ], + "x-ms-request-id": [ "1ce99fdf-9d12-49dc-be05-6ab95eb0e487" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222230Z:1ce99fdf-9d12-49dc-be05-6ab95eb0e487" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyFmAH+t7JtUnHWKs/m9rhtyEmUG0qzssauuJd8BIo3yxrQv+1LSLtBsF5pyBkf6HX4JJ0hBTQa2AOQp/xBJLuoAdprA0WfaOt9FAncC0CucLmk++oBrkPW49q6YcWizl364zxcMnV2lTZ3g41pcE" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f\",\"name\":\"TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d?api-version=2021-01-01+77": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2054" ], + "x-ms-client-request-id": [ "01c5e52f-7bbd-42ef-ad75-e01f66af2470" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "ae1b1190-7c63-462a-9c86-e09dd5624468" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14790" ], + "x-ms-request-id": [ "ae1b1190-7c63-462a-9c86-e09dd5624468" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222230Z:ae1b1190-7c63-462a-9c86-e09dd5624468" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOZTzYmxUp/YDhvI6WBp4bhUOsHgF4YURkrRUWDL21ugrltQ1SVx2pKXROSRMM66R7hVttLEHxTqd9GARxarVRFGt424FcKMp9a38SUFYqvRkjqwM0L1bC+jvuOeJ6ylAoVcZZvGrJ1jO22B8P3m/" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d\",\"name\":\"TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4?api-version=2021-01-01+78": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2055" ], + "x-ms-client-request-id": [ "43ffd318-7b74-4807-808e-5cc82563566e" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "aee66b21-5168-40ed-aeed-78fc853e6b9d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14789" ], + "x-ms-request-id": [ "aee66b21-5168-40ed-aeed-78fc853e6b9d" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222230Z:aee66b21-5168-40ed-aeed-78fc853e6b9d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBafcSYFgdKoi4RLynFTrknzMYTyF6oov8KTedMubkh7V+7VIRRVuTW3OhAjEpELnBamhY/15FumexfNCNzf/s6BvJOvcXtDZfRYz2smbmtuboDAy9mItr5VPDtxeyTp+nRfBsFbzBWUGrbJzEbUm" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4\",\"name\":\"TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91?api-version=2021-01-01+79": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2056" ], + "x-ms-client-request-id": [ "9c3fe3bf-d442-4e62-993e-0a801bdea7a2" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "4354b3f1-ab99-407b-a6d6-ba2f11e4b9ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14788" ], + "x-ms-request-id": [ "4354b3f1-ab99-407b-a6d6-ba2f11e4b9ac" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222230Z:4354b3f1-ab99-407b-a6d6-ba2f11e4b9ac" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqOYxrwAXTeTM+FCdSMSvgpAArzt1W0CwLz4g5/DSdfrOiIrA+bvHZjMXwelXDJcxbTEHAorEZAXCa97yisN+gI41HUcgnaFghvpREHPKBF6Ro65/GKipHLG2r+83kYWtrrszw7aVGr1kXGMhAFh6" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91\",\"name\":\"TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540?api-version=2021-01-01+80": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2057" ], + "x-ms-client-request-id": [ "645b552f-8a56-4df6-b2a6-e0dc13677fd5" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "0d11209d-ec66-4d16-95a5-5e9282ebff16" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14787" ], + "x-ms-request-id": [ "0d11209d-ec66-4d16-95a5-5e9282ebff16" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222230Z:0d11209d-ec66-4d16-95a5-5e9282ebff16" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8NiGBUihr8q0SSWEcV/ZxjLUoqKDmf0GpTLTvzpi7lmycxhaYqU44q56GwzBNtqdJcfBRcKwHEuXDfeV4n7c0UqgBC7sWgRZ6bQMGJFCcf++VuQ5oEQa1k6xGJslUpf+InKytKQVT6AygTDODZem" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540\",\"name\":\"TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf?api-version=2021-01-01+81": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2058" ], + "x-ms-client-request-id": [ "2841752c-15aa-4abd-973f-3cd1e242a23e" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "b85042c4-5a7c-4c1c-89f4-0cb5b189187a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14786" ], + "x-ms-request-id": [ "b85042c4-5a7c-4c1c-89f4-0cb5b189187a" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222230Z:b85042c4-5a7c-4c1c-89f4-0cb5b189187a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQpeR/85tOwUlFqSxIQVzrY81rWTOuVUg3mXJdi9qawsOoKb6LO4ftjK/XFhCtM2+9jYBsigp4A0bigD7fu511HQ+UCci5EcZVvZN34knvo8saACxb3cj9keFKdJafsjVyh1GQj+mQY9GUgqYtud+" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf\",\"name\":\"TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6?api-version=2021-01-01+82": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2059" ], + "x-ms-client-request-id": [ "3d403871-57a6-4238-92ee-66caad3fe2ce" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "8a9f5a52-d31a-49af-bf7b-30fdb17fcfed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14785" ], + "x-ms-request-id": [ "8a9f5a52-d31a-49af-bf7b-30fdb17fcfed" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222231Z:8a9f5a52-d31a-49af-bf7b-30fdb17fcfed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRd7Eayx58xF2Nm9Q3IpXF2+M9LMTNDqC5sPlOKZEELIPBgR0jBhi8jAJiwzIrFAl9Ovcxe+3iEBxnZo8b/BT+QJX+ZOzQ9Ijgv7CsetIXvw1n0GdG6qxR/00ZrM/NNHjbyT62H+dy6lFPsH7EIvg" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6\",\"name\":\"TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d?api-version=2021-01-01+83": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2060" ], + "x-ms-client-request-id": [ "71264e9f-bec6-4bf3-9eae-8a0ab9a3aaa1" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "e3f4ad32-a2ef-4846-a1b6-8871b7274972" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14784" ], + "x-ms-request-id": [ "e3f4ad32-a2ef-4846-a1b6-8871b7274972" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222231Z:e3f4ad32-a2ef-4846-a1b6-8871b7274972" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPldyPxfWCmRUns3GfNDOESmAho/3IH8KGAwBc+Nxxmlc00mICAggCggkwKLcxMq/hHw0bXZQxFZlqt176Y/3N3+08fkUBQ2q6gLjZWC9Jzza68PZORagYeK+pia5TUKiDt4jUqH/3nrAaUYcVg8l" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d\",\"name\":\"TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04?api-version=2021-01-01+84": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2061" ], + "x-ms-client-request-id": [ "6c84782e-f644-4b68-812a-238e70dd4a3f" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "76cb76f5-6c50-4948-8815-fe07412b1ede" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14783" ], + "x-ms-request-id": [ "76cb76f5-6c50-4948-8815-fe07412b1ede" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222231Z:76cb76f5-6c50-4948-8815-fe07412b1ede" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6R3V1bysu4mg3kujUEyR3Q2fWHLKtuF/yLdigkUYSd97L2N30l4caK+nUJFi4w9ZSM8fLtq+C8drI/mX+VMwl+ttj7+ITr4XgbiENVsMqVIifVQ3q9TpbWEhCWXQckB05VmdKI64NNqDRLkw3EpJ" ] + }, + "ContentHeaders": { + "Content-Length": [ "536" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04\",\"name\":\"TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "9178ce50-6e00-4111-b39f-b80d14b0e196" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "9178ce50-6e00-4111-b39f-b80d14b0e196" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222231Z:9178ce50-6e00-4111-b39f-b80d14b0e196" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:31 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvaaI4ubTYCZjLbP00sX1Nr/YCr9JQ/t/uOI32+2rgznOLVwBBTVTZqhXM16MtUPJkGZNf4Ab35rbJcfzixq2zSbN84GUdsI7t2DShEJm2PN5C1+IJKgF9EMQ02HKkstkCQsSEc3MlS+DZAN/h0vj" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0\",\"name\":\"testQuota0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "b8046667-8afb-4a4f-b31a-63f6b44cb433" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-request-id": [ "b8046667-8afb-4a4f-b31a-63f6b44cb433" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222231Z:b8046667-8afb-4a4f-b31a-63f6b44cb433" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:31 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwxEsup6jLQXyQJ0EE/fGUQjFX97JR1Gu3zhs3LcQAt5HgJ5O5JVRmWAqZH7q8xCeGwtlWwyyYP8h4nC5bhfN79uR8VxELaGBIQ2L6zd9RllwehNvchkJcTWeBF14muSLCzwCXyS26Ryu3Ee7CYd9" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1\",\"name\":\"testQuota1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":1,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 1,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "5c625268-7533-447c-9870-bb8b71c46041" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-request-id": [ "5c625268-7533-447c-9870-bb8b71c46041" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222232Z:5c625268-7533-447c-9870-bb8b71c46041" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:31 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGIhBEcW9neBLzaS1+C9Hx/A2R/1T8R2/x29YrrWSSavJV1P8LwbcPsQ3UKMyQwjHTpOsBXT6BsxHmLq0SX3BaIbNgMfrj3GO4Sx1FMWwXpBoLwJKDjkSmXlmrAcL3qD63nji828dWfy8NI4z4uUf" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2\",\"name\":\"testQuota2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+4": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "1458d6c8-be19-4e9d-8234-5493c08b7a76" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-request-id": [ "1458d6c8-be19-4e9d-8234-5493c08b7a76" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222232Z:1458d6c8-be19-4e9d-8234-5493c08b7a76" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:31 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvovshcYw1U+1rlbESQfW4Lzft88xxKWL8Cr0iAZXedwAIYk9xZpDhnjqPX1i2JFtVKDVbhOKca2nDhHBFkNm4Xoxga5LqcBMP+woHvQfLbnewLIUAe1OqGbkZnJqLUFThiY5k0kknbzrnrDdMcfjL" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3\",\"name\":\"testQuota3\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+5": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "3691c509-0cd5-4766-adb0-99d9aac28727" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-request-id": [ "3691c509-0cd5-4766-adb0-99d9aac28727" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222232Z:3691c509-0cd5-4766-adb0-99d9aac28727" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:32 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfumvlYxEdwrOeHCnkSjNeTIwLpVB7OHrvk22YPrujRY6iEOCTHNQM5OQt/CW7UAXWsW7++Vif3b/B3TCIVGfohAolUiVAC8tMxrz3mqy6RYpiM9yy3xt2W7l0Ww1X8M2/SoHn4I3EUUw1iNbfzsu" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4\",\"name\":\"testQuota4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+6": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "61156e3f-2616-4214-a379-cefccda93556" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-request-id": [ "61156e3f-2616-4214-a379-cefccda93556" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222233Z:61156e3f-2616-4214-a379-cefccda93556" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:32 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRd4tmboccTuq36PVpIWOOS25auBTeUltG0Ml1fCf9c+/eu+5t29FGzNmojxoFmeZDymd/DB1bPZOarthnq5k5vDVMKISL7zIQDjH39CBRW4Qa0rzBDnAgjKW6APlnyqba5oLGw/8abbKaw2h73F/" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5\",\"name\":\"testQuota5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+7": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "a8cc543d-c560-4b72-ae7b-df79d9d64960" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-request-id": [ "a8cc543d-c560-4b72-ae7b-df79d9d64960" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222233Z:a8cc543d-c560-4b72-ae7b-df79d9d64960" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:32 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfXOdyLF1X+M8G4P7crYhDwtI05X0H4Rpl7BTlcqX1zLMZUJVrYJpSKh0IVwCOz8o6xv9cJntbcMF6+Cf/kIXYCnN39AXAiKSj2ms57DV41anoIpilujPDmU+2B+uY21vudB8q1yXcB58SsJC2A3D" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6\",\"name\":\"testQuota6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":1,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+8": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 100,\r\n \"coresLimit\": 100,\r\n \"virtualMachineCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "264" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "55f98d2c-59da-4fc6-8d85-542ac5bf81ee" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], + "x-ms-request-id": [ "55f98d2c-59da-4fc6-8d85-542ac5bf81ee" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222233Z:55f98d2c-59da-4fc6-8d85-542ac5bf81ee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:32 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIBwYsex05hJVqMpQ4nUy4TdyPNbloIB9bqr3I3GmKkTTPTfk7Wg/bSy6OpgAfXYa3LVa01opcgjIA/7lN2R0yFmN4vAfwNsT2nyDTrB+ColpGFEqmfJCcrwjK7G54S5e3cVOmRLQxwvvaBJ0DodM" ] + }, + "ContentHeaders": { + "Content-Length": [ "461" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7\",\"name\":\"testQuota7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":100,\"vmScaleSetCount\":100,\"maxAllocationStandardManagedDisksAndSnapshots\":100,\"maxAllocationPremiumManagedDisksAndSnapshots\":100,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+9": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"virtualMachineCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "270" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "d769ae00-186c-4042-9289-4e49ed98e5ed" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1191" ], + "x-ms-request-id": [ "d769ae00-186c-4042-9289-4e49ed98e5ed" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222234Z:d769ae00-186c-4042-9289-4e49ed98e5ed" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvh2rGsVELU1nokD6Jmu+6uLk+J72PlWdI64NEHCbuV7d1feYzaCx/2zHhz9PjF0QwskoLpsgKLDP9+r9qHu6TjhwbttMOgELJxrpFWIW9yfvn3TRKqBEHXufX+cJlCgKY+VMSmdWLyTpdvxL2kIj4" ] + }, + "ContentHeaders": { + "Content-Length": [ "467" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8\",\"name\":\"testQuota8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1000,\"coresLimit\":1000,\"availabilitySetCount\":1000,\"vmScaleSetCount\":1000,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01+10": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2080" ], + "x-ms-client-request-id": [ "e41021a3-07bb-44c6-b901-7b5f3a720272" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "83135825-a2d3-409c-9f49-10d1f12a7a83" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-request-id": [ "83135825-a2d3-409c-9f49-10d1f12a7a83" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222234Z:83135825-a2d3-409c-9f49-10d1f12a7a83" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgz4WBGpC8mELJ4DN1RGHd4Lhf0zgOQ+wbRc6X+dJo3AgGkKt5Cd7onyUIsyKQBnzyiAluaTq0dr06y0cL/RCIla/IvbpNByB0W0NNKTepctsi/SkeTt6WM67v6U0lY3eGfDvjUyShBaR8UNqLUCX" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+11": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2081" ], + "x-ms-client-request-id": [ "8f6d4753-3afe-4076-ad14-8e1b3adb433a" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "6f8a4b2e-8bd2-461a-afc9-5f56f503d270" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-request-id": [ "6f8a4b2e-8bd2-461a-afc9-5f56f503d270" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222234Z:6f8a4b2e-8bd2-461a-afc9-5f56f503d270" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5x+sF2m6cDKwDEE4oamtgWWM3r9h6NzVqEE0Kf7t50x0rCViLCU4aBL9keEMdZ6B4k3lUZ0g2qWyuYE6y//p6iQzsjwIG4zZneVocaUQamajUki2xmzgMrqwsTPWmELU/Km1pkKXsNU4TD5rT3Y4" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+12": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2082" ], + "x-ms-client-request-id": [ "c119ddbb-5f3d-4ae6-919f-08476b6d1084" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "e461e333-3311-4536-87e9-020c6253ad3e" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-request-id": [ "e461e333-3311-4536-87e9-020c6253ad3e" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222234Z:e461e333-3311-4536-87e9-020c6253ad3e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAV6Ng1Xp4ZvbBR7CXhGiIcBsnSbv80avZ8XXEZjvKC83q/+IGXaoRSN3nqvGNnnKfr6IOBI+m65qS2Rh0Zp+lETuoBxoKzLQ1fmPjCL85spHfFCqe0jKJbUPpUq1h1qbuuDv9W/6CP2dyH7TBdH8" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+13": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2083" ], + "x-ms-client-request-id": [ "03777778-bac3-4f8a-b5d4-bd8d1a585ddd" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "7aa21390-d901-44b6-838a-c797c56b0ce1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], + "x-ms-request-id": [ "7aa21390-d901-44b6-838a-c797c56b0ce1" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222234Z:7aa21390-d901-44b6-838a-c797c56b0ce1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvel7/E3uvEpLXdiNQU9pkbR+d0CjhWXbMC2YNQShEdWxYx88FL3tEalz6qxHmBIR9TRLKc+vF2Kst/XAVBFCqERlqNPG1dqeyTADAM4vSy3pIyCak9OTsmXwuj0VoVNg0jTqLenaoNXPb0Vwvc6YN" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+14": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2084" ], + "x-ms-client-request-id": [ "d6ed12ba-c516-447b-b793-c5b569a3d55b" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "ffb0b5f9-e308-4300-a556-c7c81fab5a08" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14995" ], + "x-ms-request-id": [ "ffb0b5f9-e308-4300-a556-c7c81fab5a08" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222234Z:ffb0b5f9-e308-4300-a556-c7c81fab5a08" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi1YU4rpRVRA1rWzLXxwXBr6EECpt1tMnNRs/d722laqf3Cx5H7iiwUgpaIX+7BFG9RyTBl9UDpQI0cRXDuoc03k+/c6/+KZUzYm4xe00z8l4mQgLftpM+ZiRYRo0by5QGhO/9p4v46DdZPgOMV8F" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+15": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2085" ], + "x-ms-client-request-id": [ "235a2561-9df0-4dad-b8e5-3bd15b07ffe1" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "5f2a0ff9-14fe-4ead-94a1-53e69745f9e5" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14994" ], + "x-ms-request-id": [ "5f2a0ff9-14fe-4ead-94a1-53e69745f9e5" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222235Z:5f2a0ff9-14fe-4ead-94a1-53e69745f9e5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEMSEdHLpbxmw3gC1DhW5S8mK70rXeyo+or8/edBk38FSR7N+CqWrdoJri87LQ/RrMp8d6dHkizhmMOwaKyQ/pII4cZtS9zijbNyFvaIxP4pdUWJSZs0swB+jkkOY7LXg3DNJlcxDbiak7Zu/qS8C" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+16": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2086" ], + "x-ms-client-request-id": [ "bb69e0a0-f55c-4664-b629-f71d476e6b6e" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "45b5fdb7-19fd-47b7-9ada-4649c78212a2" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14993" ], + "x-ms-request-id": [ "45b5fdb7-19fd-47b7-9ada-4649c78212a2" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222235Z:45b5fdb7-19fd-47b7-9ada-4649c78212a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWtCtBOO7tGXnl1FIydiO4kghfavgjoW1F0NnxM4O3wM2M9cuzoArwq/KBGxGu6vLD3ZEaQiwOJDIEElkyxBVhijxKCvk8QUbcOZlKSZEcuZUb1oIK2aDCMmm7APKBo8D3mBqQt/22f2YQncHhNAo" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+17": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2087" ], + "x-ms-client-request-id": [ "77756f4d-b6dc-4c05-8f80-bf8fd13b9721" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "32d95664-4c74-4319-b5fc-fa879d3d51c7" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14992" ], + "x-ms-request-id": [ "32d95664-4c74-4319-b5fc-fa879d3d51c7" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222235Z:32d95664-4c74-4319-b5fc-fa879d3d51c7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFkr0Fw01Z7qmclyftWfhaOdsW6A1Yg8bSrqEJgYXtWEYqBP0vpqVzyFbdq4uqnKf3i3VlEC94xY9e6Gx01IkFOlacv5PV5evifGVHblaWS3Y/6McEMM+x6tSMJ0qdIihhcaW6ajgIEbRcX5U7UZD" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+18": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2088" ], + "x-ms-client-request-id": [ "5d2821fc-60d5-4eed-9ca4-63aeeaa9eb6a" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "f38a7a56-39c3-4053-8358-9c42ffbdf08d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14991" ], + "x-ms-request-id": [ "f38a7a56-39c3-4053-8358-9c42ffbdf08d" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222235Z:f38a7a56-39c3-4053-8358-9c42ffbdf08d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+BifqEhyR7a58845rjIm8NtGqp1fC8Cb0OOsbSkPb5lCgfHkXDbqUUodQgs5zTTrKE9BH+x+5F45D4qkBMfxqkXsGvqyyO2+K4DjajtRfeDFhfVK1dEtqUQbSnOfFlh9wshSYE7wojKZ3v55ta6g" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "7700666b-3c9b-4701-ab14-f32e70dc4301" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1190" ], + "x-ms-request-id": [ "7700666b-3c9b-4701-ab14-f32e70dc4301" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222235Z:7700666b-3c9b-4701-ab14-f32e70dc4301" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuUFmygqbbryB2RslY7zrGGe23H265wPDCmqqCHd8BMJU7OunNk1wKEl9TJqHozrjVtPp/YqiMjxHyeX5A7VxSf+5XCUiUE9aSb3bTaXiLEcqIyrX8zzkiTEX7xwyf+MXf4deO3aH79nt6XhpkfBQ" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0\",\"name\":\"testQuota0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "d5cb34b4-0f91-4b7a-9a97-f6f141a9ec3c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1189" ], + "x-ms-request-id": [ "d5cb34b4-0f91-4b7a-9a97-f6f141a9ec3c" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222236Z:d5cb34b4-0f91-4b7a-9a97-f6f141a9ec3c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:36 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+lyIridI7/SUHRZD0eIZLqqrlZ64g3WlRDGXd77p/62d0mqFZ+4R9QHoWl5UGGJRpuqA5yRoxme2b/FMx39dB6yqIf39v7kLjHZipcLo87zt16azSzj02PMY1/K8DjNRkRh+PrYgvmrZjCZcr8Ox" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1\",\"name\":\"testQuota1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":1,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 1,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "994a79f8-ce8f-4260-bba3-4cc9e9036b88" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1188" ], + "x-ms-request-id": [ "994a79f8-ce8f-4260-bba3-4cc9e9036b88" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222236Z:994a79f8-ce8f-4260-bba3-4cc9e9036b88" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:36 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbKOhabgfs+eYam/Asz8PB3NxV0vnrDJLFFKNfSKCDxsW5dGBU62bz1Rf4lInT7A2zLUPyZEf5LeiZgcG/PTLSrb3ZwSkuzC6aDDNXzuNlRpcYGZwDO7gam7aaaWqcTmPJdMq1QMdPofrGbGhnt/k" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2\",\"name\":\"testQuota2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":1,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+4": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "00d6dbd9-b2df-47cd-9192-685e56cef6b8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1187" ], + "x-ms-request-id": [ "00d6dbd9-b2df-47cd-9192-685e56cef6b8" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222236Z:00d6dbd9-b2df-47cd-9192-685e56cef6b8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:36 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKGhpeBdkW2C+2u7pXIEgey9En1DK+Pia9AIJXJ0gH6Y+oy4OwKCHRDYVVrvrJWCjmLBF9eddkmKpYe28BcbXS8uAMvPaZeYPidiClKmsz8owi1CrY1xUcgIc8TkmqwZDqI5KVRnss/PTEbgcz+5h" ] + }, + "ContentHeaders": { + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3\",\"name\":\"testQuota3\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false + } + }, + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+5": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "4e567314-1888-4db8-bc45-e70720637bbc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1186" ], + "x-ms-request-id": [ "4e567314-1888-4db8-bc45-e70720637bbc" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222237Z:4e567314-1888-4db8-bc45-e70720637bbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:39:57 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:36 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHS4NEBq/PbUTB5OX7lIdmWdzZL9qE9q5M7yFgEKbVub90VtEnU2bUKjlPGb9cLkLvdYlQA6RrBrqR0BgZKKHAA4uutGh1acGrlour2byGeTuVT2bJjj57VOSpFa0NNhxExSA9NFvv6tV4Uh1eUqt" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4\",\"name\":\"testQuota4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestDeleteNonExistingQuota+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/thisdoesnotexistandifitdoesoops?api-version=2021-01-01+1": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+6": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/thisdoesnotexistandifitdoesoops?api-version=2021-01-01", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "deb6d2e5-827a-4583-8688-9a00fa0ce2be" ], - "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] } }, "Response": { - "StatusCode": 404, + "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ab38d9b2-4466-4f7c-bc7f-d61c15cc2c01" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5K4CT5ie7Z/sXfHUpN6lUu2nm+YJq6Mm5SzHEioEC8PGGf8H0gMVSaqSSc2i4kYlqzY3ucQlYcaXgGi7uL5WmzhSF2+MzHXDaopdtCeSntiSl2A86UBZEcI8prSVC3rlCWCRJfe4bLZTQTBjKul5" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14981" ], - "x-ms-request-id": [ "ab38d9b2-4466-4f7c-bc7f-d61c15cc2c01" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234009Z:ab38d9b2-4466-4f7c-bc7f-d61c15cc2c01" ], + "x-ms-correlation-request-id": [ "1a2a50e7-3c0a-4613-beea-edd25cc766fd" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1185" ], + "x-ms-request-id": [ "1a2a50e7-3c0a-4613-beea-edd25cc766fd" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222237Z:1a2a50e7-3c0a-4613-beea-edd25cc766fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:09 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/8W8XfvMQIySJ6VtV/hWqFxm2Gu28JhLdNg6rCVesOPiZgsgE66nb9zJ/vSF8jwaLVr6+ZHe6yZ0kRL0pCeK4IzDVW73g4tFFj/DkGZlM/dhudhRw6Py/D1lRveixenPMh0+f3F/Dzu4RF/oNp0u" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "449" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5\",\"name\":\"testQuota5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":0,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+1": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 10,\r\n \"coresLimit\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 2048,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 2048,\r\n \"virtualMachineCount\": 100\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "957c7cb1-f95a-40eb-a215-3089c7934e64" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "236" ] + "Content-Length": [ "252" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "23c60830-887e-44e2-b221-44551ab9464c" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE7Dx19rEqvlariz5EFka5sh21PB/JUhcOYwdqSbxUlzvd8Lblxz0UkadIZZrP6DlsYcHBDS83PMbecRPcw/vgvrwaZrtS95ABMLljG9Y5s4lsRl1fVyoPAxvgRHg+dZrpq5OREg670qATnp9PV0n" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], - "x-ms-request-id": [ "23c60830-887e-44e2-b221-44551ab9464c" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234011Z:23c60830-887e-44e2-b221-44551ab9464c" ], + "x-ms-correlation-request-id": [ "1c9f40c0-de27-4081-94a3-c4f671c29df2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1184" ], + "x-ms-request-id": [ "1c9f40c0-de27-4081-94a3-c4f671c29df2" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222237Z:1c9f40c0-de27-4081-94a3-c4f671c29df2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:11 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvL3L3lD8tr3rKIYAS/Dkq7h2+xIsnLewhMFcDtdhvxVh/wdJfXZwvSTxhgZhzZKU4FhgWgA/adv/9vodX2il5zkdbo0beb9G7OrtRC+ADs7X3bmtoa8NwKWuCbFqrwWmfltDUHLhU8HeTsdM1FzaA" ] }, "ContentHeaders": { - "Content-Length": [ "458" ], + "Content-Length": [ "449" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":10,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6\",\"name\":\"testQuota6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":0,\"coresLimit\":0,\"availabilitySetCount\":0,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":0,\"maxAllocationPremiumManagedDisksAndSnapshots\":1,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+8": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 100,\r\n \"coresLimit\": 100,\r\n \"virtualMachineCount\": 100,\r\n \"vmScaleSetCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 100\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "612392d5-254d-4dc1-8e0e-ff10562be9fc" ], - "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "264" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d96c6536-32ac-49e8-8f38-ae82bba866f6" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlXDEA9UsTkjt+x0ChY9t9Cezr5/uaWydA+BE+E5fB7WmYKITqtQVX2GYfvHqCF8++fA3ix8vZANbJgf+UBM+MQlH8hfudBAAfg0fMG2OeP46qZhUCnV5WWfn+JJ9FLo+0yC0pc/NX1fCe4fX/wTF" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14732" ], - "x-ms-request-id": [ "d96c6536-32ac-49e8-8f38-ae82bba866f6" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234012Z:d96c6536-32ac-49e8-8f38-ae82bba866f6" ], + "x-ms-correlation-request-id": [ "cea50b31-d037-4aad-b5a3-c7ac16816141" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1183" ], + "x-ms-request-id": [ "cea50b31-d037-4aad-b5a3-c7ac16816141" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222237Z:cea50b31-d037-4aad-b5a3-c7ac16816141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:12 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvomosVzuOX6o9T37EBpWc4Pc1BoFQiB0pmrGjQu1yHsK92n0J+JO/M5D1lO0DWAGjLrPka826hKCfQNtTizzv2VsIXHznOIL8ow2pP9a7vPYgE29GHo7RHc1/8+HR+UWrIpFHsBQspE/E3ULa8hIE" ] }, "ContentHeaders": { - "Content-Length": [ "458" ], + "Content-Length": [ "461" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":10,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7\",\"name\":\"testQuota7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":100,\"vmScaleSetCount\":100,\"maxAllocationStandardManagedDisksAndSnapshots\":100,\"maxAllocationPremiumManagedDisksAndSnapshots\":100,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+3": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+9": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 1000,\r\n \"coresLimit\": 1000,\r\n \"virtualMachineCount\": 1000,\r\n \"vmScaleSetCount\": 1000,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1000,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1000\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "3ecb0757-a8ea-49f4-b957-251648afcaf0" ], - "CommandName": [ "Azs.Compute.Admin.internal\\Set-AzsComputeQuota" ], - "FullCommandName": [ "Set-AzsComputeQuota_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "280" ] + "Content-Length": [ "270" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "480766ca-4f48-4bc8-83ba-bf4cea59ce58" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlOnxuPToD7hjPm2TnHxAOFPXFShE/9Ceja3gTaNMzxB5QSnzLfj8ORUppIGomVswaINoJAO0yJiwz95FWBzAlJDnuYmQD5KXnD0XA9QocAr+Z6LyHeBrFa9t0Rh22e9bEZxXES98w4Cz0sytESUq" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], - "x-ms-request-id": [ "480766ca-4f48-4bc8-83ba-bf4cea59ce58" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234012Z:480766ca-4f48-4bc8-83ba-bf4cea59ce58" ], + "x-ms-correlation-request-id": [ "45da9249-9d86-4adc-89ad-e3d1fa686a91" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1182" ], + "x-ms-request-id": [ "45da9249-9d86-4adc-89ad-e3d1fa686a91" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222238Z:45da9249-9d86-4adc-89ad-e3d1fa686a91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:12 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCJ9WDL/65b+SqVziFSE3O+flBjIDmctnu2gGBF3Eee9OwtEP1XjbPJKmBd0aQmKsHv49y2L96i/GApx32IJWi8tInS7YP0ndhiapTKt5xkggJlUFYBBq9EsWroN3WVrecSrjB4i0kNEM44l3jEP1" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], + "Content-Length": [ "467" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8\",\"name\":\"testQuota8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1000,\"coresLimit\":1000,\"availabilitySetCount\":1000,\"vmScaleSetCount\":1000,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01+10": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "86" ], - "x-ms-client-request-id": [ "6c7d078b-5325-4ce0-9a5c-ee25c7620eed" ], - "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "x-ms-unique-id": [ "2107" ], + "x-ms-client-request-id": [ "2efe9571-df26-4d0f-b32f-47eadadc2009" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2120,80 +4709,80 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "274f0638-252b-4ac7-ab1d-393a42d297ae" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6NoRUcOVfxmZWXDC9AjINEDFMkG9Fo+jgfUHpZV+VILtPHnidXSppUd4WTmD7G/NtbkD9eEYb1OMtlUIJiMkiKndOe1ZGqG5+jZhXifq5OYNjOoYSSbozUW0UmZAl0EoftpzDWKT+XHFvLn5Od5w" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14730" ], - "x-ms-request-id": [ "274f0638-252b-4ac7-ab1d-393a42d297ae" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234013Z:274f0638-252b-4ac7-ab1d-393a42d297ae" ], + "x-ms-correlation-request-id": [ "88317df8-1770-4035-bf09-7781f953a3b6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14990" ], + "x-ms-request-id": [ "88317df8-1770-4035-bf09-7781f953a3b6" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222238Z:88317df8-1770-4035-bf09-7781f953a3b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:13 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjrAzcrI12bBVv2bd5s76n0SefsywlBIS2yTbQ6tkju36uj8ZHciDoqbtnIfJqWMWYNW49virwOSGcVzQRB+WroGQ2X9jmznjhAJ/Gq1ZjSgRR4BU5xaTXDLSKHj+HZzRQGLFyfO3AtWUymkjbN1J" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "0" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+5": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+11": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}", + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "87" ], - "x-ms-client-request-id": [ "d809eb6e-e99f-4b80-9c94-1584a814bbff" ], - "CommandName": [ "Azs.Compute.Admin.internal\\Set-AzsComputeQuota" ], - "FullCommandName": [ "Set-AzsComputeQuota_Update" ], + "x-ms-unique-id": [ "2108" ], + "x-ms-client-request-id": [ "f3eec0c3-0006-4a90-8d3d-849e4786cb04" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_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": [ "280" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f3154e6b-99af-4497-aef8-e8a83617f25e" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKlszpNjJaGro34aauAnbl+v3wzhhWJXIzLCasOX/E6CYGgI807X9sZELslUxCc3ACGtros87f+z5ZdJD///ewgarvCijhW56RteuOOsYWzxb3H/BdfJVFFcWFSi29iWi97Z7DsQhOBb13xfeLcFK" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], - "x-ms-request-id": [ "f3154e6b-99af-4497-aef8-e8a83617f25e" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234013Z:f3154e6b-99af-4497-aef8-e8a83617f25e" ], + "x-ms-correlation-request-id": [ "1005e596-3054-41a3-8fb7-34b0bc95a5b8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14989" ], + "x-ms-request-id": [ "1005e596-3054-41a3-8fb7-34b0bc95a5b8" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222238Z:1005e596-3054-41a3-8fb7-34b0bc95a5b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:13 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjVXSjzpUPLqpZVnmHxMCe9aWXtQYNJfhx1bT/HKRrvblbK21kLBeT4cl06w5WVZ60nuRNbS5JEFRRQNm0z8jH/petvArv4cuaLm+WypSaRZIe1RBpGccxovpkU0xq0CwdROn+iyWDdavM0uWCNgj" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "0" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+6": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+12": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "88" ], - "x-ms-client-request-id": [ "927958ec-60e4-40d6-940b-8bd728229d0d" ], - "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "x-ms-unique-id": [ "2109" ], + "x-ms-client-request-id": [ "07e4bc6a-42a6-44a1-bbaa-7c290282578f" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2202,80 +4791,80 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3060c16b-eea0-4972-a461-92834b69b044" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvng3Bcn/urmK59lmh4P8Zn8XPb1XGzFOmacyiXtOFnT+sV+vUNIG9skNM1mfShAx+KPrp6sV8zkStlVrxYt+dTT0xnSogu+onf0aYNBbXb1nBqTbTI4NHoSlO8AzkqsnV9+fRX5s4Hxx7KqYCjIhD" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14728" ], - "x-ms-request-id": [ "3060c16b-eea0-4972-a461-92834b69b044" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234014Z:3060c16b-eea0-4972-a461-92834b69b044" ], + "x-ms-correlation-request-id": [ "880551f5-2836-4f03-b6c9-bffc96a39fc9" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14988" ], + "x-ms-request-id": [ "880551f5-2836-4f03-b6c9-bffc96a39fc9" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222238Z:880551f5-2836-4f03-b6c9-bffc96a39fc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:13 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIPhfEfJNDIcqxphlnNMEqmIVXhQdydiE8SJgvjKBERo0UolqFP9stIwT7jlTaCl6cvFsGEMrealolq0MIvzH9HIgHZ5bG43y8umxPE0bX7/yvlPbDwH1t2RxgVfTh262zX1BdaWhZEJzAkrR7hHy" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "0" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+7": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+13": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}", + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "89" ], - "x-ms-client-request-id": [ "61fef7cd-5c28-4a33-ae0e-c0ec0486890c" ], - "CommandName": [ "Azs.Compute.Admin.internal\\Set-AzsComputeQuota" ], - "FullCommandName": [ "Set-AzsComputeQuota_Update" ], + "x-ms-unique-id": [ "2110" ], + "x-ms-client-request-id": [ "1716def8-1238-4cbd-9d1b-90ac28b6e4ce" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_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": [ "280" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cdfab6ec-960d-46c5-90b7-de7ab52c85be" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsyfQTvTJmf7qvbgN17itvG6PcnkXjntKZXEXpWvcegHYM+MdJNYyQ23qEXS76sP+NyWrZt3hs4Isb4THsvirXScQBXYiCepnV/oyAs5k3LlXoy0R2bY85VcjSIXpqi2ChHiyAteXPN/6u7oAFzoC" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], - "x-ms-request-id": [ "cdfab6ec-960d-46c5-90b7-de7ab52c85be" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234014Z:cdfab6ec-960d-46c5-90b7-de7ab52c85be" ], + "x-ms-correlation-request-id": [ "e8ec3442-7cef-4a8b-ba20-50578e166461" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14987" ], + "x-ms-request-id": [ "e8ec3442-7cef-4a8b-ba20-50578e166461" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222238Z:e8ec3442-7cef-4a8b-ba20-50578e166461" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:14 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvadUoEIy/RXgcKRimOr0xher+73IfLKh9UFT3CySiRqiN7KN+ePIRDaf9TkNJq/iafA4XTEZMK+gF2E5NDWJIjkDEoBXybEkJPCAS57tQLnkwi+yFFqWnLKdfhdNRVDg+A2ghxpHUZXy0RR2MbH8W" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "0" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":2,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+8": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+14": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "90" ], - "x-ms-client-request-id": [ "c73a0b58-777f-4f61-9492-d2e02e455882" ], - "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "x-ms-unique-id": [ "2111" ], + "x-ms-client-request-id": [ "da2cd718-3750-496c-82ad-3564b137965c" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2284,80 +4873,80 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "49c0d2b2-a051-47fe-b7c3-5608b77f24fe" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvApdufzxBlOwQUXDqR640zgp9U1vMWjkgUDMxKuR4cv41/F7ZDRZ8y2VT2A93xQ8dlLCUwe3F4oIv2sR8LBZ1z6tHUBzgTiWUQq0ctPjmcerF9m/CNSdLswNBt7y5WGzjWkLfH1Arir/wTLnQsTM8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14726" ], - "x-ms-request-id": [ "49c0d2b2-a051-47fe-b7c3-5608b77f24fe" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234015Z:49c0d2b2-a051-47fe-b7c3-5608b77f24fe" ], + "x-ms-correlation-request-id": [ "b78639ae-8ef8-45e3-af0e-82ff61d8ea83" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14986" ], + "x-ms-request-id": [ "b78639ae-8ef8-45e3-af0e-82ff61d8ea83" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222239Z:b78639ae-8ef8-45e3-af0e-82ff61d8ea83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:14 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdUyFCUmUNby1Rh/fWHAG6AUWgovdZVxxt9G1nK3raIXheldkbKhcDvoKSc9d6IbjofVmjGpxfbiAMIY/7W9e3QLtGAyohsjARdJkM6DLikK2Hu51o6NZXbjveAKZBdH29Wt77M/IHbymgOBbGbia" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "0" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":2,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+9": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+15": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 2\r\n }\r\n}", + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "91" ], - "x-ms-client-request-id": [ "a83ce164-56d1-48cf-bd53-18f9eaa26b59" ], - "CommandName": [ "Azs.Compute.Admin.internal\\Set-AzsComputeQuota" ], - "FullCommandName": [ "Set-AzsComputeQuota_Update" ], + "x-ms-unique-id": [ "2112" ], + "x-ms-client-request-id": [ "7a54c232-91cf-44a9-a96f-cd1a3ea9bb15" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_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": [ "280" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7d35f462-4f22-4020-8800-2a23bea6771f" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIkgT6gB6I+ryFkz34xl9g++qICpbHgZiQqNVNWremvATzc66IwN7MIDUnjuKfHaa02Hm40I2+qqrlyY+gH8jdAkOOzzGggYnyrJ9QmMDN5BPQMzgIFyUhNJ5SqIMaEVBL/ufMWlwvh6BWY17w6Ce" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], - "x-ms-request-id": [ "7d35f462-4f22-4020-8800-2a23bea6771f" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234015Z:7d35f462-4f22-4020-8800-2a23bea6771f" ], + "x-ms-correlation-request-id": [ "62e69fb8-6994-40f1-a9ca-c1424b4ab96c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14985" ], + "x-ms-request-id": [ "62e69fb8-6994-40f1-a9ca-c1424b4ab96c" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222239Z:62e69fb8-6994-40f1-a9ca-c1424b4ab96c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:14 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHzRouz+0VFJwLW1d38SxIzsz1RWpZ+k/WWHHR+vxRMaLGFixy+xmBrDc+uaV1DWrm9AWACFE/B25/0mQsWEPhtC5obUbvgY8E6KVcHt28s+i18toFigjrhG3nl+tMAxO+EZtNX5Q7X03pmM0ODQY" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "0" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":2,\"vmScaleSetCount\":2,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+10": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+16": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "92" ], - "x-ms-client-request-id": [ "6d16d413-9f9d-4b32-9547-efe22f481dac" ], + "x-ms-unique-id": [ "2113" ], + "x-ms-client-request-id": [ "352f07ae-f99e-4d32-9fed-16a7932a0961" ], "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2366,37 +4955,39 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "34b53ec6-0667-4e56-9370-7e1a4939c411" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzoJDA8eGi79d3fwSdDRrGl7ZUftDZQLkAnBbnW4Q1a2R1ux8R9OIYS5FeQZWnLRZEwUA8JGLz//QOcZ8HHL6q/eTpbGxYz7RqgclDnfvs0ZjG35/2h28XZPzifNijBuL/RQeosjHb0elqkzoGzmj" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14980" ], - "x-ms-request-id": [ "34b53ec6-0667-4e56-9370-7e1a4939c411" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234015Z:34b53ec6-0667-4e56-9370-7e1a4939c411" ], + "x-ms-correlation-request-id": [ "a1e31e6b-b165-4e9e-8b13-d67aa13b10c5" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14984" ], + "x-ms-request-id": [ "a1e31e6b-b165-4e9e-8b13-d67aa13b10c5" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222239Z:a1e31e6b-b165-4e9e-8b13-d67aa13b10c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:15 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdudXtW4Yvim72zkYzaUAAcmQULburkUU6V3yPR39m+hKF2gFVYM5TCWcSO3Gd4dSo6e3O3wy8CQRToEWZFIQJAKUceymAEjCqPWSjD+TxUdz4HkL/Y5rwUf3VGNSWG09uAfrPa0r2m1cpRdS5Vq3" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+17": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "92" ], - "x-ms-client-request-id": [ "6d16d413-9f9d-4b32-9547-efe22f481dac" ], + "x-ms-unique-id": [ "2114" ], + "x-ms-client-request-id": [ "c3e288d7-1f82-4766-bb50-380ae1f6bfdf" ], "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2405,37 +4996,39 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "34b53ec6-0667-4e56-9370-7e1a4939c411" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzoJDA8eGi79d3fwSdDRrGl7ZUftDZQLkAnBbnW4Q1a2R1ux8R9OIYS5FeQZWnLRZEwUA8JGLz//QOcZ8HHL6q/eTpbGxYz7RqgclDnfvs0ZjG35/2h28XZPzifNijBuL/RQeosjHb0elqkzoGzmj" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14980" ], - "x-ms-request-id": [ "34b53ec6-0667-4e56-9370-7e1a4939c411" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234015Z:34b53ec6-0667-4e56-9370-7e1a4939c411" ], + "x-ms-correlation-request-id": [ "ab634ec4-3160-46ef-b9a6-a2b245d2e17c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14983" ], + "x-ms-request-id": [ "ab634ec4-3160-46ef-b9a6-a2b245d2e17c" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222239Z:ab634ec4-3160-46ef-b9a6-a2b245d2e17c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:15 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmVRcquePfXchhkVmjBrJBWSCl8wtHkxVeM/dKWFXPh01FLRowWGDnqTrH4Jafge+Jw8L1I1DC1LYnkzA96Mm0g2inloz+xEaAH30nKd5A2L2WbxtrQu9LjcSodCje/kt4wbYAM0AFWqggkrWwchd" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+18": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "92" ], - "x-ms-client-request-id": [ "6d16d413-9f9d-4b32-9547-efe22f481dac" ], + "x-ms-unique-id": [ "2115" ], + "x-ms-client-request-id": [ "20f415f9-a473-44bf-bcbe-cb4c9d5c26c9" ], "CommandName": [ "Remove-AzsComputeQuota" ], - "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], + "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2444,161 +5037,155 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "34b53ec6-0667-4e56-9370-7e1a4939c411" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzoJDA8eGi79d3fwSdDRrGl7ZUftDZQLkAnBbnW4Q1a2R1ux8R9OIYS5FeQZWnLRZEwUA8JGLz//QOcZ8HHL6q/eTpbGxYz7RqgclDnfvs0ZjG35/2h28XZPzifNijBuL/RQeosjHb0elqkzoGzmj" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14980" ], - "x-ms-request-id": [ "34b53ec6-0667-4e56-9370-7e1a4939c411" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234015Z:34b53ec6-0667-4e56-9370-7e1a4939c411" ], + "x-ms-correlation-request-id": [ "e63cc33f-3c64-4123-8db2-8abbecdef199" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14982" ], + "x-ms-request-id": [ "e63cc33f-3c64-4123-8db2-8abbecdef199" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222239Z:e63cc33f-3c64-4123-8db2-8abbecdef199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:15 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYkAJ5BWH6vYmWwaeQJ2Bl9X07LKmrab+rFahqmFimK6CZbbD2bDr2GKg2spsbGpAE92yzLarTuMABcdDZi5RqASLtUDVq8yvEP9LLKYtUkpKC9S//FCT+/g7uWGX9lI5lqvitE/6mI30ilQlZTCV" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+1": { + "Quota+[NoContext]+TestListInvalidLocation+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas?api-version=2021-01-01+1": { "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 10,\r\n \"coresLimit\": 100,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 2048,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 2048,\r\n \"virtualMachineCount\": 100\r\n }\r\n}", + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "94" ], - "x-ms-client-request-id": [ "a15fdccd-d6d6-4e75-abcf-fb6728029e78" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsComputeQuota" ], - "FullCommandName": [ "New-AzsComputeQuota_CreateExpanded" ], + "x-ms-unique-id": [ "2129" ], + "x-ms-client-request-id": [ "caf819af-573c-424c-a554-87f893a6cc34" ], + "CommandName": [ "Get-AzsComputeQuota" ], + "FullCommandName": [ "Get-AzsComputeQuota_List" ], "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": [ "236" ] } }, "Response": { - "StatusCode": 200, + "StatusCode": 400, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3d1d4685-aaf5-46d5-964f-92c54a624248" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZrbrG/3HJS8103cTgyTHIdn31KJbyQPbk08E3HnSRfElA8k5B8BNfoKO6i0cdig9aFvC8X9N0+R/KghyV+lI624SZhcEuCbp9RWMsDKCOvN+Nkon9TbS60bWK4s3Q3lybNcIM+uR+6EPq+NDELdk" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1176" ], - "x-ms-request-id": [ "3d1d4685-aaf5-46d5-964f-92c54a624248" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234017Z:3d1d4685-aaf5-46d5-964f-92c54a624248" ], + "x-ms-correlation-request-id": [ "1c0ee054-dbb4-424e-9b94-c3b5e48546d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14751" ], + "x-ms-request-id": [ "1c0ee054-dbb4-424e-9b94-c3b5e48546d0" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222241Z:1c0ee054-dbb4-424e-9b94-c3b5e48546d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:16 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:40 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQQltxYGe46iOScjCPrebcQ7kthPwX3kFPNnCc07qWyWmiPWbWzzZMz4KGQuVt1LpsuMUOS4zmHaS0gOwdssDgv6Ps8hTgWGZSoEmFwYYhvycqKsDWruEZr9e7P0Khlm/9KrfwOJW+OxDzp7FSSOV" ] }, "ContentHeaders": { - "Content-Length": [ "458" ], + "Content-Length": [ "61" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":10,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}" + "Content": "{\"message\":\"Unsupported quota location: thisisnotarealplace\"}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { + "Quota+[NoContext]+TestCreateQuotaOnInvalidLocation+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/thislocationdoesnotexist/quotas/testQuota?api-version=2021-01-01+1": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": null, + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/thislocationdoesnotexist/quotas/testQuota?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 0,\r\n \"coresLimit\": 0,\r\n \"virtualMachineCount\": 0,\r\n \"vmScaleSetCount\": 0,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 0,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 0\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "95" ], - "x-ms-client-request-id": [ "b0f857f4-592d-46a0-9e94-cf38dafc9c68" ], - "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "252" ] } }, "Response": { - "StatusCode": 200, + "StatusCode": 400, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3c3172e2-4a57-404d-a63e-c94a02f58d3c" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmEMLy932NsK8TJ7pXae07n2GEs+r942FJ2dm1SU1Ux9+6g0nT4DlXJlYtlw6Ryz1MGo16ZpXL69kqEZsJin4IVovsFC3grSFwu03kr9+i/HwenV94QrXcWJcAByXrWgppi724oOaFSBqa71ZdaHO" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14721" ], - "x-ms-request-id": [ "3c3172e2-4a57-404d-a63e-c94a02f58d3c" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234018Z:3c3172e2-4a57-404d-a63e-c94a02f58d3c" ], + "x-ms-correlation-request-id": [ "de6b45a5-e5fb-497d-a14d-170c0f1c362e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1181" ], + "x-ms-request-id": [ "de6b45a5-e5fb-497d-a14d-170c0f1c362e" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222242Z:de6b45a5-e5fb-497d-a14d-170c0f1c362e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:17 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWgVLzmhcmZIH9SGEueyMfo3SEbC3tAg6NnGXWF+3ln0+jtn3beQp2KoUAbWzrS6gMecEDrtQhaU0tyS8slUFAqRiMllPi+av3K9lq1uUziJUvlXNiPPE7i7G/ZocwV8WvplLE/VmbSxAtBZoM579" ] }, "ContentHeaders": { - "Content-Length": [ "458" ], + "Content-Length": [ "66" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":10,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048}}" + "Content": "{\"message\":\"Unsupported quota location: thislocationdoesnotexist\"}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+3": { + "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 10,\r\n \"coresLimit\": 100,\r\n \"virtualMachineCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 2048,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 2048\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "96" ], - "x-ms-client-request-id": [ "d1d46cd7-a247-4240-945e-71715cbb4298" ], - "CommandName": [ "Azs.Compute.Admin.internal\\Set-AzsComputeQuota" ], - "FullCommandName": [ "Set-AzsComputeQuota_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "280" ] + "Content-Length": [ "236" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "996518f7-95a8-4d2d-9b67-409bf8ddb4ae" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwGVtzqBVUul7AZJnTWvaCs5RHi78PnpLe9vuk5ElQ+2bvnq4yu+HMjXGT7DUPSBc2xs7yXQ6jwtV4IuAS2ogkzxearPKW9kD915wSHu6P9bA/JkbOrxl4VMH9tsgBnMofkbTdKX2Yh1OQMziKjJk" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1175" ], - "x-ms-request-id": [ "996518f7-95a8-4d2d-9b67-409bf8ddb4ae" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234018Z:996518f7-95a8-4d2d-9b67-409bf8ddb4ae" ], + "x-ms-correlation-request-id": [ "011900ce-b346-42e0-94d0-a73dd959340d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1180" ], + "x-ms-request-id": [ "011900ce-b346-42e0-94d0-a73dd959340d" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222243Z:011900ce-b346-42e0-94d0-a73dd959340d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:17 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNkEaEoJFm9Q55d9VXrFcq2+gBiJmTihvofcoJLhLUi8jrf3rTTiSM6LeJP8QQvN586WWtTEWU29uQQVhzDfzZYuzURG/8hwVRzlv2fcF8f3cyu25S0lW0QRaWZLlOZQnSMaerlf42tanR4x3+Bj5" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], + "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":10,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { + "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "97" ], - "x-ms-client-request-id": [ "291f5f28-6fe4-4a6f-beee-8762776f398a" ], + "x-ms-unique-id": [ "2134" ], + "x-ms-client-request-id": [ "8f48f6d3-6a29-4089-aa4e-ccdfaafeec3e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2607,80 +5194,77 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6793b4d5-fbd4-4da0-b098-62d1b74acfcf" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXFeBqobCfl3Ddv7KblcG4+tYEUnD8u/uMkUdBh+QKy/iFJbEHm5KWkmcj/icu+sfS50bOqja9SYap1vccymcNdd3pv+Re3y6evzzGFgV7tAfBuKcDdxPAHzpqkzX0fPipEVzGxeY2K1rHuyOH/Kj" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14719" ], - "x-ms-request-id": [ "6793b4d5-fbd4-4da0-b098-62d1b74acfcf" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234019Z:6793b4d5-fbd4-4da0-b098-62d1b74acfcf" ], + "x-ms-correlation-request-id": [ "7c39d1c5-99e3-4e06-9bc5-e61521eaa12d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14748" ], + "x-ms-request-id": [ "7c39d1c5-99e3-4e06-9bc5-e61521eaa12d" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222243Z:7c39d1c5-99e3-4e06-9bc5-e61521eaa12d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:18 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVDu7zsqbn280SHPMEEd1yU1gO82e4+Hjq6qh87xutu+vTOdgCZnC/kOF8a8bgjX/YE0dzupngHmWoctcW1HhfBmjheMX+K4+kJ4K0mCvxY211A35mrBDZOd2l6VNdrQZyK5CMd7X6JhyAMxO7kQ1" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], + "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":10,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+5": { + "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 1,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"ddagpuCount\": 0\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "98" ], - "x-ms-client-request-id": [ "c3f424e1-8aba-4368-9fad-66d79b151223" ], - "CommandName": [ "Azs.Compute.Admin.internal\\Set-AzsComputeQuota" ], - "FullCommandName": [ "Set-AzsComputeQuota_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "280" ] + "Content-Length": [ "301" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b2ebfb91-5ea2-4077-afdc-9843eaf09648" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv850ZDOvk/UAssp2ZxNBgELLPSWG44R0I9/wLTFZwat7cwNjoa5nm7yX/MjXrpElm9TgltiKbMmRsrn16Gj2xGIShMzKyOGQaGiEd+7lNvLfCu+nyaJwEBXTTOlYfSuGKyWzXjUm2eUfMKrc3lhd0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], - "x-ms-request-id": [ "b2ebfb91-5ea2-4077-afdc-9843eaf09648" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234019Z:b2ebfb91-5ea2-4077-afdc-9843eaf09648" ], + "x-ms-correlation-request-id": [ "f9ce7325-6963-4057-a1a5-f26a67ab5f01" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1179" ], + "x-ms-request-id": [ "f9ce7325-6963-4057-a1a5-f26a67ab5f01" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222243Z:f9ce7325-6963-4057-a1a5-f26a67ab5f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:18 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3cmL27uZsbaZc0lVEyDgKRCxOOjS39l31Xl7fFgfzE4br1MFCenYdxhxOJaZZIswkJOuXoHpb3Qb3jfG9u1J8iCiJ++cTEHB/vlenW6BGAAvkyYwp6Mx48WvS8txp53x6pr3dajzpljmRsDf8j8y" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], + "Content-Length": [ "483" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+6": { + "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "99" ], - "x-ms-client-request-id": [ "f064f91e-cbf2-45eb-bbfb-e89a5764c4c0" ], - "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "x-ms-unique-id": [ "2136" ], + "x-ms-client-request-id": [ "82c94605-2d0b-4e15-9b86-dbc62729c3cc" ], + "CommandName": [ "Remove-AzsComputeQuota" ], + "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2689,80 +5273,76 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "08f8dbdf-35b3-4035-a2fc-5c02b5472b75" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvergz2RxQACv50GA3SwnziswUvapxoKVJH6GzghzfBUzDvxdUhnGgJZRa09Ce5r1O07oQL1iNwovxEytydeXbnNOLm3TOJfyQeE+h/cHADwjNSbg22cfvMkv5tCEVjUb87mG9hOI2MOMDA2nLC3hq" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14717" ], - "x-ms-request-id": [ "08f8dbdf-35b3-4035-a2fc-5c02b5472b75" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234020Z:08f8dbdf-35b3-4035-a2fc-5c02b5472b75" ], + "x-ms-correlation-request-id": [ "168284db-90ca-408f-884d-1d64530b16b9" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14981" ], + "x-ms-request-id": [ "168284db-90ca-408f-884d-1d64530b16b9" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222243Z:168284db-90ca-408f-884d-1d64530b16b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:20 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvidAEz1BxVnVMHsl/5YEXJTgejCL0olAmLwraWRGCCScz9HE90vyZ2EsqbPXBaHtdal0/JAaCtyoyhwLrUrMu7t5Wjd3oy61tbIijpfxkZWhsKamuSyN6T/jflGG3HYiSBB686bosNQMkpxsEFDIZ" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "0" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": null, + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+7": { + "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 1\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "Content": "{\r\n \"properties\": {\r\n \"availabilitySetCount\": 10,\r\n \"coresLimit\": 100,\r\n \"virtualMachineCount\": 100,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 2048,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 2048\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "100" ], - "x-ms-client-request-id": [ "e8113239-9736-40a7-9757-adfa2eed3357" ], - "CommandName": [ "Azs.Compute.Admin.internal\\Set-AzsComputeQuota" ], - "FullCommandName": [ "Set-AzsComputeQuota_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "280" ] + "Content-Length": [ "236" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e7cbab94-cff4-48e5-af91-7f22d9e0cee3" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsHh5N1NFRJQr5fa9nHjcZm29mKNjdkYCWOP4JNRRZgODpmpMqFbtBVCVFQ49XakgyI4Wxc7/QbIX25edtA+dNNbQM3yl+AO96DOl7a2+PoqJxrxagglZYL8XGSVyHlSAAaA/N4A2mQOilupIN6C1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], - "x-ms-request-id": [ "e7cbab94-cff4-48e5-af91-7f22d9e0cee3" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234020Z:e7cbab94-cff4-48e5-af91-7f22d9e0cee3" ], + "x-ms-correlation-request-id": [ "3635a823-5979-4db5-b7ff-69b19819f055" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1178" ], + "x-ms-request-id": [ "3635a823-5979-4db5-b7ff-69b19819f055" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222244Z:3635a823-5979-4db5-b7ff-69b19819f055" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:20 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGXaM+ryfoegAgSXkuQ1Mzo25NCh42qR00Jl9oeE9ekzt62puSLrugFQHc5vpBueDdC+qcP4sCzOJC+cCKi5aKkJDAywoosxAQlZtFGNFe1QB4RiUBnYwzyT8ot+w4dpCiw9rYHFCZpIGi0HS2lA4" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], + "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":2,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":10,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+8": { + "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "101" ], - "x-ms-client-request-id": [ "4cea79fc-b76f-4c5c-a58f-5c28990b7ee3" ], + "x-ms-unique-id": [ "2139" ], + "x-ms-client-request-id": [ "fb822d62-71e3-4066-861f-b08c658f6e92" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2771,80 +5351,77 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "856ab83e-c589-4e9a-a0b4-8e12e53ba521" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveeTt7loXcDD4NCzqdLEV+l/BY+ozlaFkOxYrkVjNcgUlxHbASAaTBX8VNezCOif3KjCrmM1uoOunP1ietr0YDIqUrVBUmnCdPxdfASz3/M05kRIUeZ433dwIJSyOCEGAm3AO7uC9yv3lfFb0/TWQ" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14715" ], - "x-ms-request-id": [ "856ab83e-c589-4e9a-a0b4-8e12e53ba521" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234021Z:856ab83e-c589-4e9a-a0b4-8e12e53ba521" ], + "x-ms-correlation-request-id": [ "50505947-c31c-445b-a9fc-458e77f22c64" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14746" ], + "x-ms-request-id": [ "50505947-c31c-445b-a9fc-458e77f22c64" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222244Z:50505947-c31c-445b-a9fc-458e77f22c64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:21 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:44 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPsTqsnLbokXNeVEgExk4x0jBU3n6iMak2DVQXjuqfS9+f4BPl8eXUdp4b6LKegxTal0BNHd+cR0pThG+bhFg6gq5/fyO2/K+zBHSUj42LmW5PlUX9MZBT6faVWO4q5fomUDUAcav2yQhNm+obagK" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], + "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":2,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":100,\"coresLimit\":100,\"availabilitySetCount\":10,\"vmScaleSetCount\":0,\"maxAllocationStandardManagedDisksAndSnapshots\":2048,\"maxAllocationPremiumManagedDisksAndSnapshots\":2048,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+9": { + "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", - "Content": "{\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 2,\r\n \"coresLimit\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"virtualMachineCount\": 2,\r\n \"vmScaleSetCount\": 2\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "Content": "{\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"availabilitySetCount\": 1,\r\n \"coresLimit\": 1,\r\n \"virtualMachineCount\": 1,\r\n \"vmScaleSetCount\": 1,\r\n \"maxAllocationStandardManagedDisksAndSnapshots\": 1,\r\n \"maxAllocationPremiumManagedDisksAndSnapshots\": 1,\r\n \"ddagpuCount\": 0\r\n }\r\n}", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "102" ], - "x-ms-client-request-id": [ "b0fd2763-6846-4d42-bcc9-d4c32439a5c9" ], - "CommandName": [ "Azs.Compute.Admin.internal\\Set-AzsComputeQuota" ], - "FullCommandName": [ "Set-AzsComputeQuota_Update" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "280" ] + "Content-Length": [ "301" ] } }, "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0279a7cc-c809-4cb0-8bd3-a83a74eac349" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaMWwoSi6bgSgJ+U/aMksXF0qrk+SiI7HI1+qAXrrNkJSqzrD8Ba2JR+AI9J9lUdbzs+qNSxLuL92m8UmZeNsXLyUsV2nqB2b02RCy7HVDyWteReTOvS5Um/8EPndus+03ewxh2Vg45G67POZO7YT" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], - "x-ms-request-id": [ "0279a7cc-c809-4cb0-8bd3-a83a74eac349" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234021Z:0279a7cc-c809-4cb0-8bd3-a83a74eac349" ], + "x-ms-correlation-request-id": [ "051c4b65-28a8-4dd1-a285-bfb99d149714" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1177" ], + "x-ms-request-id": [ "051c4b65-28a8-4dd1-a285-bfb99d149714" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222244Z:051c4b65-28a8-4dd1-a285-bfb99d149714" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:21 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:44 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvom2bOvjMVTYo3W7NbO7p7jh44Lc0DpFWNNRJKChHJRorS+XgXAv2xY0+WfsPAU40lC5w9PuXOrhRJqgq+G4oknIAwtUcKHlaN0ZiHdp15FgMhNyeVbQlOGPNs9TlUK5mvajaVx+SIb5QFw1fD+m/" ] }, "ContentHeaders": { - "Content-Length": [ "447" ], + "Content-Length": [ "483" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"northwest\",\"properties\":{\"virtualMachineCount\":2,\"coresLimit\":1,\"availabilitySetCount\":2,\"vmScaleSetCount\":2,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete\",\"name\":\"testQuotaCreateUpdateDelete\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":1,\"coresLimit\":1,\"availabilitySetCount\":1,\"vmScaleSetCount\":1,\"maxAllocationStandardManagedDisksAndSnapshots\":1,\"maxAllocationPremiumManagedDisksAndSnapshots\":1,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$DELETE+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+10": { + "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$DELETE+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "103" ], - "x-ms-client-request-id": [ "8a3287c4-2d54-4087-b6e0-058a3898fb32" ], + "x-ms-unique-id": [ "2141" ], + "x-ms-client-request-id": [ "022a26d0-69fb-4bb3-abc8-2231a979dd39" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2853,23 +5430,24 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5d25c9cb-7898-45fb-a193-142278e7f033" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVUMb+4WSzVvYeEEPxxoxKFO5r+fGTXZt7armYALTsBt4KDZQr/POgFvIpqA3gWTZW9jW9n4/1bA/+4F9dnUkSAEwcmzSnM7l9GShyPtwUKWNwti5xKAGIDLgT135pvrwquwLtO9DYb0AH78Oe9f1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14979" ], - "x-ms-request-id": [ "5d25c9cb-7898-45fb-a193-142278e7f033" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200325T234022Z:5d25c9cb-7898-45fb-a193-142278e7f033" ], + "x-ms-correlation-request-id": [ "5279aa55-4fe3-40c8-bdc1-e398bbd72b07" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14980" ], + "x-ms-request-id": [ "5279aa55-4fe3-40c8-bdc1-e398bbd72b07" ], + "x-ms-routing-request-id": [ "REDMOND:20220323T222244Z:5279aa55-4fe3-40c8-bdc1-e398bbd72b07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 25 Mar 2020 23:40:21 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 23 Mar 2022 22:22:44 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRva2mvtLxa5Z0wjaRbDkCQgIlFSqW+t6q7HnFBVydY6eypj7cKO3YkJjvauBOilPOJs5eyIKzzXG1K98FCMpYgRS+RSwVLWnmTih6Ei2JymOZ0cK74gi84z9PdV2rsUpVZBQrcIcNUaWtaxc7fsRk4" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Tests.ps1 b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Tests.ps1 index 544fa63c..86e29d17 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Tests.ps1 +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Tests.ps1 @@ -176,14 +176,18 @@ Describe "Quota" -Tags @('Quota', 'Azs.Compute.Admin') { } } - <# TODO: Uncomment when test recordings for these tests are added - # Apparently CRP will default to a place even if it does not exist It "TestListInvalidLocation" -Skip:$('TestListInvalidLocation' -in $global:SkippedTests) { $global:TestName = 'TestListInvalidLocation' - $quotas = Get-AzsComputeQuota -Location "thisisnotarealplace" - $quotas | Should Be $null + + try{ + $quotas = Get-AzsComputeQuota -Location "thisisnotarealplace" -ErrorAction Stop + throw "Expected exception was not thrown." + } + catch{ + $_.Exception.Message | Should match "Unsupported quota location" + } } - #> + It "TestDeleteNonExistingQuota" -Skip:$('TestDeleteNonExistingQuota' -in $global:SkippedTests) { $global:TestName = 'TestDeleteNonExistingQuota' @@ -191,37 +195,22 @@ Describe "Quota" -Tags @('Quota', 'Azs.Compute.Admin') { { Remove-AzsComputeQuota -Name "thisdoesnotexistandifitdoesoops" -ErrorAction Stop } | Should Throw "The server responded with a Request Error, Status: NotFound" } - <# TODO: Uncomment when test recordings for these tests are added It "TestCreateQuotaOnInvalidLocation" -Skip:$('TestCreateQuotaOnInvalidLocation' -in $global:SkippedTests) { $global:TestName = 'TestCreateQuotaOnInvalidLocation' - $quotaNamePrefix = "testQuota" + $name = "testQuota" $invalidLocation = "thislocationdoesnotexist" - $data = @( - @( 0, 0, 0, 0, 0, 0, 0 ), - @( 1, 0, 0, 0, 0, 0, 1 ), - @( 0, 1, 0, 0, 0, 0, 2 ), - @( 0, 0, 1, 0, 0, 0, 3 ), - @( 0, 0, 0, 1, 0, 0, 4 ), - @( 0, 0, 0, 0, 1, 0, 5 ), - @( 0, 0, 0, 0, 0, 1, 6 ), - @( 100, 100, 100, 100 , 100, 100, 7 ), - @( 1000, 1000, 1000, 1000, 1000, 1000, 8 ) - ) - $data | ForEach-Object { - $name = $quotaNamePrefix + $_[6] - New-AzsComputeQuota -Location $invalidLocation -Name $name -AvailabilitySetCount $_[0] -CoresCount $_[1] -VmScaleSetCount $_[2] -VirtualMachineCount $_[3] -StandardManagedDiskAndSnapshotSize $_[4] -PremiumManagedDiskAndSnapshotSize $_[5] | Should be $null - Get-AzsComputeQuota -Location $invalidLocation -Name $quota.Name | Should be $null + $data = @( 0, 0, 0, 0, 0, 0, 0 ) + try{ + New-AzsComputeQuota -Location $invalidLocation -Name $name -AvailabilitySetCount $data[0] -CoresCount $data[1] -VmScaleSetCount $data[2] -VirtualMachineCount $data[3] -StandardManagedDiskAndSnapshotSize $data[4] -PremiumManagedDiskAndSnapshotSize $data[5] -ErrorAction Stop + throw "Expected error not thrown" } - - $data | ForEach-Object { - $name = $quotaNamePrefix + $_[4] - Get-AzsComputeQuota -Location | Where-Object { $_.Name -eq $name} | Should be $null + catch{ + $_.Exception.Message | Should match "Unsupported quota location" } } -#> It "TestQuotaCreateUpdateDelete" -Skip:$('TestQuotaCreateUpdateDelete' -in $global:SkippedTests) { $global:TestName = 'TestQuotaCreateUpdateDelete' diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json new file mode 100644 index 00000000..c7d4b680 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json @@ -0,0 +1,44 @@ +{ + "Get-AzsComputeScaleUnit+[NoContext]+GetComputeScaleUnitTest+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/computeScaleUnits/s-cluster?api-version=2021-03-30+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/computeScaleUnits/s-cluster?api-version=2021-03-30", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1495" ], + "x-ms-client-request-id": [ "d7dc23ea-7242-4ee9-971e-c1f2fdc3fd9a" ], + "CommandName": [ "Get-AzsComputeScaleUnit" ], + "FullCommandName": [ "Get-AzsComputeScaleUnit_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "f67c8635-dc49-4faa-90e9-3208e69cdd93" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13866" ], + "x-ms-request-id": [ "f67c8635-dc49-4faa-90e9-3208e69cdd93" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213937Z:f67c8635-dc49-4faa-90e9-3208e69cdd93" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:36 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmsOlSh/jwo6W4wJ06NK1YzM50YG8jAdsWvpvoNIaMZ/UT5XPpMBXHpwa4PsRuYgQkCd0kCKbJPc67lJtS+wRFL3nkGXlumrjK/2+XDS/frEpdX9+P5DLZIXDjxIeRbKX+0s/Tb3hbQ2jgrkjgIAr" ] + }, + "ContentHeaders": { + "Content-Length": [ "756" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"providers/Microsoft.Compute.Admin/locations/redmond/computeScaleUnits/s-cluster\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/computeScaleUnits\",\"location\":\"redmond\",\"properties\":{\"scaleUnitName\":\"s-cluster\",\"lastUpdatedTime\":\"2022-03-21T21:38:26.692Z\",\"nodes\":[{\"nodeName\":\"ASRR1N22R10U22\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-21T21:38:26.614Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U21\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-21T21:38:26.676Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U23\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-21T21:38:26.598Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U24\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-21T21:38:26.598Z\",\"virtualMachines\":[]}]}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Tests.ps1 b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Tests.ps1 new file mode 100644 index 00000000..fa01c7b2 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Tests.ps1 @@ -0,0 +1,43 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) + +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsComputeScaleUnit.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + + + +Describe 'Get-AzsComputeScaleUnit' { + It 'GetComputeScaleUnitTest' -Skip:$('TestListDiskMigrationJobs' -in $global:SkippedTests) { + $global:TestName = 'GetComputeScaleUnitTest' + + $scaleUnitView = Get-AzsComputeScaleUnit -Name s-cluster -Location $env.Location -SubscriptionId $env.SubscriptionId + + $scaleUnitView | Should Not Be $null + $scaleUnitView.Id | Should Not Be $null + $scaleUnitView.LastUpdatedTime | Should Not Be $null + $scaleUnitView.Nodes | Should Not Be $null + $scaleUnitView.ScaleUnitName | Should Be s-cluster + $scaleUnitView.Type | Should Not Be $null + + foreach ($node in $scaleUnitView.Nodes){ + $node.LastUpdatedTime | Should Not Be $null + $node.NodeHealthState | Should Not Be $null + $node.NodeName | Should Not Be $null + foreach ($vm in $node.VirtualMachine){ + $vm.ResourceGroupName | Should Not Be $null + $vm.SubscriptionId | Should Not Be $null + $vm.TimeOfLastConfigurationChange | Should Not Be $null + $vm.VMId | Should Not Be $null + $vm.VMSize | Should Not Be $null + } + } + } +} diff --git a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json index ce119421..ce13f605 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json @@ -1,12 +1,17 @@ { - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?api-version=2021-04-01+1": { + "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "11" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1496" ], + "x-ms-client-request-id": [ "6c6eda0a-3da5-42e7-ad61-74d60febead3" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -15,72 +20,41 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "017b18ee-810a-43ff-8299-0579cf296b1d" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFLZzIkEUge3dRNhwp91UlXWBie/yMr714eovb1R2Sg/e1yK3Tc+gCVR290aZOJJeqpipUT9JkXmPLZ1TSIN40NA6q9ratqqIKwggF2D1BUBAdk7WpYLQNdGVrtkuLOB1bVSk6sZgB2UX+wP7qqTG" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13735" ], - "x-ms-request-id": [ "017b18ee-810a-43ff-8299-0579cf296b1d" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200214T174600Z:017b18ee-810a-43ff-8299-0579cf296b1d" ], + "x-ms-correlation-request-id": [ "ab7612d3-dcd8-4e98-a35a-b6f41ed5435d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13865" ], + "x-ms-request-id": [ "ab7612d3-dcd8-4e98-a35a-b6f41ed5435d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213937Z:ab7612d3-dcd8-4e98-a35a-b6f41ed5435d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:00 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "11279" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"name\": \"northwest/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/RG1/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_20f1619e421047f681e6b89e3028df06\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"name\": \"northwest/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTETest_OsDisk_1_38a767e44ceb49fba53c48de9b08aaae\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"name\": \"northwest/426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_426b89458a2442adacdcc26f16202489\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"name\": \"northwest/a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/sctetest2_OsDisk_1_a2ae46faad524f7ebd5d2b052b6c8f7e\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"name\": \"northwest/17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 18,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/ANHWANTESTRG/providers/Microsoft.Compute/Disks/anhwanTestVm_OsDisk_1_17589ca413464adea2d772324a7de0c4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"name\": \"northwest/16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 16,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTE2_OsDisk_1_16c5cbad9f964d71b758329437ad2ca6\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"name\": \"northwest/6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 16,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTE3_OsDisk_1_6a3f1eb991154ba3b86f075619cc5125\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"name\": \"northwest/207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/0a4ed41b-90cf-41b7-8225-ab252f776f16/resourceGroups/VAASRGE976/providers/Microsoft.Compute/Disks/osdisk\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"name\": \"northwest/ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/d69dcf23-0c5a-4f87-87b9-b29d9184262b/resourceGroups/VAASRGC7B2/providers/Microsoft.Compute/Disks/osdisk\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"name\": \"northwest/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/Test4_OsDisk_1_8ad00e03fc5d424d981b9eeb03a4fdcc\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"name\": \"northwest/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/scte5_OsDisk_1_c0fba5b4c21b4b5fb59c33e4f6377ff4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"name\": \"northwest/0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 10,\r\n \"userResourceId\": \"/subscriptions/7cd88a02-5f6a-48e0-a247-1b16cd61b5f7/resourceGroups/VAASRG012C/providers/Microsoft.Compute/Disks/simplelinuxvmv_disk3_0597b790e6124a868a9b6dac76cdb990\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"name\": \"northwest/268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 10,\r\n \"userResourceId\": \"/subscriptions/a77ae262-efb2-4065-8284-c43da3f41d54/resourceGroups/VAASRG9ED1/providers/Microsoft.Compute/Disks/simplelinuxvmv-datadisk1\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n}" - } - }, - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?userSubscriptionId=74c72bdc-d917-431c-a377-8ca80f4238a0\u0026api-version=2021-04-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?userSubscriptionId=74c72bdc-d917-431c-a377-8ca80f4238a0\u0026api-version=2021-04-01", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "12" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "c169ebf5-adbd-42c7-82c1-0081c03b27a8" ], + "Date": [ "Mon, 21 Mar 2022 21:39:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvS+EbtebkTuMile0MrMuOb1fsLFNU3WA6kocLCCfNQHwE6NtIbv6HIjAVBYRMy0hSc124wot1F9XOn1F3EvAIsu/XdZLRdkAVJpwNOlCPJj0I5Q5lFwGUYGpJe0vvohl7VC8z3UzPJYL4ZpeaTBBh" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13734" ], - "x-ms-request-id": [ "c169ebf5-adbd-42c7-82c1-0081c03b27a8" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200214T174600Z:c169ebf5-adbd-42c7-82c1-0081c03b27a8" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:00 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfWhJ2NgI4y9Uw9fdPvRwcuRlvrqQ2izl0y8zjSMLPUaMgyWK9NIhz86Jp5BvXHYYVKP4nX8R3sFM6aoDh6G1mYC3NaAU0e/fBRKoNeQw68GqS96cDmGI0UMZvF0pu/uONGh6J6t2mPhOUjnITpy4" ] }, "ContentHeaders": { - "Content-Length": [ "7881" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"name\": \"northwest/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/RG1/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_20f1619e421047f681e6b89e3028df06\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"name\": \"northwest/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTETest_OsDisk_1_38a767e44ceb49fba53c48de9b08aaae\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"name\": \"northwest/426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_426b89458a2442adacdcc26f16202489\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"name\": \"northwest/a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/sctetest2_OsDisk_1_a2ae46faad524f7ebd5d2b052b6c8f7e\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"name\": \"northwest/17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 18,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/ANHWANTESTRG/providers/Microsoft.Compute/Disks/anhwanTestVm_OsDisk_1_17589ca413464adea2d772324a7de0c4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"name\": \"northwest/16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 16,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTE2_OsDisk_1_16c5cbad9f964d71b758329437ad2ca6\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"name\": \"northwest/6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 16,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTE3_OsDisk_1_6a3f1eb991154ba3b86f075619cc5125\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"name\": \"northwest/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/Test4_OsDisk_1_8ad00e03fc5d424d981b9eeb03a4fdcc\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"name\": \"northwest/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/scte5_OsDisk_1_c0fba5b4c21b4b5fb59c33e4f6377ff4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"name\": \"redmond/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationSourceUri\": \"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New Virtual Hard Disk.vhd\",\r\n \"creationOption\": \"Import\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?status=Unattached\u0026api-version=2021-04-01+3": { + "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?userSubscriptionId=47b53730-e95d-4594-b843-d378bdff793a\u0026api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?status=Unattached\u0026api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?userSubscriptionId=47b53730-e95d-4594-b843-d378bdff793a\u0026api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "13" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1497" ], + "x-ms-client-request-id": [ "636dbcfa-ff1a-479d-a6ac-100ea6bd7142" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -89,35 +63,41 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "75c64846-9664-4b44-8543-56ab6481576e" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLoKl8nONY/2Af+DBNHop8Qs0BVdAsXAortH9fUYuKXlg+V3P2C7dO/U7yvSi8WOWvBseX3OkgorCM01N5QjjjwMssaiCmv3BQiRmSjZEnSGSRYwAwONTDVf/wodaShRvU9wwzVHB0i5RaJ67GAQ5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13733" ], - "x-ms-request-id": [ "75c64846-9664-4b44-8543-56ab6481576e" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200214T174601Z:75c64846-9664-4b44-8543-56ab6481576e" ], + "x-ms-correlation-request-id": [ "e0b2b9de-7237-4b5a-8432-e63986937d28" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13864" ], + "x-ms-request-id": [ "e0b2b9de-7237-4b5a-8432-e63986937d28" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213937Z:e0b2b9de-7237-4b5a-8432-e63986937d28" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:00 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvinNSwuYmyg279A98A84gtEvhPxkOOagDmwenGH9chSEUO0gsDYNYnXhOZ4+qUfhuSXhi8iOWAAV6MSSrJvbEE5xT2T4TbNUq8zLIxXzT2RFywRP7WzPWZ51O8W1/+Z+xTMhdasag/LHsvE8KmoQr" ] }, "ContentHeaders": { - "Content-Length": [ "11279" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"name\": \"northwest/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/RG1/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_20f1619e421047f681e6b89e3028df06\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"name\": \"northwest/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTETest_OsDisk_1_38a767e44ceb49fba53c48de9b08aaae\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"name\": \"northwest/426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_426b89458a2442adacdcc26f16202489\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"name\": \"northwest/a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/sctetest2_OsDisk_1_a2ae46faad524f7ebd5d2b052b6c8f7e\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"name\": \"northwest/17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 18,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/ANHWANTESTRG/providers/Microsoft.Compute/Disks/anhwanTestVm_OsDisk_1_17589ca413464adea2d772324a7de0c4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"name\": \"northwest/16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 16,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTE2_OsDisk_1_16c5cbad9f964d71b758329437ad2ca6\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"name\": \"northwest/6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 16,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTE3_OsDisk_1_6a3f1eb991154ba3b86f075619cc5125\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"name\": \"northwest/207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/0a4ed41b-90cf-41b7-8225-ab252f776f16/resourceGroups/VAASRGE976/providers/Microsoft.Compute/Disks/osdisk\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"name\": \"northwest/ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/d69dcf23-0c5a-4f87-87b9-b29d9184262b/resourceGroups/VAASRGC7B2/providers/Microsoft.Compute/Disks/osdisk\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"name\": \"northwest/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/Test4_OsDisk_1_8ad00e03fc5d424d981b9eeb03a4fdcc\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"name\": \"northwest/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/scte5_OsDisk_1_c0fba5b4c21b4b5fb59c33e4f6377ff4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"name\": \"northwest/0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 10,\r\n \"userResourceId\": \"/subscriptions/7cd88a02-5f6a-48e0-a247-1b16cd61b5f7/resourceGroups/VAASRG012C/providers/Microsoft.Compute/Disks/simplelinuxvmv_disk3_0597b790e6124a868a9b6dac76cdb990\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"name\": \"northwest/268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 10,\r\n \"userResourceId\": \"/subscriptions/a77ae262-efb2-4065-8284-c43da3f41d54/resourceGroups/VAASRG9ED1/providers/Microsoft.Compute/Disks/simplelinuxvmv-datadisk1\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"name\": \"redmond/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationSourceUri\": \"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New Virtual Hard Disk.vhd\",\r\n \"creationOption\": \"Import\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?sharePath=\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\SU1_ObjStore_4&api-version=2021-04-01+4": { + "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=Unattached\u0026api-version=2021-09-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?sharePath=%5C%5CSU1FileServer.azs-long02-int.selfhost.corp.microsoft.com%5CSU1_ObjStore_4\u0026api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=Unattached\u0026api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "14" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1498" ], + "x-ms-client-request-id": [ "077ba300-7b42-46f7-afd4-99c5f5c10616" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -126,35 +106,41 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "b47d6d65-3fc2-43c7-b184-84e0edab7231" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCNssDuKDTkHvcnEbyUixZKJulgd3Oo+atTWmomM60YY9jxssJ+XTMk4BxDHIAjcw67gEqt2SzBKPmTsQf00aws3/za8G8aWLeJ4K5tXKRHTQsQXMSoHK+A091vwNL1okNGC0fAltVYuExThCB9Dl" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13732" ], - "x-ms-request-id": [ "b47d6d65-3fc2-43c7-b184-84e0edab7231" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200214T174601Z:b47d6d65-3fc2-43c7-b184-84e0edab7231" ], + "x-ms-correlation-request-id": [ "49d41edd-6f1c-47dc-9e63-1bbac9dbc7a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13863" ], + "x-ms-request-id": [ "49d41edd-6f1c-47dc-9e63-1bbac9dbc7a7" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213938Z:49d41edd-6f1c-47dc-9e63-1bbac9dbc7a7" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:01 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVg9pQiF/PR3lIMPQqXBfW8ru9Wg0lxUKoh6qtHWkx12KRu6fImc8uBPVNkk0ya7Ls1ziiSNtZ0xS9TDyM+Q/Z6OI1/EsDPzGf04YTZtLoWz4fBb81JkvKpCmCm56ZtTBik+N0h0nFXqgniWQIMyV" ] }, "ContentHeaders": { - "Content-Length": [ "3508" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"name\": \"northwest/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/RG1/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_20f1619e421047f681e6b89e3028df06\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"name\": \"northwest/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTETest_OsDisk_1_38a767e44ceb49fba53c48de9b08aaae\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"name\": \"northwest/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/Test4_OsDisk_1_8ad00e03fc5d424d981b9eeb03a4fdcc\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"name\": \"northwest/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/scte5_OsDisk_1_c0fba5b4c21b4b5fb59c33e4f6377ff4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"name\": \"redmond/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationSourceUri\": \"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New Virtual Hard Disk.vhd\",\r\n \"creationOption\": \"Import\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?count=1\u0026start=1\u0026api-version=2021-04-01+5": { + "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?sharePath=\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\SU1_ObjStore_1\u0026api-version=2021-09-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?count=1\u0026start=1\u0026api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?sharePath=%5C%5CSU1FileServer.n22r1006.masd.stbtest.microsoft.com%5CSU1_ObjStore_1\u0026api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "15" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1499" ], + "x-ms-client-request-id": [ "f6451fa0-5eb4-4644-8258-05f54d397fe7" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -163,35 +149,41 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "3f5229a5-8f33-44e0-88b6-4e8af5a6df65" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3MBIXA/MjbhFXEvWlIOHnZD6x6I1RhPvikARggJX/3r16vE8vzAgWYIwyzfPaY6JVLjk0JKijjfSrMOVcWxx/ADmW0Hd6TdodjL1LlLj0p/YBRhZgmo+XiVDHbK4UllX0KJNtF+FtJw0StIOK1oG" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13731" ], - "x-ms-request-id": [ "3f5229a5-8f33-44e0-88b6-4e8af5a6df65" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200214T174601Z:3f5229a5-8f33-44e0-88b6-4e8af5a6df65" ], + "x-ms-correlation-request-id": [ "be2722ae-627a-43ae-8f57-875f57fccc74" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13862" ], + "x-ms-request-id": [ "be2722ae-627a-43ae-8f57-875f57fccc74" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213938Z:be2722ae-627a-43ae-8f57-875f57fccc74" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:01 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWcXJB8quFqLX4dFUz5M2UHpUegl6mQDqcykr23YZNtg7/hydG6zahI4DW2TedRQT1YSWfqBWcey1juQlXeQD5BxegM4MuPQ6TBKjKxvKskNm6x/VZ57I04eQg0wRMWnctkuUqaFQO4cauy1mTzWQ" ] }, "ContentHeaders": { - "Content-Length": [ "896" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"name\": \"northwest/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTETest_OsDisk_1_38a767e44ceb49fba53c48de9b08aaae\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"name\": \"redmond/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationSourceUri\": \"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New Virtual Hard Disk.vhd\",\r\n \"creationOption\": \"Import\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "Get-AzsDisk+[NoContext]+TestGetDisk+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?api-version=2021-04-01+1": { + "Get-AzsDisk+[NoContext]+TestGetDisk+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "16" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1500" ], + "x-ms-client-request-id": [ "2ceea08d-8a6c-4f96-bc4a-91c97993724f" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -200,35 +192,41 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "48212f32-b487-4521-80a1-24b1b1cb87be" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCjINKcBOXtfd8EEVj+rxya7uwIPYsmCVH6Z3Pfm5Qro92M6cmgzkuPNjUAySvGKKAuTBlklzrtmXGaZFoR8JHz8QwbMio+i0Tvy+siCFtQRm31h2LMPq5s9MpELxyBgCJS2qW4rab2tCkKjTcw8x" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13730" ], - "x-ms-request-id": [ "48212f32-b487-4521-80a1-24b1b1cb87be" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200214T174602Z:48212f32-b487-4521-80a1-24b1b1cb87be" ], + "x-ms-correlation-request-id": [ "d4b751e6-8a7f-4444-b058-cda9c7987d04" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13861" ], + "x-ms-request-id": [ "d4b751e6-8a7f-4444-b058-cda9c7987d04" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213938Z:d4b751e6-8a7f-4444-b058-cda9c7987d04" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:01 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAJKFywhbvSnXMDjOoV/8WMZ1TEplzGZarML3ieWZcajvl6AYUSHUxcZviS++iPbtxQc/EsG8rPQF9li4VXW8c9UOLeohx04KID2NaeRDH7oM4vd2EW1TJwtLX8ilrib5GBO6gouchyyIdWFdaqnf" ] }, "ContentHeaders": { - "Content-Length": [ "11279" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"name\": \"northwest/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/RG1/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_20f1619e421047f681e6b89e3028df06\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"name\": \"northwest/38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"38a767e4-4ceb-49fb-a53c-48de9b08aaae\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTETest_OsDisk_1_38a767e44ceb49fba53c48de9b08aaae\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"name\": \"northwest/426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"426b8945-8a24-42ad-acdc-c26f16202489\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_426b89458a2442adacdcc26f16202489\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"name\": \"northwest/a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"a2ae46fa-ad52-4f7e-bd5d-2b052b6c8f7e\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/sctetest2_OsDisk_1_a2ae46faad524f7ebd5d2b052b6c8f7e\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"name\": \"northwest/17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"17589ca4-1346-4ade-a2d7-72324a7de0c4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 18,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/ANHWANTESTRG/providers/Microsoft.Compute/Disks/anhwanTestVm_OsDisk_1_17589ca413464adea2d772324a7de0c4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"name\": \"northwest/16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"16c5cbad-9f96-4d71-b758-329437ad2ca6\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 16,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTE2_OsDisk_1_16c5cbad9f964d71b758329437ad2ca6\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"name\": \"northwest/6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"6a3f1eb9-9115-4ba3-b86f-075619cc5125\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 16,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/SCTE/providers/Microsoft.Compute/Disks/SCTE3_OsDisk_1_6a3f1eb991154ba3b86f075619cc5125\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"name\": \"northwest/207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"207d840f-9ae1-43cb-ae81-ac982168b936\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/0a4ed41b-90cf-41b7-8225-ab252f776f16/resourceGroups/VAASRGE976/providers/Microsoft.Compute/Disks/osdisk\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"name\": \"northwest/ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"ff3b1b7f-2b3c-4b2d-8fb8-a336db6958a7\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/d69dcf23-0c5a-4f87-87b9-b29d9184262b/resourceGroups/VAASRGC7B2/providers/Microsoft.Compute/Disks/osdisk\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"name\": \"northwest/8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"8ad00e03-fc5d-424d-981b-9eeb03a4fdcc\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/Test4_OsDisk_1_8ad00e03fc5d424d981b9eeb03a4fdcc\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"name\": \"northwest/c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"c0fba5b4-c21b-4b5f-b59c-33e4f6377ff4\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 2,\r\n \"provisionSizeGB\": 30,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/LADTEST/providers/Microsoft.Compute/Disks/scte5_OsDisk_1_c0fba5b4c21b4b5fb59c33e4f6377ff4\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"name\": \"northwest/0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"0597b790-e612-4a86-8a9b-6dac76cdb990\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 10,\r\n \"userResourceId\": \"/subscriptions/7cd88a02-5f6a-48e0-a247-1b16cd61b5f7/resourceGroups/VAASRG012C/providers/Microsoft.Compute/Disks/simplelinuxvmv_disk3_0597b790e6124a868a9b6dac76cdb990\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"name\": \"northwest/268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"268b29d2-a13d-481e-aedc-2dbed1255a20\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 10,\r\n \"userResourceId\": \"/subscriptions/a77ae262-efb2-4065-8284-c43da3f41d54/resourceGroups/VAASRG9ED1/providers/Microsoft.Compute/Disks/simplelinuxvmv-datadisk1\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"name\": \"redmond/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationSourceUri\": \"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New Virtual Hard Disk.vhd\",\r\n \"creationOption\": \"Import\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "Get-AzsDisk+[NoContext]+TestGetDisk+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/20f1619e-4210-47f6-81e6-b89e3028df06?api-version=2021-04-01+2": { + "Get-AzsDisk+[NoContext]+TestGetDisk+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298?api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/20f1619e-4210-47f6-81e6-b89e3028df06?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "17" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1501" ], + "x-ms-client-request-id": [ "94e21a3e-7591-4aa5-b416-787515acc569" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -237,35 +235,41 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "97f94950-2edc-45b5-8a5f-e44b9184c275" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOLGPkuY+UixIzl0FOk96kB/q11m0zrjw1HZHZME35iKXzzmYA27Mkm6ZYIWm/Uz9LLDq+FtnNe9w0ldJStXSa7IDlqn0WVVxCgKVpnXgZxbld5aImB0JEeg5I8Mz7mK2QPv8SEYXKzg+Vv9Mes8T" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13729" ], - "x-ms-request-id": [ "97f94950-2edc-45b5-8a5f-e44b9184c275" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200214T174602Z:97f94950-2edc-45b5-8a5f-e44b9184c275" ], + "x-ms-correlation-request-id": [ "73d79038-d01d-4603-874e-49a38eaaffbe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13860" ], + "x-ms-request-id": [ "73d79038-d01d-4603-874e-49a38eaaffbe" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213938Z:73d79038-d01d-4603-874e-49a38eaaffbe" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:02 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIXkVrtbcMwzTaj7lixgphB2YN8dy7chrODK1WQVtGVIHJoTYOPT2EcPzyqpfVLFwpv8ortSe/mV+f6xfb8BdptaYxVHjm74hljUkMO39a5yrsj5mp5Zk1HaqjK93O8hEtVCN/6OSFkMA8Re0MwX6" ] }, "ContentHeaders": { - "Content-Length": [ "801" ], + "Content-Length": [ "927" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"name\": \"northwest/20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"northwest\",\r\n \"properties\": {\r\n \"diskId\": \"20f1619e-4210-47f6-81e6-b89e3028df06\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"actualSizeGB\": 24,\r\n \"provisionSizeGB\": 127,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/RG1/providers/Microsoft.Compute/Disks/TEST_OsDisk_1_20f1619e421047f681e6b89e3028df06\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n}" + "Content": "{\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"name\": \"redmond/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationSourceUri\": \"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New Virtual Hard Disk.vhd\",\r\n \"creationOption\": \"Import\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n}", + "isContentBase64": false } }, - "Get-AzsDisk+[NoContext]+TestGetDiskInvalid+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-04-01+1": { + "Get-AzsDisk+[NoContext]+TestGetDiskInvalid+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "18" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1502" ], + "x-ms-client-request-id": [ "072bd298-6ea8-4c55-bc27-5aa02d7e8dd6" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -274,25 +278,26 @@ "Response": { "StatusCode": 404, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "8815c142-8d62-40ae-89e2-08aba1a823ab" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIuDv39nYezPhLBMsiug1iLg81bSFQoRVC1WeFJVC5OSFFFVJflHUk+rf3Jlza57dPQqkS7UkxEMPb4vhd2M5GJ8pG0IBODMUKm8WnuhYmcmBkXEoWmPW5Xpob6T3bqsFjJ7Qep/jRfYBQzq9He7p" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13728" ], - "x-ms-request-id": [ "8815c142-8d62-40ae-89e2-08aba1a823ab" ], - "x-ms-routing-request-id": [ "NORTHWEST:20200214T174602Z:8815c142-8d62-40ae-89e2-08aba1a823ab" ], + "x-ms-correlation-request-id": [ "88774bd3-19bd-4cd6-b7de-49d49465bebd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13859" ], + "x-ms-request-id": [ "88774bd3-19bd-4cd6-b7de-49d49465bebd" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213939Z:88774bd3-19bd-4cd6-b7de-49d49465bebd" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:02 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvR9L1pVzY/mj2Y/iMrJtzFpD+akyzsfh7gEP31WyivkWE4QrFt/G2Mvq1BAHpu35gl1/5i4WrJ3+0oP0/noS0o4GjC7iEMHL1R39jh64WjLXnZX+GLXA7M/Kqcmwx+aPnnA5fcfu809a1L3z0jcHv" ] }, "ContentHeaders": { "Content-Length": [ "115" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The entity was not found in this Azure location.\"\r\n }\r\n}" + "Content": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"The entity was not found in this Azure location.\"\r\n }\r\n}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Get-AzsDisk.Tests.ps1 b/src/Azs.Compute.Admin/test/Get-AzsDisk.Tests.ps1 index a09ebc8f..a50bd2d6 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDisk.Tests.ps1 +++ b/src/Azs.Compute.Admin/test/Get-AzsDisk.Tests.ps1 @@ -84,7 +84,7 @@ Describe 'Get-AzsDisk' { } } - It "TestListDisks" { + It "TestListDisks" -Skip:$('TestListDisks' -in $global:SkippedTests) { $global:TestName = 'TestListDisks' $disks = Get-AzsDisk @@ -114,7 +114,7 @@ Describe 'Get-AzsDisk' { } } - It "TestGetDisk" { + It "TestGetDisk" -Skip:$('TestGetDisk' -in $global:SkippedTests) { $global:TestName = 'TestGetDisk' $disks = Get-AzsDisk diff --git a/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json index 82dc1629..05fe2a9a 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json @@ -1,16 +1,17 @@ { - "Get-AzsDiskMigrationJob+[NoContext]+TestListDiskMigrationJobs+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-01+1": { + "Get-AzsDiskMigrationJob+[NoContext]+TestListDiskMigrationJobs+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "8a96982e-f67e-48d6-8fb8-835eab26b33d" ], + "x-ms-unique-id": [ "1503" ], + "x-ms-client-request-id": [ "e5d9b2a5-62b3-4344-8717-8eb34efb5f47" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,36 +23,38 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "2c92ad22-628a-4142-ae18-aafe8b5da427" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14950" ], - "x-ms-request-id": [ "2c92ad22-628a-4142-ae18-aafe8b5da427" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T103443Z:2c92ad22-628a-4142-ae18-aafe8b5da427" ], + "x-ms-correlation-request-id": [ "0d1eb5a3-eef7-4908-96ac-e9f45f3e03da" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13858" ], + "x-ms-request-id": [ "0d1eb5a3-eef7-4908-96ac-e9f45f3e03da" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213940Z:0d1eb5a3-eef7-4908-96ac-e9f45f3e03da" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 10:34:43 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRSSSEu0Xqs3v3NjrWx9HnzlUFS2N2gHAaf5GRmQirfB8QCAKqg1XkhiSlmgPBoFUb3hAHglaR10UOMMPfpCKtlLC4RofuWnSW2+yiPR+SzkE2xv1yPSGSIACp7tPqlQGoDmJ/UD2M3uGtB/gL2ng" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJkYuGO7HJ7/XF+3XOynWf8MHT9s0v5U02DeOKA1KaEHDuD8pxjf0qqeL+m4GZPkPp/Svpty7actJO4BX7/acdus5vA/Om/s2O9XKIya9rhBoP0N7zCnRIZsxkBQ+AcF9juJMnYpOf1DlqG8hsRId" ] }, "ContentHeaders": { - "Content-Length": [ "5969" ], + "Content-Length": [ "4421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t2\",\r\n \"name\": \"redmond/t2\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"t2\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"a0d9e190-015b-4fde-93b6-38a973038130\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:37:01.5215952Z\",\r\n \"endTime\": \"2020-02-20T03:37:41.7109467Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"dc6b29be-b83c-4a2c-ac71-31d20750fb0c\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:37:41.7265766Z\",\r\n \"endTime\": \"2020-02-20T03:38:21.9027484Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-20T03:37:01.4747141Z\",\r\n \"startTime\": \"2020-02-20T03:37:01.505965Z\",\r\n \"endTime\": \"2020-02-20T03:38:31.9344923Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t3\",\r\n \"name\": \"redmond/t3\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"t3\",\r\n \"status\": \"Canceled\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"31d1ee7b-f74e-4eef-b134-72cd24b4bf42\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Failed\",\r\n \"reason\": \"Migration failed because time out in 20 seconds during cancel migraion job.\",\r\n \"startTime\": \"2020-02-20T03:42:53.6408054Z\",\r\n \"endTime\": \"2020-02-20T03:43:55.8500961Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"67367d5c-fd9f-44e4-9998-caf8677e3b8a\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Canceled\",\r\n \"endTime\": \"2020-02-20T03:43:55.8500961Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-20T03:42:53.6095533Z\",\r\n \"startTime\": \"2020-02-20T03:42:53.625182Z\",\r\n \"endTime\": \"2020-02-20T03:43:55.8657214Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/test\",\r\n \"name\": \"redmond/test\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"test\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"578c0e4a-631f-4a78-bdbc-547949ebcefe\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:17:24.0393848Z\",\r\n \"endTime\": \"2020-02-20T03:18:08.8117947Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"e5775f7f-3132-4932-8881-bd7375c868a4\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:18:08.8274233Z\",\r\n \"endTime\": \"2020-02-20T03:18:49.0493824Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-20T03:17:23.9612523Z\",\r\n \"startTime\": \"2020-02-20T03:17:23.9925058Z\",\r\n \"endTime\": \"2020-02-20T03:18:59.0528861Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration\",\r\n \"name\": \"redmond/TestNewDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestNewDiskMigration\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"54fca5de-5af1-403c-9f27-86b06d97c5b6\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2022-03-17T23:55:45.7092199Z\",\r\n \"endTime\": \"2022-03-17T23:56:38.5500258Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-17T23:55:45.6467223Z\",\r\n \"startTime\": \"2022-03-17T23:55:45.6935951Z\",\r\n \"endTime\": \"2022-03-17T23:56:48.5866715Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1\",\r\n \"name\": \"redmond/TestNewDiskMigration1\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestNewDiskMigration1\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"463cb449-a0ae-4414-b378-2d6303fbeca6\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Skipped\",\r\n \"reason\": \"Migrate disk /subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2 skipped because migrate target is not reachable by this disk\",\r\n \"startTime\": \"2022-03-21T21:04:04.4487178Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-21T21:04:04.4330971Z\",\r\n \"startTime\": \"2022-03-21T21:04:04.4330971Z\",\r\n \"endTime\": \"2022-03-21T21:04:14.9753904Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration\",\r\n \"name\": \"redmond/TestStopDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestStopDiskMigration\",\r\n \"status\": \"Canceled\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"1aa5ce26-5a14-49f1-ade2-a63234be237a\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Canceled\",\r\n \"startTime\": \"2022-03-18T00:13:26.561527Z\",\r\n \"endTime\": \"2022-03-18T00:13:27.9027748Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-18T00:13:26.5302764Z\",\r\n \"startTime\": \"2022-03-18T00:13:26.5459122Z\",\r\n \"endTime\": \"2022-03-21T21:31:23.0093046Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-01+1": { + "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "144" ], - "x-ms-client-request-id": [ "9f7fe7a4-ed2f-484b-9801-a335af8cec37" ], + "x-ms-unique-id": [ "1504" ], + "x-ms-client-request-id": [ "c47284b5-248a-4d25-b641-a042cb6ab327" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,36 +66,38 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "37955005-c0a3-41fa-a562-fdd2bef9cf78" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14949" ], - "x-ms-request-id": [ "37955005-c0a3-41fa-a562-fdd2bef9cf78" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T103443Z:37955005-c0a3-41fa-a562-fdd2bef9cf78" ], + "x-ms-correlation-request-id": [ "fdb6fb65-fb23-4fe8-abf0-0689c597e710" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13857" ], + "x-ms-request-id": [ "fdb6fb65-fb23-4fe8-abf0-0689c597e710" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213940Z:fdb6fb65-fb23-4fe8-abf0-0689c597e710" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 10:34:43 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXhz3NDKG1VZUuzIBx49DkILM7UtyPFLUrnhk/ZQ9EONWsc5B8Hkiw6tvaFhe0B00rjDEfZAlzHKaDfWeiNnqozWSKx34idSSNtywnYJUmuHGKkDwTw8hF2yKoNW7LuZlKSn5wkTKGeBpnjseP6W8" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnsmxdbceVf0RxVC9QeNCd0BBNcaji/4PUyL3BtLnvvEpfCZPGvflN+WssFgtbSALPAn+ZZvlMDQ6j42VNMGLDUavkl+Axhd6E3kfRgLkwj1bzUqnmJjfVnFJCCWBJgMFs8aRXyAhL84fCZYLVKz4" ] }, "ContentHeaders": { - "Content-Length": [ "5969" ], + "Content-Length": [ "4421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t2\",\r\n \"name\": \"redmond/t2\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"t2\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"a0d9e190-015b-4fde-93b6-38a973038130\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:37:01.5215952Z\",\r\n \"endTime\": \"2020-02-20T03:37:41.7109467Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"dc6b29be-b83c-4a2c-ac71-31d20750fb0c\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:37:41.7265766Z\",\r\n \"endTime\": \"2020-02-20T03:38:21.9027484Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-20T03:37:01.4747141Z\",\r\n \"startTime\": \"2020-02-20T03:37:01.505965Z\",\r\n \"endTime\": \"2020-02-20T03:38:31.9344923Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t3\",\r\n \"name\": \"redmond/t3\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"t3\",\r\n \"status\": \"Canceled\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"31d1ee7b-f74e-4eef-b134-72cd24b4bf42\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Failed\",\r\n \"reason\": \"Migration failed because time out in 20 seconds during cancel migraion job.\",\r\n \"startTime\": \"2020-02-20T03:42:53.6408054Z\",\r\n \"endTime\": \"2020-02-20T03:43:55.8500961Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"67367d5c-fd9f-44e4-9998-caf8677e3b8a\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Canceled\",\r\n \"endTime\": \"2020-02-20T03:43:55.8500961Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-20T03:42:53.6095533Z\",\r\n \"startTime\": \"2020-02-20T03:42:53.625182Z\",\r\n \"endTime\": \"2020-02-20T03:43:55.8657214Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/test\",\r\n \"name\": \"redmond/test\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"test\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"578c0e4a-631f-4a78-bdbc-547949ebcefe\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:17:24.0393848Z\",\r\n \"endTime\": \"2020-02-20T03:18:08.8117947Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"e5775f7f-3132-4932-8881-bd7375c868a4\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:18:08.8274233Z\",\r\n \"endTime\": \"2020-02-20T03:18:49.0493824Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-20T03:17:23.9612523Z\",\r\n \"startTime\": \"2020-02-20T03:17:23.9925058Z\",\r\n \"endTime\": \"2020-02-20T03:18:59.0528861Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration\",\r\n \"name\": \"redmond/TestNewDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestNewDiskMigration\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"54fca5de-5af1-403c-9f27-86b06d97c5b6\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2022-03-17T23:55:45.7092199Z\",\r\n \"endTime\": \"2022-03-17T23:56:38.5500258Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-17T23:55:45.6467223Z\",\r\n \"startTime\": \"2022-03-17T23:55:45.6935951Z\",\r\n \"endTime\": \"2022-03-17T23:56:48.5866715Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1\",\r\n \"name\": \"redmond/TestNewDiskMigration1\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestNewDiskMigration1\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"463cb449-a0ae-4414-b378-2d6303fbeca6\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Skipped\",\r\n \"reason\": \"Migrate disk /subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2 skipped because migrate target is not reachable by this disk\",\r\n \"startTime\": \"2022-03-21T21:04:04.4487178Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-21T21:04:04.4330971Z\",\r\n \"startTime\": \"2022-03-21T21:04:04.4330971Z\",\r\n \"endTime\": \"2022-03-21T21:04:14.9753904Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration\",\r\n \"name\": \"redmond/TestStopDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestStopDiskMigration\",\r\n \"status\": \"Canceled\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"1aa5ce26-5a14-49f1-ade2-a63234be237a\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Canceled\",\r\n \"startTime\": \"2022-03-18T00:13:26.561527Z\",\r\n \"endTime\": \"2022-03-18T00:13:27.9027748Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-18T00:13:26.5302764Z\",\r\n \"startTime\": \"2022-03-18T00:13:26.5459122Z\",\r\n \"endTime\": \"2022-03-21T21:31:23.0093046Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t2?api-version=2021-04-01+2": { + "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t2?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "145" ], - "x-ms-client-request-id": [ "78eecb52-f88d-4f06-a1c2-2a53a5619472" ], + "x-ms-unique-id": [ "1505" ], + "x-ms-client-request-id": [ "629bf7d7-b0c9-44d6-b441-526a72c2bb11" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -104,36 +109,38 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "98368190-eb5a-4ed0-9477-9b771034eb75" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14948" ], - "x-ms-request-id": [ "98368190-eb5a-4ed0-9477-9b771034eb75" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T103443Z:98368190-eb5a-4ed0-9477-9b771034eb75" ], + "x-ms-correlation-request-id": [ "9e27d75c-f0ef-4921-9566-c09025e25e20" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13856" ], + "x-ms-request-id": [ "9e27d75c-f0ef-4921-9566-c09025e25e20" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213940Z:9e27d75c-f0ef-4921-9566-c09025e25e20" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 10:34:43 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk5rHXaCvoKRFAr3lMLSE2CdRQJI3MrmWd1pvlGTmznlsKBY2NJ06Baeiq+TAX7ZChnHtk9tM0nZu2XV/pxO25CFuc2SCCNzx3gO5wAJcarcXoFTkSTJ1LOYyuZ394376tIC1CIq2YL/mIbbDDiZB" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoHOrD6OFMtYUOLhK8YXm3xKPR/NnZmlXDihM9PGUodDaQ0huMOyRCCSgr4zhVyy8rsl7x+p3zonF0bxXNjdJ3oDKn6f289JkOPA7kdIVadMi/duRvHkrbFvR9vIz139lqKvETu0vfqTxLuf/Iwhx" ] }, "ContentHeaders": { - "Content-Length": [ "1804" ], + "Content-Length": [ "1293" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t2\",\r\n \"name\": \"redmond/t2\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"t2\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"a0d9e190-015b-4fde-93b6-38a973038130\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:37:01.5215952Z\",\r\n \"endTime\": \"2020-02-20T03:37:41.7109467Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"dc6b29be-b83c-4a2c-ac71-31d20750fb0c\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:37:41.7265766Z\",\r\n \"endTime\": \"2020-02-20T03:38:21.9027484Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-20T03:37:01.4747141Z\",\r\n \"startTime\": \"2020-02-20T03:37:01.505965Z\",\r\n \"endTime\": \"2020-02-20T03:38:31.9344923Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}" + "Content": "{\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration\",\r\n \"name\": \"redmond/TestNewDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestNewDiskMigration\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"54fca5de-5af1-403c-9f27-86b06d97c5b6\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2022-03-17T23:55:45.7092199Z\",\r\n \"endTime\": \"2022-03-17T23:56:38.5500258Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-17T23:55:45.6467223Z\",\r\n \"startTime\": \"2022-03-17T23:55:45.6935951Z\",\r\n \"endTime\": \"2022-03-17T23:56:48.5866715Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", + "isContentBase64": false } }, - "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t2?api-version=2021-04-01+3": { + "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t2?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "146" ], - "x-ms-client-request-id": [ "9f7498ce-b1f5-4356-a12b-79cf1ec468df" ], + "x-ms-unique-id": [ "1506" ], + "x-ms-client-request-id": [ "1ac82d9e-3fdc-4476-bbbb-3ed993ad469e" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -145,22 +152,23 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "f12ed9e1-39d6-4795-8708-e5ef1ee996e1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14947" ], - "x-ms-request-id": [ "f12ed9e1-39d6-4795-8708-e5ef1ee996e1" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T103443Z:f12ed9e1-39d6-4795-8708-e5ef1ee996e1" ], + "x-ms-correlation-request-id": [ "6075c13d-cf94-41b5-a79d-0ececb79a144" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13855" ], + "x-ms-request-id": [ "6075c13d-cf94-41b5-a79d-0ececb79a144" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213940Z:6075c13d-cf94-41b5-a79d-0ececb79a144" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 10:34:43 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvymLnNdw6eYZGCixn852Jw2yLqVsKk5jGkLVilAun6JTJO589+lLccfm+lK7OgayLREVMA/TOiSbBFAzZg/e0jRQVlQCGgFOYSO2EQyrwPpoCeKgyLyJi5TzvMv6HfM5ZXtJRDFhokKGbKARY7l/v" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvw0F+WFGJcMWB8KPitOejSYdj6i7yR6LXt5BP1ABnfg+GdYqs9Yh9bJQB8b4In7IqsXUsIRled1UKFgV8WLDulRy5DB5Sx/KxGXiyAXal4UHbe6Hkwxa8eg37LeBWKP2UQfAc0iZ2SWbg7ZlByXS5" ] }, "ContentHeaders": { - "Content-Length": [ "1804" ], + "Content-Length": [ "1293" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/t2\",\r\n \"name\": \"redmond/t2\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"t2\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"a0d9e190-015b-4fde-93b6-38a973038130\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:37:01.5215952Z\",\r\n \"endTime\": \"2020-02-20T03:37:41.7109467Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"dc6b29be-b83c-4a2c-ac71-31d20750fb0c\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2020-02-20T03:37:41.7265766Z\",\r\n \"endTime\": \"2020-02-20T03:38:21.9027484Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-20T03:37:01.4747141Z\",\r\n \"startTime\": \"2020-02-20T03:37:01.505965Z\",\r\n \"endTime\": \"2020-02-20T03:38:31.9344923Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}" + "Content": "{\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration\",\r\n \"name\": \"redmond/TestNewDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestNewDiskMigration\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"54fca5de-5af1-403c-9f27-86b06d97c5b6\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Succeeded\",\r\n \"startTime\": \"2022-03-17T23:55:45.7092199Z\",\r\n \"endTime\": \"2022-03-17T23:56:38.5500258Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_4\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-17T23:55:45.6467223Z\",\r\n \"startTime\": \"2022-03-17T23:55:45.6935951Z\",\r\n \"endTime\": \"2022-03-17T23:56:48.5866715Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Get-AzsPlatformImage.Tests.ps1 b/src/Azs.Compute.Admin/test/Get-AzsPlatformImage.Tests.ps1 new file mode 100644 index 00000000..c05a7c72 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Get-AzsPlatformImage.Tests.ps1 @@ -0,0 +1,26 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsPlatformImage.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsPlatformImage' { + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Azs.Compute.Admin/test/Get-AzsVMExtension.Tests.ps1 b/src/Azs.Compute.Admin/test/Get-AzsVMExtension.Tests.ps1 new file mode 100644 index 00000000..54ab774c --- /dev/null +++ b/src/Azs.Compute.Admin/test/Get-AzsVMExtension.Tests.ps1 @@ -0,0 +1,26 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsVMExtension.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsVMExtension' { + It 'List' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Get' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'GetViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Azs.Compute.Admin/test/New-AzsComputeQuota.Tests.ps1 b/src/Azs.Compute.Admin/test/New-AzsComputeQuota.Tests.ps1 new file mode 100644 index 00000000..966eb639 --- /dev/null +++ b/src/Azs.Compute.Admin/test/New-AzsComputeQuota.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzsComputeQuota.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'New-AzsComputeQuota' { + It 'CreateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'Create' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json index 0fbd2625..649fb9e8 100644 --- a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json @@ -1,16 +1,17 @@ { - "New-AzsDiskMigrationJob+[NoContext]+TestNewDiskMigrationJob+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01+1": { + "New-AzsDiskMigrationJob+[NoContext]+TestNewDiskMigrationJob+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "166" ], - "x-ms-client-request-id": [ "25148df3-7099-49c9-9df4-9f5f49d8770f" ], - "CommandName": [ "Get-AzsDisk" ], + "x-ms-unique-id": [ "1507" ], + "x-ms-client-request-id": [ "24ab9562-fdee-4e91-8080-a2ab3e99dfe7" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], "FullCommandName": [ "Get-AzsDisk_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,41 +23,36 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "d74e3feb-3887-417e-b022-2aaf55884ead" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14950" ], - "x-ms-request-id": [ "d74e3feb-3887-417e-b022-2aaf55884ead" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T113135Z:d74e3feb-3887-417e-b022-2aaf55884ead" ], + "x-ms-correlation-request-id": [ "90748fcd-b24e-443b-be29-0d30e2d7ad23" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13854" ], + "x-ms-request-id": [ "90748fcd-b24e-443b-be29-0d30e2d7ad23" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213941Z:90748fcd-b24e-443b-be29-0d30e2d7ad23" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:31:34 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4sYztVEYFmfYT2y0ekyHDovh4P0++XT2linHplRAAymoA8hXTSuqnpYWjKUQ2F3U6uPW8EcJ5yuGjGoK24pe3FCvm7YJC31oF4bGy6UkPeqPbsaOJ4zDoa+OUp9qHuslRQP5BJUPnPhksrjrxhTG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkMMCHo4vM5NDPXiCqkhdbG5lGA+mMS3p+TB0c698lIlgiTgZl6kCdY0J0rGP2RqWybKx/X2dCGgC/GULveGg+ML4gJGqFVIph8rpifUn8cL00hDTW7CV+yR3tEByfBddi0r2oes+huw90Z1Ncsey" ] }, "ContentHeaders": { - "Content-Length": [ "1655" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/disks/afdd2d42-586c-4358-b232-e036182ef32c\",\r\n \"name\": \"redmond/afdd2d42-586c-4358-b232-e036182ef32c\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 32,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/TESTRG1/providers/Microsoft.Compute/Disks/diskt1\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/disks/d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\",\r\n \"name\": \"redmond/d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 32,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/TESTRG1/providers/Microsoft.Compute/Disks/disk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"name\": \"redmond/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationSourceUri\": \"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New Virtual Hard Disk.vhd\",\r\n \"creationOption\": \"Import\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "New-AzsDiskMigrationJob+[NoContext]+TestNewDiskMigrationJob+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-04-01+2": { + "New-AzsDiskMigrationJob+[NoContext]+TestNewDiskMigrationJob+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-09-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-04-01", - "Content": "[\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"status\": \"Unattached\"\r\n }\r\n },\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"status\": \"Unattached\"\r\n }\r\n }\r\n]", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-09-01", + "Content": "[\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n }\r\n]", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "167" ], - "x-ms-client-request-id": [ "79735b9a-c43e-4bd7-b282-44a7261db48c" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsDiskMigrationJob" ], - "FullCommandName": [ "New-AzsDiskMigrationJob_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "497" ] + "Content-Length": [ "250" ] } }, "Response": { @@ -65,22 +61,23 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "3ea88c93-6a15-4193-aac9-51161ae32bbe" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], - "x-ms-request-id": [ "3ea88c93-6a15-4193-aac9-51161ae32bbe" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T113135Z:3ea88c93-6a15-4193-aac9-51161ae32bbe" ], + "x-ms-correlation-request-id": [ "6a09a0a7-1611-4da6-bb5f-ba3dd4275e60" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1037" ], + "x-ms-request-id": [ "6a09a0a7-1611-4da6-bb5f-ba3dd4275e60" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213941Z:6a09a0a7-1611-4da6-bb5f-ba3dd4275e60" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:31:34 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIvHdLZSRQPha4ee1t+r0mhyS85nICSRU3Ozdt9CKfjTKQviUPiANYEWfO+JYzuvjBb/QLJl8WJnu36MBLKq1PbGI0PUzbcag2QZBdLsjnK4mecSUhFt9ulj0C2l1whLw+1M+UagqKM2wIXrRQYUo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6cYUSnhKOHKsqlrb2VOjSHma3kFmGyMw0Wus13lFMb2jEDemLpqT++dcgLeKJ8CbTE16i2XeGu0zBuyxkTmvYlXTRQLYGi8frBSOHjfugFRlI9hUK3gp+QkwH55E2xDjrUB9hDIDlHHZFkxXtLa8" ] }, "ContentHeaders": { - "Content-Length": [ "1535" ], + "Content-Length": [ "1456" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration\",\r\n \"name\": \"redmond/TestNewDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestNewDiskMigration\",\r\n \"status\": \"Pending\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"479a7a1a-60f9-430f-bda4-a47a95eb65c9\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Pending\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"82b9af9b-302b-44a3-b459-713e8ddb1a1f\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Pending\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-26T11:31:35.5539047Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}" + "Content": "{\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration\",\r\n \"name\": \"redmond/TestNewDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestNewDiskMigration\",\r\n \"status\": \"Succeeded\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"463cb449-a0ae-4414-b378-2d6303fbeca6\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Skipped\",\r\n \"reason\": \"Migrate disk /subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2 skipped because migrate target is not reachable by this disk\",\r\n \"startTime\": \"2022-03-21T21:04:04.4487178Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-21T21:04:04.4330971Z\",\r\n \"startTime\": \"2022-03-21T21:04:04.4330971Z\",\r\n \"endTime\": \"2022-03-21T21:04:14.9753904Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Remove-AzsComputeQuota.Tests.ps1 b/src/Azs.Compute.Admin/test/Remove-AzsComputeQuota.Tests.ps1 new file mode 100644 index 00000000..f085c3d0 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Remove-AzsComputeQuota.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzsComputeQuota.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzsComputeQuota' { + It 'Delete' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Azs.Compute.Admin/test/Remove-AzsPlatformImage.Tests.ps1 b/src/Azs.Compute.Admin/test/Remove-AzsPlatformImage.Tests.ps1 new file mode 100644 index 00000000..00dbcea1 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Remove-AzsPlatformImage.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzsPlatformImage.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzsPlatformImage' { + It 'Delete' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Azs.Compute.Admin/test/Remove-AzsVMExtension.Tests.ps1 b/src/Azs.Compute.Admin/test/Remove-AzsVMExtension.Tests.ps1 new file mode 100644 index 00000000..b3772ea8 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Remove-AzsVMExtension.Tests.ps1 @@ -0,0 +1,22 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzsVMExtension.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzsVMExtension' { + It 'Delete' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'DeleteViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Azs.Compute.Admin/test/Set-AzsComputeQuota.Tests.ps1 b/src/Azs.Compute.Admin/test/Set-AzsComputeQuota.Tests.ps1 new file mode 100644 index 00000000..afadef18 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Set-AzsComputeQuota.Tests.ps1 @@ -0,0 +1,18 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzsComputeQuota.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Set-AzsComputeQuota' { + It 'Update' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json index efa89a01..d783609f 100644 --- a/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json @@ -1,16 +1,17 @@ { - "Stop-AzsDiskMigrationJob+[NoContext]+TestStopDiskMigrationJob+$GET+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01+1": { + "Stop-AzsDiskMigrationJob+[NoContext]+TestStopDiskMigrationJob+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "169" ], - "x-ms-client-request-id": [ "b4b841c9-2834-4ae5-9ae7-5f42cd34d039" ], - "CommandName": [ "Get-AzsDisk" ], + "x-ms-unique-id": [ "1509" ], + "x-ms-client-request-id": [ "78c80294-f07c-44dc-a69c-0323eb1c9201" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], "FullCommandName": [ "Get-AzsDisk_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,41 +23,36 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "38e92b49-5050-4e11-8025-ee67a64ebd3d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14952" ], - "x-ms-request-id": [ "38e92b49-5050-4e11-8025-ee67a64ebd3d" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T113805Z:38e92b49-5050-4e11-8025-ee67a64ebd3d" ], + "x-ms-correlation-request-id": [ "afb619b1-5517-4d33-ba3c-e9934e5a660a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13853" ], + "x-ms-request-id": [ "afb619b1-5517-4d33-ba3c-e9934e5a660a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213942Z:afb619b1-5517-4d33-ba3c-e9934e5a660a" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:38:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvn2wdYQQqt2zOO36A2UaHksnoMFUYFKAMld+xfQ7AeAHtoEVl5chcQZ4uGqLSFNivN5w9LHGzn40lMrJ+MiLfWdqulavLubL+aL7Fz8VOg4CBhQzSoCFoJp4sax0Zwb11EHnyDhkX5uV4jw8WfZO5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuqDiH7jOrJp3RKbDaFiIK10dKEwahBs5xfKSj1wTqELStpW2JzmGTHX3FcsxJshK8UOUB+83LjvmYIkYUQH3eSoxTa8M+At6HGVOQvsbtO0R+fxZQaoSK/I3X1bKkJ9jTEksCx6KgJipVb7b+TRj" ] }, "ContentHeaders": { - "Content-Length": [ "1655" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/disks/afdd2d42-586c-4358-b232-e036182ef32c\",\r\n \"name\": \"redmond/afdd2d42-586c-4358-b232-e036182ef32c\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 32,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/TESTRG1/providers/Microsoft.Compute/Disks/diskt1\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/disks/d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\",\r\n \"name\": \"redmond/d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 32,\r\n \"userResourceId\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/resourceGroups/TESTRG1/providers/Microsoft.Compute/Disks/disk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}" + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"name\": \"redmond/307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationSourceUri\": \"https://computepestertests.blob.redmond.ext-n22r1006.masd.stbtest.microsoft.com/vhds/New Virtual Hard Disk.vhd\",\r\n \"creationOption\": \"Import\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false } }, - "Stop-AzsDiskMigrationJob+[NoContext]+TestStopDiskMigrationJob+$PUT+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_2\u0026api-version=2021-04-01+2": { + "Stop-AzsDiskMigrationJob+[NoContext]+TestStopDiskMigrationJob+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_2\u0026api-version=2021-09-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_2\u0026api-version=2021-04-01", - "Content": "[\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"status\": \"Unattached\"\r\n }\r\n },\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"status\": \"Unattached\"\r\n }\r\n }\r\n]", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_2\u0026api-version=2021-09-01", + "Content": "[\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"status\": \"Unattached\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n }\r\n]", + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "c645fb14-f24f-429c-94ff-f75ca406c8f4" ], - "CommandName": [ "Azs.Compute.Admin.internal\\New-AzsDiskMigrationJob" ], - "FullCommandName": [ "New-AzsDiskMigrationJob_Create" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "497" ] + "Content-Length": [ "250" ] } }, "Response": { @@ -65,36 +61,38 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "ec70d7ea-2d38-4e2e-af29-92fa4dd27fe0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], - "x-ms-request-id": [ "ec70d7ea-2d38-4e2e-af29-92fa4dd27fe0" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T113806Z:ec70d7ea-2d38-4e2e-af29-92fa4dd27fe0" ], + "x-ms-correlation-request-id": [ "033f4409-072d-409b-991d-6ac26bf73993" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1036" ], + "x-ms-request-id": [ "033f4409-072d-409b-991d-6ac26bf73993" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213942Z:033f4409-072d-409b-991d-6ac26bf73993" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:38:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbTmeJHbAuCI9VhRPIx/nSop9TKCYQUASK8eP2LYdBShWi+iMozPBCN5q+BdVjCxm0U6vwNCulxYKrZ/9A8zPFlXPlFS2lUFkcVM9Q+G8jaR63SBWsgenUAR+l1oc9vdzTawZtWJQ1Qh8vBxwDWKG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvj7696z0LjAvHhhM2nLSatt0Y88+nIQOnn6NvZ9G1jLuNtgj0zsQ5bqzP22bxij7n//kn2B1dkfBwcf7YTngd2TWfL8qCRK4jU9zGvzq5Ss3gDufQgXYl4Pc15Y51+qcVJK3d105IwuR8r/V09XpI" ] }, "ContentHeaders": { - "Content-Length": [ "1538" ], + "Content-Length": [ "1293" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration\",\r\n \"name\": \"redmond/TestStopDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestStopDiskMigration\",\r\n \"status\": \"Pending\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"5fe10f06-74f1-4063-b3fa-1d9ade60f301\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Pending\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"b465364e-cdf9-4492-b1aa-6c6721ef097c\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Pending\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-26T11:38:06.0547291Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}" + "Content": "{\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration\",\r\n \"name\": \"redmond/TestStopDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestStopDiskMigration\",\r\n \"status\": \"Canceled\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"1aa5ce26-5a14-49f1-ade2-a63234be237a\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Canceled\",\r\n \"startTime\": \"2022-03-18T00:13:26.561527Z\",\r\n \"endTime\": \"2022-03-18T00:13:27.9027748Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-18T00:13:26.5302764Z\",\r\n \"startTime\": \"2022-03-18T00:13:26.5459122Z\",\r\n \"endTime\": \"2022-03-21T21:31:23.0093046Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}", + "isContentBase64": false } }, - "Stop-AzsDiskMigrationJob+[NoContext]+TestStopDiskMigrationJob+$POST+https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration/Cancel?api-version=2021-04-01+3": { + "Stop-AzsDiskMigrationJob+[NoContext]+TestStopDiskMigrationJob+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskMigrationJobs/TestStopDiskMigration/cancel?api-version=2021-09-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration/Cancel?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskMigrationJobs/TestStopDiskMigration/cancel?api-version=2021-09-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "171" ], - "x-ms-client-request-id": [ "04aaee02-0d3d-445d-9198-2f70a3f39998" ], + "x-ms-unique-id": [ "1511" ], + "x-ms-client-request-id": [ "74700c4b-09b0-44e2-8c01-0ec1420bd7f9" ], "CommandName": [ "Stop-AzsDiskMigrationJob" ], "FullCommandName": [ "Stop-AzsDiskMigrationJob_Cancel" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -106,22 +104,23 @@ "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ "00000000-0000-0000-0000-000000000000_0" ], - "x-ms-correlation-request-id": [ "944c5c8f-f7b5-44cc-be88-03944290a3e4" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], - "x-ms-request-id": [ "944c5c8f-f7b5-44cc-be88-03944290a3e4" ], - "x-ms-routing-request-id": [ "REDMOND:20200226T113806Z:944c5c8f-f7b5-44cc-be88-03944290a3e4" ], + "x-ms-correlation-request-id": [ "fbedacb2-165d-4d83-b3ea-e42cb9c52a22" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1163" ], + "x-ms-request-id": [ "fbedacb2-165d-4d83-b3ea-e42cb9c52a22" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213942Z:fbedacb2-165d-4d83-b3ea-e42cb9c52a22" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:38:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRIdAx0+xWFP2H0AWFjo3IB5yAelCTar6NPpHkvRpVCqKd1/d7hC56DpG8QHqGFHmlA5q7vAdc5ZAoZww77RgBEHTjAmDP79x0R1LTZsD+swIORRI9986j8cGQ8+YqD8SACSqjOCel5Ft4QJpn4Y+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLv9FApLDA+dkCrOtjJM2E+WmHsShaDje9Kg5Z+wO28Pz6m8jfB1kIj21cDPdGp+5XC2HLyVsYvrgOiJRgdTjo4nLIH5bRgV06Ro1+7Oqi7cGWRQb6PuWfD86e6gfVj6uBV/5Fhaz0shhCuiR7nwQ" ] }, "ContentHeaders": { - "Content-Length": [ "2121" ], + "Content-Length": [ "1293" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration\",\r\n \"name\": \"redmond/TestStopDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestStopDiskMigration\",\r\n \"status\": \"Canceled\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"5fe10f06-74f1-4063-b3fa-1d9ade60f301\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Skipped\",\r\n \"reason\": \"Migrate disk d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8 skipped because other migration of this disk not finished. ConflictSubTask:47774498-6bc7-4ce2-98ca-738739ded2fc\",\r\n \"startTime\": \"2020-02-26T11:38:06.0859894Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"d8a99b2a-d936-4b8f-8bc3-f80d7a34f0b8\"\r\n }\r\n },\r\n {\r\n \"migrationSubTaskId\": \"b465364e-cdf9-4492-b1aa-6c6721ef097c\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Skipped\",\r\n \"reason\": \"Migrate disk afdd2d42-586c-4358-b232-e036182ef32c skipped because other migration of this disk not finished. ConflictSubTask:31d1ee7b-f74e-4eef-b134-72cd24b4bf42\",\r\n \"startTime\": \"2020-02-26T11:38:06.1016107Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"afdd2d42-586c-4358-b232-e036182ef32c\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2020-02-26T11:38:06.0547291Z\",\r\n \"startTime\": \"2020-02-26T11:38:06.0703604Z\",\r\n \"endTime\": \"2020-02-26T11:38:06.2891133Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}" + "Content": "{\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration\",\r\n \"name\": \"redmond/TestStopDiskMigration\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/diskmigrationjobs\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"migrationId\": \"TestStopDiskMigration\",\r\n \"status\": \"Canceled\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"1aa5ce26-5a14-49f1-ade2-a63234be237a\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Canceled\",\r\n \"startTime\": \"2022-03-18T00:13:26.561527Z\",\r\n \"endTime\": \"2022-03-18T00:13:27.9027748Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"targetDiskStateForMigration\": \"Unattached\",\r\n \"diskId\": \"307e6436-f964-4a99-8a5b-c2f0e039f298\",\r\n \"progress\": \"Unknown\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2022-03-18T00:13:26.5302764Z\",\r\n \"startTime\": \"2022-03-18T00:13:26.5459122Z\",\r\n \"endTime\": \"2022-03-21T21:39:42.8777842Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}", + "isContentBase64": false } } } \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json new file mode 100644 index 00000000..7ad549a7 --- /dev/null +++ b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json @@ -0,0 +1,314 @@ +{ + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1512" ], + "x-ms-client-request-id": [ "d8d93384-ae06-4386-b8e2-8374be1ea6ac" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "96b8e020-352d-4495-b62a-24dd7c0b7a3f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13852" ], + "x-ms-request-id": [ "96b8e020-352d-4495-b62a-24dd7c0b7a3f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213943Z:96b8e020-352d-4495-b62a-24dd7c0b7a3f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2xtG5GntQ/+7CJIvajINP+Zx/8jv//PtjKPHYrqFqw2BkUM46pTNJXyWFfSdKxqyFtzrWKDRUqww5mR/hjr3f81T4YsNX/mrvWbwmyRgc713HINcA/6wLluVPaqoEXZmqnqJQiaw2EAAn5EBbyMZ" ] + }, + "ContentHeaders": { + "Content-Length": [ "526" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"TenantSubscriptionLevel\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + }, + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01+2": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01", + "Content": "{\r\n \"globalFeatureState\": \"Disabled\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "40" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "737f2dcf-2992-409a-b587-56c5cdabec82" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1162" ], + "x-ms-request-id": [ "737f2dcf-2992-409a-b587-56c5cdabec82" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213943Z:737f2dcf-2992-409a-b587-56c5cdabec82" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbXGGf25X0gBEyCVeSkliwj2ThTgKHlHdFrvnForgaY34cuhdzpZhADpnpg4UiG9MvDiP1pANrxGFqJL3z2U3ZCB41FCh0UyGTCzw8AW18n+p227MWTXR8VdsCsseEXs8CrIIWe/E/jZiKARdgcXI" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1514" ], + "x-ms-client-request-id": [ "0001f217-166f-4b7a-a0ee-af1884c8ed00" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "0a655db2-cfca-41f1-95ea-67886f277ba8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13851" ], + "x-ms-request-id": [ "0a655db2-cfca-41f1-95ea-67886f277ba8" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213943Z:0a655db2-cfca-41f1-95ea-67886f277ba8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3sL+GqHPYISOC0EVeMCOHZAcMV6JVqC1CqqQ8eZZw60qq3F70FYoPhnw2hgfFNBXJRdpleYRGLFLQ4ENW87tJ+qTQOONLKN2bsriyEMqX0ZzwWWPhX5Zk0wLAWCUuOwCV1UnsxJ35wrSacUnwJP/" ] + }, + "ContentHeaders": { + "Content-Length": [ "511" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"Disabled\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + }, + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01+4": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01", + "Content": "{\r\n \"globalFeatureState\": \"Enabled\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "39" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "9f75bfff-3b0a-4d54-8eda-3df165620ac7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1161" ], + "x-ms-request-id": [ "9f75bfff-3b0a-4d54-8eda-3df165620ac7" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213943Z:9f75bfff-3b0a-4d54-8eda-3df165620ac7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3k27dP5sOaL94fgZTti9mQITLs2AnoGE/ws0qHtcgDHA56p7McUx6pc196O0fClruPY4l++OUr6E2E0FmepCsoiagKsKhEAc+34KSEyOyay/0XuIYlFTuwkvE6Q4jZQ0a3qNOdrvh3sOHXtRUFSm" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1516" ], + "x-ms-client-request-id": [ "77ac40b3-f09f-4e60-9a4e-63d094c1ed57" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "79852497-232c-420e-b273-da57ab31224b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13850" ], + "x-ms-request-id": [ "79852497-232c-420e-b273-da57ab31224b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213943Z:79852497-232c-420e-b273-da57ab31224b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZHFmcknFHsqa6rB0wT/WR3xGhfroGKKr3su14WSicE2FWqYXpRi3PCTydx3e0Q0rdCM7i4VAbiXXNB4D3EHQQlgC1+ix7mDP1/xyYFZ4KRFOoI187TxgL2GcTmKj2TEkNVGasy9XdfTm2F8y/7un" ] + }, + "ContentHeaders": { + "Content-Length": [ "510" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"Enabled\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + }, + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01+6": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01", + "Content": "{\r\n \"globalFeatureState\": \"TenantSubscriptionLevel\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "55" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "ef19345c-9589-4f00-b9f0-cd5b4665db8c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1160" ], + "x-ms-request-id": [ "ef19345c-9589-4f00-b9f0-cd5b4665db8c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213943Z:ef19345c-9589-4f00-b9f0-cd5b4665db8c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXN54Kq9rREw21Y/dIv3zZiCcBYVo3KDpyOH/1ZMTwcY2gpim4IWl3huk3lPxDXp1k5HxYWEDTqlsrVLN1GJuZdgBeVMlKdXVGtn7Phrb92GaD7pczz/uZc6FuMyjt2MJ+0ktq92WLRuKQYA+NvJQ" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1518" ], + "x-ms-client-request-id": [ "21403b04-8159-43d8-946f-6bed9a3f5f05" ], + "CommandName": [ "Get-AzsComputeFeature" ], + "FullCommandName": [ "Get-AzsComputeFeature_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "80bae120-b9d3-4261-b427-9030ddf4a049" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13849" ], + "x-ms-request-id": [ "80bae120-b9d3-4261-b427-9030ddf4a049" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213944Z:80bae120-b9d3-4261-b427-9030ddf4a049" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvL+0BBjMWpIadPvEwObnabHqTrPsOyb8SCtlPv5iiIyGxIMz2hjEoIW0pXbBstUJcGVFfVuSN9dim1XfEIPpex91HYtfU4nXYSpSH/yz5m+8HaAhVGVWX6Lj8uxyC+NYO/tgvDb1/fSnyCsYMcoA2" ] + }, + "ContentHeaders": { + "Content-Length": [ "526" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess\",\"name\":\"Microsoft.Compute.EmergencyVMAccess\",\"type\":\"Microsoft.Compute.Admin/locations/features\",\"location\":\"redmond\",\"properties\":{\"featureName\":\"Microsoft.Compute.EmergencyVMAccess\",\"globalFeatureSettings\":{\"globalFeatureState\":\"TenantSubscriptionLevel\"},\"enabledTenantSubscriptionIds\":[\"612d862b-243b-480c-8ebd-c233dff7bb2b\",\"1286a2e6-0566-41e6-8c45-59ecea6cb60e\"]}}", + "isContentBase64": false + } + }, + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$POST+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01+8": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01", + "Content": "{\r\n \"globalFeatureState\": \"TenantSubscriptionLevel\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "55" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "7e7032c2-c552-47f9-b524-0b990f4f626e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1159" ], + "x-ms-request-id": [ "7e7032c2-c552-47f9-b524-0b990f4f626e" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213944Z:7e7032c2-c552-47f9-b524-0b990f4f626e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPILA5E+A18ejY7FuM9B1kA/JKuVM3OhpwIJ1P6kRZ0o/nXyTNXIjeuEKJn2wzpLfJ/ROCTph2v5iDvAvu6vyKRLCW2+66tdtYcwX+Z+gMhWDBtUB97aghas0vm8nzzDniRfFLveL8mB2SVAEXSpJ" ] + }, + "ContentHeaders": { + "Content-Length": [ "0" ], + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Tests.ps1 b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Tests.ps1 new file mode 100644 index 00000000..55ddc9ea --- /dev/null +++ b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Tests.ps1 @@ -0,0 +1,35 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzsComputeGlobalFeatureSetting.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Update-AzsComputeGlobalFeatureSetting' { + It 'TestUpdateComputeGlobalFeatureSetting' -Skip:$('TestUpdateComputeGlobalFeatureSetting' -in $global:SkippedTests) { + $global:TestName = 'TestUpdateComputeGlobalFeatureSetting' + + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $originalSetting = $feature.GlobalFeatureSettingGlobalFeatureState + + Update-AzsComputeGlobalFeatureSetting -FeatureName Microsoft.Compute.EmergencyVMAccess -GlobalFeatureState Disabled -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature.GlobalFeatureSettingGlobalFeatureState | Should Be Disabled + + Update-AzsComputeGlobalFeatureSetting -FeatureName Microsoft.Compute.EmergencyVMAccess -GlobalFeatureState Enabled -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature.GlobalFeatureSettingGlobalFeatureState | Should Be Enabled + + Update-AzsComputeGlobalFeatureSetting -FeatureName Microsoft.Compute.EmergencyVMAccess -GlobalFeatureState TenantSubscriptionLevel -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature = Get-AzsComputeFeature -Name Microsoft.Compute.EmergencyVMAccess -Location $env.Location -SubscriptionId $env.SubscriptionId + $feature.GlobalFeatureSettingGlobalFeatureState | Should Be TenantSubscriptionLevel + + Update-AzsComputeGlobalFeatureSetting -FeatureName Microsoft.Compute.EmergencyVMAccess -GlobalFeatureState $originalSetting -Location $env.Location -SubscriptionId $env.SubscriptionId + } +} \ No newline at end of file diff --git a/src/Azs.Compute.Admin/test/env.json b/src/Azs.Compute.Admin/test/env.json index 7d651ebd..bb227dfb 100644 --- a/src/Azs.Compute.Admin/test/env.json +++ b/src/Azs.Compute.Admin/test/env.json @@ -1,6 +1,8 @@ { - "Tenant": "01884692-6d96-44fa-8c58-11b4e90fef19", - "SubscriptionId": "74c72bdc-d917-431c-a377-8ca80f4238a0", + "Tenant": "d669642b-89ec-466e-af2c-2ceab9fef685", + "SubscriptionId": "47b53730-e95d-4594-b843-d378bdff793a", "ResourceGroup": "testrg", - "Location": "northwest" + "Location": "redmond", + "VHDUri": "https://computepestertests.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/vhds/ComputeAdminPesterTestImage.vhd", + "TenantSubscriptionId": "95990F40-5F11-490D-B323-9317191D347A" } \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/custom/New-AzsContainerRegistryQuota.ps1 b/src/Azs.ContainerRegistry.Admin/custom/New-AzsContainerRegistryQuota.ps1 new file mode 100644 index 00000000..fbefe304 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/custom/New-AzsContainerRegistryQuota.ps1 @@ -0,0 +1,196 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Create or update an existing container registry quota. +.Description +Create or update an existing container registry quota. +.Example +PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistries 20 | ConvertTo-Json + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistries": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota +.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. + +QUOTAOBJECT : Container registry quota. + [CapacityPerRegistryInGiB ]: Storage capacity (GiB) of each registry. + [NumberOfRegistries ]: Total number of container registry accounts. +.Link +https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/new-azscontainerregistryquota +#> +function New-AzsContainerRegistryQuota { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota])] +[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('QuotaName')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [System.String] + # The name of the container registry quota. + ${Name}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.DefaultInfo(Script='(Get-AzLocation)[0].Location')] + [System.String] + # The name of Azure region. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota] + # Container registry quota. + # To construct, see NOTES section for QUOTAOBJECT properties and create a hash table. + ${QuotaObject}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.DefaultInfo(Script='100')] + [System.Int32] + # Storage capacity (GiB) of each registry. + ${CapacityPerRegistryInGiB}, + + [Parameter(ParameterSetName='CreateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.DefaultInfo(Script='20')] + [System.Int32] + # Total number of container registry accounts. + ${NumberOfRegistries}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.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 = @{ + Create = 'Azs.ContainerRegistry.Admin.private\New-AzsContainerRegistryQuota_Create'; + CreateExpanded = 'Azs.ContainerRegistry.Admin.private\New-AzsContainerRegistryQuota_CreateExpanded'; + } + if (('Create', 'CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('Location')) { + $PSBoundParameters['Location'] = (Get-AzLocation)[0].Location + } + if (('Create', 'CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { + $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('CapacityPerRegistryInGiB')) { + $PSBoundParameters['CapacityPerRegistryInGiB'] = 100 + } + if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('NumberOfRegistries')) { + $PSBoundParameters['NumberOfRegistries'] = 20 + } + $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 { + # Generated cmdlet does not support {prefix}/{name} for quota name, so extract the {name} part here + if ($PSBoundParameters.ContainsKey('Name')) + { + if ($null -ne $Name -and $Name.Contains('/')) + { + $PSBoundParameters['Name'] = $Name.Split("/")[-1] + } + + $params = @{} + if ($PSBoundParameters.ContainsKey('Location')){ + $params.Add('Location', $Location) + } + if ($PSBoundParameters.ContainsKey('SubscriptionId')){ + $params.Add('SubscriptionId', $SubscriptionId) + } + # Autorest generated code doesn't throw error in case resource already exists + $resource = Get-AzsContainerRegistryQuota -Name $PSBoundParameters['Name'] -ErrorAction SilentlyContinue @params + if ($null -ne $resource) { throw "$($MyInvocation.MyCommand): A ContainerRegistry quota with name $($PSBoundParameters['Name']) at location $($resource.Location) already exists" } + } + + Azs.ContainerRegistry.Admin.internal\New-AzsContainerRegistryQuota @PSBoundParameters + } +} diff --git a/src/Azs.ContainerRegistry.Admin/custom/Set-AzsContainerRegistryQuota.ps1 b/src/Azs.ContainerRegistry.Admin/custom/Set-AzsContainerRegistryQuota.ps1 new file mode 100644 index 00000000..785fcba9 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/custom/Set-AzsContainerRegistryQuota.ps1 @@ -0,0 +1,213 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Create or update an existing container registry quota. +.Description +Create or update an existing container registry quota. +.Example +PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistries 30 | ConvertTo-Json + +{ + "CapacityPerRegistryInGiB": 30, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistries": 30, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota +.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. + +QUOTAOBJECT : Container registry quota. + [CapacityPerRegistryInGiB ]: Storage capacity (GiB) of each registry. + [NumberOfRegistries ]: Total number of container registry accounts. +.Link +https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/set-azscontainerregistryquota +#> +function Set-AzsContainerRegistryQuota { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota])] +[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(Mandatory)] + [Alias('QuotaName')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [System.String] + # The name of the container registry quota. + ${Name}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.DefaultInfo(Script='(Get-AzLocation)[0].Location')] + [System.String] + # The name of Azure region. + ${Location}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota] + # Container registry quota. + # To construct, see NOTES section for QUOTAOBJECT properties and create a hash table. + ${QuotaObject}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [System.Int32] + # Storage capacity (GiB) of each registry. + ${CapacityPerRegistryInGiB}, + + [Parameter(ParameterSetName='UpdateExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [System.Int32] + # Total number of container registry accounts. + ${NumberOfRegistries}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.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 = @{ + Update = 'Azs.ContainerRegistry.Admin.private\Set-AzsContainerRegistryQuota_Update'; + UpdateExpanded = 'Azs.ContainerRegistry.Admin.private\Set-AzsContainerRegistryQuota_UpdateExpanded'; + } + if (('Update', 'UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('Location')) { + $PSBoundParameters['Location'] = (Get-AzLocation)[0].Location + } + 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) + $scriptCmd = {& $wrappedCmd @PSBoundParameters} + $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) + $steppablePipeline.Begin($PSCmdlet) + } catch { + throw + } +} + process { + $quotaName = $Name + + if ('QuotaObject' -eq $PsCmdlet.ParameterSetName) { + $quotaName = $QuotaObject.Name + } + + if ($null -ne $quotaName -and $quotaName.Contains('/')) { + $quotaName = $quotaName.Split("/")[-1] + } + + if ('QuotaObject' -eq $PsCmdlet.ParameterSetName) { + if ($PSBoundParameters.ContainsKey('CapacityPerRegistryInGiB')) { + $QuotaObject.CapacityPerRegistryInGiB = $CapacityPerRegistryInGiB + $null = $PSBoundParameters.Remove('CapacityPerRegistryInGiB') + } + + if ($PSBoundParameters.ContainsKey('NumberOfRegistries')) { + $QuotaObject.NumberOfRegistries = $NumberOfRegistries + $null = $PSBoundParameters.Remove('NumberOfRegistries') + } + + $PSBoundParameters['QuotaObject'] = $QuotaObject + } + else { + $params = @{} + + if ($PSBoundParameters.ContainsKey('Location')) { + $params.Add('Location', $Location) + } + if ($PSBoundParameters.ContainsKey('SubscriptionId')) { + $params.Add('SubscriptionId', $SubscriptionId) + } + + $quota = Get-AzsContainerRegistryQuota -Name $quotaName -ErrorAction SilentlyContinue @params + + if (-not $PSBoundParameters.ContainsKey('CapacityPerRegistryInGiB')) { + $PSBoundParameters['CapacityPerRegistryInGiB'] = $quota.CapacityPerRegistryInGiB + } + + if (-not $PSBoundParameters.ContainsKey('NumberOfRegistries')) { + $PSBoundParameters['NumberOfRegistries'] = $quota.NumberOfRegistries + } + } + + $PSBoundParameters['Name'] = $quotaName + + Azs.ContainerRegistry.Admin.internal\Set-AzsContainerRegistryQuota @PSBoundParameters + } +} diff --git a/src/Azs.ContainerRegistry.Admin/custom/Start-AzsContainerRegistrySetup.ps1 b/src/Azs.ContainerRegistry.Admin/custom/Start-AzsContainerRegistrySetup.ps1 new file mode 100644 index 00000000..31991a5f --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/custom/Start-AzsContainerRegistrySetup.ps1 @@ -0,0 +1,215 @@ + +# ---------------------------------------------------------------------------------- +# +# 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 +Invokes container registry certificate uploading and service deployment. +.Description +Invokes container registry certificate uploading and service deployment. +.Example +PS C:\> Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile $pfx_cert_path | ConvertTo-Json + +{ + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value", + "Name": "redmond/value", + "StatusUri": "https://containerregistrysetup.ascu.azs:4335/providers/Microsoft.ContainerRegistry.Setup/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup?api-version=2019-11-01-preview", + "Type": "Microsoft.ContainerRegistry.Setup/locations/setup" +} +.Example +PS C:\> Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile $pfx_cert_path | ConvertTo-Json + +Start-AzsContainerRegistrySetup : Container registry deployment is still running. It is not allowed to repeat deployment at this stage. +At line:1 char:1 ++ Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidOperation: ({ SubscriptionI...SetupProperty }:<>f__AnonymousType7`3) [Start-AzsContai...p_StartExpanded], Exception + + FullyQualifiedErrorId : AcrDeploymentStillRunning,Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Cmdlets.StartAzsContainerRegistrySetup_StartExpanded + +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistrySetupProperty +.Inputs +Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity +.Outputs +Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistrySetup +.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 + [CapacityName ]: The name of the capacity parameter. + [ConfigurationName ]: The name of the configuration. + [Id ]: Resource identity path + [Location ]: The name of Azure region. + [QuotaName ]: The name of the container registry quota. + [SubscriptionId ]: The ID of the target subscription. + +STARTSETUPREQUEST : Container registry setup properties. + [Password ]: Ssl certificate password. + [SslCertBase64 ]: Ssl certificate in base64 format. +.Link +https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/start-azscontainerregistrysetup +#> +function Start-AzsContainerRegistrySetup { +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistrySetup])] +[CmdletBinding(DefaultParameterSetName='StartExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] +param( + [Parameter(ParameterSetName='Start')] + [Parameter(ParameterSetName='StartExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.DefaultInfo(Script='(Get-AzLocation)[0].Location')] + [System.String] + # The name of Azure region. + ${Location}, + + [Parameter(ParameterSetName='Start')] + [Parameter(ParameterSetName='StartExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName='StartViaIdentity', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='StartViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter(ParameterSetName='Start', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName='StartViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistrySetupProperty] + # Container registry setup properties. + # To construct, see NOTES section for STARTSETUPREQUEST properties and create a hash table. + ${StartSetupRequest}, + + [Parameter(ParameterSetName='StartExpanded')] + [Parameter(ParameterSetName='StartViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [System.String] + # Input File for Certificate (Ssl certificate in base64 format.) + ${CertificateInputFile}, + + [Parameter(ParameterSetName='StartExpanded')] + [Parameter(ParameterSetName='StartViaIdentityExpanded')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Body')] + [System.Security.SecureString] + # Ssl certificate password. + ${Password}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.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 = @{ + Start = 'Azs.ContainerRegistry.Admin.private\Start-AzsContainerRegistrySetup_Start'; + StartExpanded = 'Azs.ContainerRegistry.Admin.private\Start-AzsContainerRegistrySetup_StartExpanded'; + StartViaIdentity = 'Azs.ContainerRegistry.Admin.private\Start-AzsContainerRegistrySetup_StartViaIdentity'; + StartViaIdentityExpanded = 'Azs.ContainerRegistry.Admin.private\Start-AzsContainerRegistrySetup_StartViaIdentityExpanded'; + } + if (('Start', 'StartExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('Location')) { + $PSBoundParameters['Location'] = (Get-AzLocation)[0].Location + } + if (('Start', 'StartExpanded') -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 { + + # Basic validation should be present in powershell for PFX file + if ($PSBoundParameters.ContainsKey(('CertificateInputFile'))) + { + if (!(Test-Path -Path $CertificateInputFile -PathType Leaf)) + { + throw "The specified ssl cert $CertificateInputFile does not exist." + } + + if ([IO.Path]::GetExtension($CertificateInputFile) -ne ".pfx" ) + { + throw "The specified file $CertificateInputFile is not cert with private key." + } + } +} + +end { + try { + $steppablePipeline.End() + } catch { + throw + } +} +} diff --git a/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md b/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md new file mode 100644 index 00000000..aba908d8 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md @@ -0,0 +1,43 @@ +--- +Module Name: Azs.ContainerRegistry.Admin +Module Guid: b0f249b1-a0b6-42a8-837c-d20801583692 +Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin +Help Version: 1.0.0.0 +Locale: en-US +--- + +# Azs.ContainerRegistry.Admin Module +## Description +Microsoft AzureStack PowerShell: ContainerRegistry Admin cmdlets + +## Azs.ContainerRegistry.Admin Cmdlets +### [Get-AzsContainerRegistry](Get-AzsContainerRegistry.md) +Returns a list of container registries present in all tenant location. + +### [Get-AzsContainerRegistryCapacity](Get-AzsContainerRegistryCapacity.md) +Returns container registry capacity property. + +### [Get-AzsContainerRegistryConfiguration](Get-AzsContainerRegistryConfiguration.md) +Returns the specified configuration details. + +### [Get-AzsContainerRegistryQuota](Get-AzsContainerRegistryQuota.md) +Returns the specified container registry quota. + +### [Get-AzsContainerRegistrySetupStatus](Get-AzsContainerRegistrySetupStatus.md) +Returns the status of the container registry setup. + +### [New-AzsContainerRegistryQuota](New-AzsContainerRegistryQuota.md) +Create or update an existing container registry quota. + +### [Remove-AzsContainerRegistryQuota](Remove-AzsContainerRegistryQuota.md) +Delete an existing container registry quota + +### [Set-AzsContainerRegistryConfiguration](Set-AzsContainerRegistryConfiguration.md) +Configure container registry overall configuration properties. + +### [Set-AzsContainerRegistryQuota](Set-AzsContainerRegistryQuota.md) +Create or update an existing container registry quota. + +### [Start-AzsContainerRegistrySetup](Start-AzsContainerRegistrySetup.md) +Invokes container registry certificate uploading and service deployment. + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md new file mode 100644 index 00000000..9537de65 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md @@ -0,0 +1,106 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/get-azscontainerregistry +schema: 2.0.0 +--- + +# Get-AzsContainerRegistry + +## SYNOPSIS +Returns a list of container registries present in all tenant location. + +## SYNTAX + +``` +Get-AzsContainerRegistry [-Location ] [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Returns a list of container registries present in all tenant location. + +## EXAMPLES + +### Example 1: Get List Azs Container Registries +```powershell +PS C:\> Get-AzsContainerRegistry | ConvertTo-Json + +{ + "CreationDate": "\/Date(1629160842681)\/", + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/registries/testregistry01", + "Location": "redmond", + "Name": "redmond/testregistry01", + "PropertiesName": "testregistry01", + "RegistryId": "/subscriptions/72b77b1b-3e43-4d00-8b5b-be6beceb7f3a/resourceGroups/acrtenanttestrg/providers/Microsoft.ContainerRegistry/registries/testregistry01", + "RegistrySizeInByte": 3011, + "ResourceGroup": "acrtenanttestrg", + "SubscriptionId": "72b77b1b-3e43-4d00-8b5b-be6beceb7f3a", + "Type": "Microsoft.ContainerRegistry.Admin/locations/registries" +} +``` + +Returns a list of container registries present in all tenant location. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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 + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistry + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md new file mode 100644 index 00000000..54119c5b --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md @@ -0,0 +1,161 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/get-azscontainerregistrycapacity +schema: 2.0.0 +--- + +# Get-AzsContainerRegistryCapacity + +## SYNOPSIS +Returns container registry capacity property. + +## SYNTAX + +### List (Default) +``` +Get-AzsContainerRegistryCapacity [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzsContainerRegistryCapacity -CapacityName [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzsContainerRegistryCapacity -InputObject [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Returns container registry capacity property. + +## EXAMPLES + +### Example 1: Get Azs ContainerRegistry Capacity +```powershell +PS C:\> Get-AzsContainerRegistryCapacity | ConvertTo-Json + +{ + "AllowPush": true, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/capacities/Default", + "MaximumCapacityInGiB": 2000, + "Name": "redmond/Default", + "RegistriesConsumptionInGiB": 0, + "Type": "Microsoft.ContainerRegistry.Admin/locations/capacities" +} +``` + +Returns container registry capacity property. + +## PARAMETERS + +### -CapacityName +The name of the capacity parameter. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: True +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: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryCapacity + +## NOTES + +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 + - `[CapacityName ]`: The name of the capacity parameter. + - `[ConfigurationName ]`: The name of the configuration. + - `[Id ]`: Resource identity path + - `[Location ]`: The name of Azure region. + - `[QuotaName ]`: The name of the container registry quota. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md new file mode 100644 index 00000000..c9a21130 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md @@ -0,0 +1,159 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/get-azscontainerregistryconfiguration +schema: 2.0.0 +--- + +# Get-AzsContainerRegistryConfiguration + +## SYNOPSIS +Returns the specified configuration details. + +## SYNTAX + +### List (Default) +``` +Get-AzsContainerRegistryConfiguration [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzsContainerRegistryConfiguration -Name [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzsContainerRegistryConfiguration -InputObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Returns the specified configuration details. + +## EXAMPLES + +### Example 1: Get AzsContainerRegistry Configuration +```powershell +PS C:\> Get-AzsContainerRegistryConfiguration | ConvertTo-Json + +{{ + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", + "MaximumCapacityInGiB": 2000, + "Name": "redmond/Default", + "Type": "Microsoft.ContainerRegistry.Admin/locations/configurations" +} +``` + +Returns the specified configuration details. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the configuration. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryConfiguration + +## NOTES + +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 + - `[CapacityName ]`: The name of the capacity parameter. + - `[ConfigurationName ]`: The name of the configuration. + - `[Id ]`: Resource identity path + - `[Location ]`: The name of Azure region. + - `[QuotaName ]`: The name of the container registry quota. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..75be33f7 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md @@ -0,0 +1,184 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/get-azscontainerregistryquota +schema: 2.0.0 +--- + +# Get-AzsContainerRegistryQuota + +## SYNOPSIS +Returns the specified container registry quota. + +## SYNTAX + +### List (Default) +``` +Get-AzsContainerRegistryQuota [-Location ] [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +### Get +``` +Get-AzsContainerRegistryQuota -Name [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzsContainerRegistryQuota -InputObject [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Returns the specified container registry quota. + +## EXAMPLES + +### Example 1: Get List Azs ContainerRegistry Quotas +```powershell +PS C:\> Get-AzsContainerRegistryQuota | ConvertTo-Json + +[ + { + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota", + "Name": "redmond/Default quota", + "NumberOfRegistries": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" + }, + { + "CapacityPerRegistryInGiB": 30, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistries": 30, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" + } +] +``` + +Returns a list of container registry quotas at the given location. + +### Example 2: Get Azs ContainerRegistry Quota by Name +```powershell +PS C:\> Get-AzsContainerRegistryQuota -Name "Default quota" | ConvertTo-Json + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota", + "Name": "redmond/Default quota", + "NumberOfRegistries": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} +``` + +Returns the specified container registry quota. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the container registry quota. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: QuotaName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get, List +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota + +## NOTES + +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 + - `[CapacityName ]`: The name of the capacity parameter. + - `[ConfigurationName ]`: The name of the configuration. + - `[Id ]`: Resource identity path + - `[Location ]`: The name of Azure region. + - `[QuotaName ]`: The name of the container registry quota. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md new file mode 100644 index 00000000..eea17710 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md @@ -0,0 +1,140 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/get-azscontainerregistrysetupstatus +schema: 2.0.0 +--- + +# Get-AzsContainerRegistrySetupStatus + +## SYNOPSIS +Returns the status of the container registry setup. + +## SYNTAX + +### Get (Default) +``` +Get-AzsContainerRegistrySetupStatus [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzsContainerRegistrySetupStatus -InputObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Returns the status of the container registry setup. + +## EXAMPLES + +### Example 1: Get Azs ContainerRegistry Setup Status +```powershell +PS C:\> (Get-AzsContainerRegistrySetupStatus).ToJsonString() + +{ + "id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value", + "name": "redmond/value", + "type": "Microsoft.ContainerRegistry.Setup/locations/setup", + "properties": { + "status": "Completed" + } +} +``` + +Returns the status of the container registry setup. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: Get +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.ISetupResult + +## NOTES + +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 + - `[CapacityName ]`: The name of the capacity parameter. + - `[ConfigurationName ]`: The name of the configuration. + - `[Id ]`: Resource identity path + - `[Location ]`: The name of Azure region. + - `[QuotaName ]`: The name of the container registry quota. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..5c8b64cc --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md @@ -0,0 +1,212 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/new-azscontainerregistryquota +schema: 2.0.0 +--- + +# New-AzsContainerRegistryQuota + +## SYNOPSIS +Create or update an existing container registry quota. + +## SYNTAX + +### CreateExpanded (Default) +``` +New-AzsContainerRegistryQuota -Name [-Location ] [-SubscriptionId ] + [-CapacityPerRegistryInGiB ] [-NumberOfRegistries ] [-DefaultProfile ] [-Confirm] + [-WhatIf] [] +``` + +### Create +``` +New-AzsContainerRegistryQuota -Name -QuotaObject [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Create or update an existing container registry quota. + +## EXAMPLES + +### Example 1: New Azs ContainerRegistry Quota +```powershell +PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistries 20 | ConvertTo-Json + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistries": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} +``` + +Create or update an existing container registry quota. + +## PARAMETERS + +### -CapacityPerRegistryInGiB +Storage capacity (GiB) of each registry. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: 100 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the container registry quota. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: QuotaName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NumberOfRegistries +Total number of container registry accounts. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: 20 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QuotaObject +Container registry quota. +To construct, see NOTES section for QUOTAOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota +Parameter Sets: Create +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota + +## NOTES + +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. + + +QUOTAOBJECT : Container registry quota. + - `[CapacityPerRegistryInGiB ]`: Storage capacity (GiB) of each registry. + - `[NumberOfRegistries ]`: Total number of container registry accounts. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..2d25c787 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md @@ -0,0 +1,193 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/remove-azscontainerregistryquota +schema: 2.0.0 +--- + +# Remove-AzsContainerRegistryQuota + +## SYNOPSIS +Delete an existing container registry quota + +## SYNTAX + +### Delete (Default) +``` +Remove-AzsContainerRegistryQuota -Name [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentity +``` +Remove-AzsContainerRegistryQuota -InputObject [-DefaultProfile ] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Delete an existing container registry quota + +## EXAMPLES + +### Example 1: Remove Azs ContainerRegistry Configuration +```powershell +PS C:\> Remove-AzsContainerRegistryConfiguration -ConfigurationName default + +``` + +Delete an existing container registry configuration. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the container registry quota. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: QuotaName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```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 +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +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 + - `[CapacityName ]`: The name of the capacity parameter. + - `[ConfigurationName ]`: The name of the configuration. + - `[Id ]`: Resource identity path + - `[Location ]`: The name of Azure region. + - `[QuotaName ]`: The name of the container registry quota. + - `[SubscriptionId ]`: The ID of the target subscription. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md new file mode 100644 index 00000000..fc00a4c3 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md @@ -0,0 +1,180 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/set-azscontainerregistryconfiguration +schema: 2.0.0 +--- + +# Set-AzsContainerRegistryConfiguration + +## SYNOPSIS +Configure container registry overall configuration properties. + +## SYNTAX + +### PutExpanded (Default) +``` +Set-AzsContainerRegistryConfiguration -MaximumCapacityInGiB [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### Put +``` +Set-AzsContainerRegistryConfiguration -ConfigurationObject + [-Location ] [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Configure container registry overall configuration properties. + +## EXAMPLES + +### Example 1: Set Azs ContainerRegistry Configuration +```powershell +PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 | ConvertTo-Json + +{ + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", + "MaximumCapacityInGiB": 30, + "Name": "redmond/Default", + "Type": "Microsoft.ContainerRegistry.Admin/locations/configurations" +} +``` + +Configure container registry overall configuration properties. + +## PARAMETERS + +### -ConfigurationObject +Container registry configuration property. +To construct, see NOTES section for CONFIGURATIONOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryConfiguration +Parameter Sets: Put +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaximumCapacityInGiB +Total storage capacity (GiB) which can used by the registry. + +```yaml +Type: System.Int32 +Parameter Sets: PutExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryConfiguration + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryConfiguration + +## NOTES + +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. + + +CONFIGURATIONOBJECT : Container registry configuration property. + - `MaximumCapacityInGiB `: Total storage capacity (GiB) which can used by the registry. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..daf08874 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md @@ -0,0 +1,212 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/set-azscontainerregistryquota +schema: 2.0.0 +--- + +# Set-AzsContainerRegistryQuota + +## SYNOPSIS +Create or update an existing container registry quota. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Set-AzsContainerRegistryQuota -Name [-Location ] [-SubscriptionId ] + [-CapacityPerRegistryInGiB ] [-NumberOfRegistries ] [-DefaultProfile ] [-Confirm] + [-WhatIf] [] +``` + +### Update +``` +Set-AzsContainerRegistryQuota -Name -QuotaObject [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Create or update an existing container registry quota. + +## EXAMPLES + +### Example 1: Set Azs ContainerRegistry Quota +```powershell +PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistries 30 | ConvertTo-Json + +{ + "CapacityPerRegistryInGiB": 30, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistries": 30, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} +``` + +Update an existing container registry quota. + +## PARAMETERS + +### -CapacityPerRegistryInGiB +Storage capacity (GiB) of each registry. + +```yaml +Type: System.Int32 +Parameter Sets: UpdateExpanded +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: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the container registry quota. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: QuotaName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NumberOfRegistries +Total number of container registry accounts. + +```yaml +Type: System.Int32 +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QuotaObject +Container registry quota. +To construct, see NOTES section for QUOTAOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota +Parameter Sets: Update +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistryQuota + +## NOTES + +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. + + +QUOTAOBJECT : Container registry quota. + - `[CapacityPerRegistryInGiB ]`: Storage capacity (GiB) of each registry. + - `[NumberOfRegistries ]`: Total number of container registry accounts. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md new file mode 100644 index 00000000..1b7c872c --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md @@ -0,0 +1,250 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/start-azscontainerregistrysetup +schema: 2.0.0 +--- + +# Start-AzsContainerRegistrySetup + +## SYNOPSIS +Invokes container registry certificate uploading and service deployment. + +## SYNTAX + +### StartExpanded (Default) +``` +Start-AzsContainerRegistrySetup [-Location ] [-SubscriptionId ] + [-CertificateInputFile ] [-Password ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### Start +``` +Start-AzsContainerRegistrySetup -StartSetupRequest [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### StartViaIdentity +``` +Start-AzsContainerRegistrySetup -InputObject + -StartSetupRequest [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### StartViaIdentityExpanded +``` +Start-AzsContainerRegistrySetup -InputObject + [-CertificateInputFile ] [-Password ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Invokes container registry certificate uploading and service deployment. + +## EXAMPLES + +### Example 1: Start Azs ContainerRegistry Setup +```powershell +PS C:\> Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile $pfx_cert_path | ConvertTo-Json + +{ + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value", + "Name": "redmond/value", + "StatusUri": "https://containerregistrysetup.ascu.azs:4335/providers/Microsoft.ContainerRegistry.Setup/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup?api-version=2019-11-01-preview", + "Type": "Microsoft.ContainerRegistry.Setup/locations/setup" +} +``` + +Invokes container registry certificate uploading and service deployment. + +### Example 2: Start Azs ContainerRegistry Setup when another instance of Setup is already started +```powershell +PS C:\> Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile $pfx_cert_path | ConvertTo-Json + +Start-AzsContainerRegistrySetup : Container registry deployment is still running. It is not allowed to repeat deployment at this stage. +At line:1 char:1 ++ Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidOperation: ({ SubscriptionI...SetupProperty }:<>f__AnonymousType7`3) [Start-AzsContai...p_StartExpanded], Exception + + FullyQualifiedErrorId : AcrDeploymentStillRunning,Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Cmdlets.StartAzsContainerRegistrySetup_StartExpanded +``` + +Returns the error if another instance of Setup is already started. + +## PARAMETERS + +### -CertificateInputFile +Input File for Certificate (Ssl certificate in base64 format.) + +```yaml +Type: System.String +Parameter Sets: StartExpanded, StartViaIdentityExpanded +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: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +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. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity +Parameter Sets: StartViaIdentity, StartViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: Start, StartExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Password +Ssl certificate password. + +```yaml +Type: System.Security.SecureString +Parameter Sets: StartExpanded, StartViaIdentityExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StartSetupRequest +Container registry setup properties. +To construct, see NOTES section for STARTSETUPREQUEST properties and create a hash table. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistrySetupProperty +Parameter Sets: Start, StartViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: Start, StartExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistrySetupProperty + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.IContainerRegistryAdminIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Models.Api20191101Preview.IContainerRegistrySetup + +## NOTES + +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 + - `[CapacityName ]`: The name of the capacity parameter. + - `[ConfigurationName ]`: The name of the configuration. + - `[Id ]`: Resource identity path + - `[Location ]`: The name of Azure region. + - `[QuotaName ]`: The name of the container registry quota. + - `[SubscriptionId ]`: The ID of the target subscription. + +STARTSETUPREQUEST : Container registry setup properties. + - `Password `: Ssl certificate password. + - `SslCertBase64 `: Ssl certificate in base64 format. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/readme.md b/src/Azs.ContainerRegistry.Admin/docs/readme.md new file mode 100644 index 00000000..0ddd5ffb --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/readme.md @@ -0,0 +1,11 @@ +# Docs +This directory contains the documentation of the cmdlets for the `Azs.ContainerRegistry.Admin` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overriden on regeneration*. To update documentation examples, please use the `..\examples` folder. + +## Info +- Modifiable: no +- Generated: all +- Committed: yes +- Packaged: yes + +## Details +The process of documentation generation loads `Azs.ContainerRegistry.Admin` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistry.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistry.md new file mode 100644 index 00000000..3a776595 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistry.md @@ -0,0 +1,19 @@ +### Example 1: Get List Azs Container Registries +```powershell +PS C:\> Get-AzsContainerRegistry | ConvertTo-Json + +{ + "CreationDate": "\/Date(1629160842681)\/", + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/registries/testregistry01", + "Location": "redmond", + "Name": "redmond/testregistry01", + "PropertiesName": "testregistry01", + "RegistryId": "/subscriptions/72b77b1b-3e43-4d00-8b5b-be6beceb7f3a/resourceGroups/acrtenanttestrg/providers/Microsoft.ContainerRegistry/registries/testregistry01", + "RegistrySizeInByte": 3011, + "ResourceGroup": "acrtenanttestrg", + "SubscriptionId": "72b77b1b-3e43-4d00-8b5b-be6beceb7f3a", + "Type": "Microsoft.ContainerRegistry.Admin/locations/registries" +} +``` + +Returns a list of container registries present in all tenant location. \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryCapacity.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryCapacity.md new file mode 100644 index 00000000..d09b194a --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryCapacity.md @@ -0,0 +1,16 @@ +### Example 1: Get Azs ContainerRegistry Capacity +```powershell +PS C:\> Get-AzsContainerRegistryCapacity | ConvertTo-Json + +{ + "AllowPush": true, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/capacities/Default", + "MaximumCapacityInGiB": 2000, + "Name": "redmond/Default", + "RegistriesConsumptionInGiB": 0, + "Type": "Microsoft.ContainerRegistry.Admin/locations/capacities" +} +``` + +Returns container registry capacity property. + diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryConfiguration.md new file mode 100644 index 00000000..ac6cd28d --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryConfiguration.md @@ -0,0 +1,15 @@ +### Example 1: Get AzsContainerRegistry Configuration +```powershell +PS C:\> Get-AzsContainerRegistryConfiguration | ConvertTo-Json + +{{ + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", + "MaximumCapacityInGiB": 2000, + "Name": "redmond/Default", + "Type": "Microsoft.ContainerRegistry.Admin/locations/configurations" +} +``` + +Returns the specified configuration details. + + diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..3f8b864d --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md @@ -0,0 +1,39 @@ +### Example 1: Get List Azs ContainerRegistry Quotas +```powershell +PS C:\> Get-AzsContainerRegistryQuota | ConvertTo-Json + +[ + { + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota", + "Name": "redmond/Default quota", + "NumberOfRegistries": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" + }, + { + "CapacityPerRegistryInGiB": 30, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistries": 30, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" + } +] +``` + +Returns a list of container registry quotas at the given location. + +### Example 2: Get Azs ContainerRegistry Quota by Name +```powershell +PS C:\> Get-AzsContainerRegistryQuota -Name "Default quota" | ConvertTo-Json + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota", + "Name": "redmond/Default quota", + "NumberOfRegistries": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} +``` + +Returns the specified container registry quota. + diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistrySetupStatus.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistrySetupStatus.md new file mode 100644 index 00000000..0245221f --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistrySetupStatus.md @@ -0,0 +1,16 @@ +### Example 1: Get Azs ContainerRegistry Setup Status +```powershell +PS C:\> (Get-AzsContainerRegistrySetupStatus).ToJsonString() + +{ + "id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value", + "name": "redmond/value", + "type": "Microsoft.ContainerRegistry.Setup/locations/setup", + "properties": { + "status": "Completed" + } +} +``` + +Returns the status of the container registry setup. + diff --git a/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..25fdd761 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md @@ -0,0 +1,15 @@ +### Example 1: New Azs ContainerRegistry Quota +```powershell +PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistries 20 | ConvertTo-Json + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistries": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} +``` + +Create or update an existing container registry quota. + diff --git a/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..4043c635 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryQuota.md @@ -0,0 +1,7 @@ +### Example 1: Remove Azs ContainerRegistry Configuration +```powershell +PS C:\> Remove-AzsContainerRegistryConfiguration -ConfigurationName default + +``` + +Delete an existing container registry configuration. diff --git a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md new file mode 100644 index 00000000..ba435e9e --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md @@ -0,0 +1,14 @@ +### Example 1: Set Azs ContainerRegistry Configuration +```powershell +PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 | ConvertTo-Json + +{ + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", + "MaximumCapacityInGiB": 30, + "Name": "redmond/Default", + "Type": "Microsoft.ContainerRegistry.Admin/locations/configurations" +} +``` + +Configure container registry overall configuration properties. + diff --git a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..3217c555 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md @@ -0,0 +1,15 @@ +### Example 1: Set Azs ContainerRegistry Quota +```powershell +PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistries 30 | ConvertTo-Json + +{ + "CapacityPerRegistryInGiB": 30, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistries": 30, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} +``` + +Update an existing container registry quota. + diff --git a/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md b/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md new file mode 100644 index 00000000..fe9cca7d --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md @@ -0,0 +1,27 @@ +### Example 1: Start Azs ContainerRegistry Setup +```powershell +PS C:\> Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile $pfx_cert_path | ConvertTo-Json + +{ + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value", + "Name": "redmond/value", + "StatusUri": "https://containerregistrysetup.ascu.azs:4335/providers/Microsoft.ContainerRegistry.Setup/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup?api-version=2019-11-01-preview", + "Type": "Microsoft.ContainerRegistry.Setup/locations/setup" +} +``` + +Invokes container registry certificate uploading and service deployment. + +### Example 2: Start Azs ContainerRegistry Setup when another instance of Setup is already started +```powershell +PS C:\> Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile $pfx_cert_path | ConvertTo-Json + +Start-AzsContainerRegistrySetup : Container registry deployment is still running. It is not allowed to repeat deployment at this stage. +At line:1 char:1 ++ Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : InvalidOperation: ({ SubscriptionI...SetupProperty }:<>f__AnonymousType7`3) [Start-AzsContai...p_StartExpanded], Exception + + FullyQualifiedErrorId : AcrDeploymentStillRunning,Microsoft.Azure.PowerShell.Cmdlets.ContainerRegistryAdmin.Cmdlets.StartAzsContainerRegistrySetup_StartExpanded +``` + +Returns the error if another instance of Setup is already started. diff --git a/src/Azs.ContainerRegistry.Admin/readme.md b/src/Azs.ContainerRegistry.Admin/readme.md new file mode 100644 index 00000000..b46fed9f --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/readme.md @@ -0,0 +1,175 @@ + +# Azs.ContainerRegistry.Admin +This directory contains the PowerShell module for the ContainerRegistryAdmin service. + +--- +## Status +[![Azs.ContainerRegistry.Admin](https://img.shields.io/powershellgallery/v/Azs.ContainerRegistry.Admin.svg?style=flat-square&label=Azs.ContainerRegistry.Admin "Azs.ContainerRegistry.Admin")](https://www.powershellgallery.com/packages/Azs.ContainerRegistry.Admin/) + +## Info +- Modifiable: yes +- Generated: all +- Committed: yes +- Packaged: yes + +--- +## Detail +This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. + +## Module Requirements +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 or greater + +## Authentication +AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. + +## Development +For information on how to develop for `Azs.ContainerRegistry.Admin`, see [how-to.md](how-to.md). + + +## Generation Requirements +Use of the beta version of `autorest.powershell` generator requires the following: +- [NodeJS LTS](https://nodejs.org) (10.15.x LTS preferred) + - **Note**: It *will not work* with Node < 10.x. Using 11.x builds may cause issues as they may introduce instability or breaking changes. +> If you want an easy way to install and update Node, [NVS - Node Version Switcher](../nodejs/installing-via-nvs.md) or [NVM - Node Version Manager](../nodejs/installing-via-nvm.md) is recommended. +- [AutoRest](https://aka.ms/autorest) v3 beta
`npm install -g autorest@beta`
  +- PowerShell 6.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g pwsh`
  +- .NET Core SDK 2.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g dotnet-sdk-2.2`
  + +## Run Generation +In this directory, run AutoRest: +> `autorest` + +--- +### AutoRest Configuration +> see https://aka.ms/autorest + +``` yaml +require: + - $(this-folder)/../readme.azurestack.md + - $(repo)/specification/azsadmin/resource-manager/containerregistry/readme.azsautogen.md + +metadata: + description: 'Microsoft AzureStack PowerShell: ContainerRegistry Admin cmdlets' + +### PSD1 metadata changes +subject-prefix: '' +module-version: 0.2.0 +service-name: ContainerRegistryAdmin + +### File Renames +### IMPORTANT - Note that the following settings are case sensitive ### +module-name: Azs.ContainerRegistry.Admin +csproj: Azs.ContainerRegistry.Admin.csproj +psd1: Azs.ContainerRegistry.Admin.psd1 +psm1: Azs.ContainerRegistry.Admin.psm1 +``` + +### Parameter default values +``` yaml +directive: + # Prepend ContainerRegistry for the Quota cmdlets + - where: + subject: Quota + set: + subject-prefix: ContainerRegistry + + # Rename cmdlet parameter name and set default value in ContainerRegistryQuota + - where: + verb: New + subject: Quota + parameter-name: capacityPerRegistryInGiB + set: + default: + script: '100' + - where: + subject: Quota + parameter-name: NumberOfRegistry + set: + parameter-name: NumberOfRegistries + - where: + verb: New + subject: Quota + parameter-name: NumberOfRegistries + set: + default: + script: '20' + + # Rename cmdlet parameter name in ContainerRegistryConfiguration + - where: + subject: ContainerRegistryConfiguration + parameter-name: ConfigurationName + set: + parameter-name: Name + - where: + verb: Remove + subject: ContainerRegistryConfiguration + parameter-name: Name + hide: true + set: + default: + script: Write-Output "default" + - where: + verb: Set + subject: ContainerRegistryConfiguration + parameter-name: Name + hide: true + set: + default: + script: Write-Output "default" + - where: + verb: Remove + subject: ContainerRegistryConfiguration + hide: true + + # Rename cmdlet parameter name in ContainerRegistrySetup + - where: + subject: ContainerRegistrySetup + parameter-name: SslCertBase64 + set: + parameter-name: Certificate + + # Rename model property names + - where: + model-name: ContainerRegistryQuota + property-name: NumberOfRegistry + set: + property-name: NumberOfRegistries + + # Hide the auto-generated New-AzsContainerRegistryQuota and expose it through customized one + # The customization makes the Quota parameters optional and add default values in case if parameter skiped + - where: + verb: New + subject: Quota + hide: true + + # Hide the auto-generated Set-AzsContainerRegistryQuota and expose it through customized one + # The customization makes the Quota parameters optional and add existed values in case if parameter skiped + - where: + verb: Set + subject: Quota + hide: true + + # Hide the auto-generated Start-AzsContainerRegistrySetup and expose it through customized one + # The customization adds basic validation for PFX file + - where: + verb: Start + subject: ContainerRegistrySetup + hide: true + +# Add release notes + - from: Azs.ContainerRegistry.Admin.nuspec + where: $ + transform: $ = $.replace('', 'AzureStack Hub Admin module generated with https://github.com/Azure/autorest.powershell.'); + +# Add Az.Accounts/Az.Resources as dependencies + - from: Azs.ContainerRegistry.Admin.nuspec + where: $ + transform: $ = $.replace('', '\n '); + +# PSD1 changes for ReleaseNotes + - from: source-file-csharp + where: $ + transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'AzureStack Hub Admin module generated with https://github.com/Azure/autorest.powershell\'\"\);' ); +``` diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Recording.json new file mode 100644 index 00000000..9160fd5b --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Recording.json @@ -0,0 +1,43 @@ +{ + "Get-AzsContainerRegistry+[NoContext]+TestGetContainerRegistryRegistry+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/registries?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/registries?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "16aa7e29-7714-4ecd-913a-97c229e7d2c2" ], + "CommandName": [ "Get-AzsContainerRegistry" ], + "FullCommandName": [ "Get-AzsContainerRegistry_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "51433578-a9f8-41b6-ae61-71232a896672" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14920" ], + "x-ms-correlation-request-id": [ "0323b032-4ec3-4492-abbe-6aa922153f1c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181209Z:0323b032-4ec3-4492-abbe-6aa922153f1c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "641" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/registries/testregistry01\",\"name\":\"redmond/testregistry01\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/registries\",\"properties\":{\"registryId\":\"/subscriptions/72b77b1b-3e43-4d00-8b5b-be6beceb7f3a/resourceGroups/acrtenanttestrg/providers/Microsoft.ContainerRegistry/registries/testregistry01\",\"name\":\"testregistry01\",\"location\":\"redmond\",\"creationDate\":\"2021-08-17T00:40:42.6810944Z\",\"subscriptionId\":\"72b77b1b-3e43-4d00-8b5b-be6beceb7f3a\",\"resourceGroup\":\"acrtenanttestrg\",\"registrySizeInBytes\":3011}}]}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 new file mode 100644 index 00000000..12a294ee --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 @@ -0,0 +1,47 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistry.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsContainerRegistry' { + BeforeEach { + + function ValidateRegistry { + param( + [Parameter(Mandatory = $true)] + $Registry + ) + $registry | Should Not Be $null + $registry.CreationDate | Should Not Be $null + $registry.Id | Should Not Be $null + $registry.Location | Should Not Be $null + $registry.Name | Should Not Be $null + $registry.PropertiesName| Should Not Be $null + $registry.RegistryId | Should Not Be $null + $registry.RegistrySizeInByte | Should Not Be $null + $registry.ResourceGroup | Should Not Be $null + $registry.SubscriptionId| Should Not Be $null + $registry.Type | Should Not Be $null + } + } + + AfterEach { + $global:Client = $null + } + + It "TestGetContainerRegistryRegistry" -Skip:$('TestGetContainerRegistry' -in $global:SkippedTests) { + $global:TestName = 'TestGetContainerRegistry' + + $result = Get-AzsContainerRegistry + $result | Should Not Be $null + ValidateRegistry -Registry $result + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Recording.json new file mode 100644 index 00000000..79c77be7 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Recording.json @@ -0,0 +1,43 @@ +{ + "Get-AzsContainerRegistryCapacity+[NoContext]+TestGetContainerRegistryCapacity+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/capacities?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/capacities?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "d4d1b292-07a1-4e28-9ef8-255f99e81e6f" ], + "CommandName": [ "Get-AzsContainerRegistryCapacity" ], + "FullCommandName": [ "Get-AzsContainerRegistryCapacity_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "0b545f04-f153-44d8-a983-fe2111410a1e" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14918" ], + "x-ms-correlation-request-id": [ "2063e8ba-cbfe-42fb-b3f1-7351d7d60381" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181212Z:2063e8ba-cbfe-42fb-b3f1-7351d7d60381" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "334" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/capacities/Default\",\"name\":\"redmond/Default\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/capacities\",\"properties\":{\"maximumCapacityInGiB\":0,\"registriesConsumptionInGiB\":0.00,\"allowPush\":false}}]}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 new file mode 100644 index 00000000..b0920802 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 @@ -0,0 +1,39 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistryCapacity.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsContainerRegistryCapacity' { + BeforeEach { + + function ValidateCapacity { + param( + [Parameter(Mandatory = $true)] + $Capacity + ) + $capacity | Should Not Be $null + $capacity.MaximumCapacityInGiB | Should Not Be $null + $capacity.RegistriesConsumptionInGiB | Should Not Be $null + } + } + + AfterEach { + $global:Client = $null + } + + It "TestGetContainerRegistryCapacity" -Skip:$('TestGetContainerRegistryCapacity' -in $global:SkippedTests) { + $global:TestName = 'TestGetContainerRegistryCapacity' + + $result = Get-AzsContainerRegistryCapacity + $result | Should Not Be $null + ValidateCapacity -Capacity $result + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Recording.json new file mode 100644 index 00000000..15e0b729 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Recording.json @@ -0,0 +1,43 @@ +{ + "Get-AzsContainerRegistryConfiguration+[NoContext]+TestGetContainerRegistryConfiguration+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "3" ], + "x-ms-client-request-id": [ "06564f23-62d4-4190-843b-42d87855dde2" ], + "CommandName": [ "Get-AzsContainerRegistryConfiguration" ], + "FullCommandName": [ "Get-AzsContainerRegistryConfiguration_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "e2df8213-5b6b-42b6-87fa-2b976cb91449" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14916" ], + "x-ms-correlation-request-id": [ "f20d4a07-fd82-459f-9a24-da47bb1ef4c9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181213Z:f20d4a07-fd82-459f-9a24-da47bb1ef4c9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "290" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default\",\"name\":\"redmond/Default\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/configurations\",\"properties\":{\"maximumCapacityInGiB\":0}}]}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Tests.ps1 new file mode 100644 index 00000000..15014c11 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Tests.ps1 @@ -0,0 +1,38 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistryConfiguration.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsContainerRegistryConfiguration' { + BeforeEach { + + function ValidateConfiguration { + param( + [Parameter(Mandatory = $true)] + $Configuration + ) + $configuration | Should Not Be $null + $configuration.MaximumCapacityInGib | Should Not Be $null + } + } + + AfterEach { + $global:Client = $null + } + + It "TestGetContainerRegistryConfiguration" -Skip:$('TestGetContainerRegistryConfiguration' -in $global:SkippedTests) { + $global:TestName = 'TestGetContainerRegistryConfiguration' + + $result = Get-AzsContainerRegistryConfiguration + $result | Should Not Be $null + ValidateConfiguration -Configuration $result + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Recording.json new file mode 100644 index 00000000..6c01d3be --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Recording.json @@ -0,0 +1,248 @@ +{ + "Get-AzsContainerRegistryQuota+[NoContext]+TestListAllContainerRegistryQuotas+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "4" ], + "x-ms-client-request-id": [ "e8b858ac-2df0-4537-89b6-5523e6208374" ], + "CommandName": [ "Get-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Get-AzsContainerRegistryQuota_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "4e50191c-412d-4427-9236-4c31c346562c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14914" ], + "x-ms-correlation-request-id": [ "b8e640ba-49c0-44eb-96d4-4fd13a052eae" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181215Z:b8e640ba-49c0-44eb-96d4-4fd13a052eae" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "611" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota\",\"name\":\"redmond/Default quota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}},{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota\",\"name\":\"redmond/testquota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}]}", + "isContentBase64": false + } + }, + "Get-AzsContainerRegistryQuota+[NoContext]+TestGetContainerRegistryQuota+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "2352b38f-aaa8-484e-9347-7bebc0ee49db" ], + "CommandName": [ "Get-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Get-AzsContainerRegistryQuota_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "d74350f5-5a1f-45d3-bbb8-9df1426aba09" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14912" ], + "x-ms-correlation-request-id": [ "6918ba9f-0d78-42c7-8aba-9f7e13deffa9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181217Z:6918ba9f-0d78-42c7-8aba-9f7e13deffa9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "611" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota\",\"name\":\"redmond/Default quota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}},{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota\",\"name\":\"redmond/testquota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}]}", + "isContentBase64": false + } + }, + "Get-AzsContainerRegistryQuota+[NoContext]+TestGetContainerRegistryQuota+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota?api-version=2019-11-01-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default%20quota?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "6" ], + "x-ms-client-request-id": [ "d62ade18-9508-455e-8ed1-6d7ee85f8d39" ], + "CommandName": [ "Get-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Get-AzsContainerRegistryQuota_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "50050688-d375-4e18-bf92-74684ed9c7f3" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14911" ], + "x-ms-correlation-request-id": [ "e2661a4a-1fa8-424d-b177-41d7efdc48f4" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181217Z:e2661a4a-1fa8-424d-b177-41d7efdc48f4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "303" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota\",\"name\":\"redmond/Default quota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}", + "isContentBase64": false + } + }, + "Get-AzsContainerRegistryQuota+[NoContext]+TestGetAllContainerRegistryQuotas+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "3386c1e8-f676-4ca9-8298-9a977a72385b" ], + "CommandName": [ "Get-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Get-AzsContainerRegistryQuota_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "445cbc18-93d8-4704-8975-8fc8ae1c5513" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14909" ], + "x-ms-correlation-request-id": [ "94462c49-851e-46d5-82a3-1b477b04fd27" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181219Z:94462c49-851e-46d5-82a3-1b477b04fd27" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "611" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota\",\"name\":\"redmond/Default quota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}},{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota\",\"name\":\"redmond/testquota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}]}", + "isContentBase64": false + } + }, + "Get-AzsContainerRegistryQuota+[NoContext]+TestGetAllContainerRegistryQuotas+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota?api-version=2019-11-01-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default%20quota?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "8" ], + "x-ms-client-request-id": [ "422bca38-314e-4049-8283-7d38d6fa4c52" ], + "CommandName": [ "Get-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Get-AzsContainerRegistryQuota_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "9205fa72-6c95-4809-adc1-7451e1dbe332" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14908" ], + "x-ms-correlation-request-id": [ "58c37d91-13a3-4709-8ca9-c31118e96307" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181219Z:58c37d91-13a3-4709-8ca9-c31118e96307" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "303" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota\",\"name\":\"redmond/Default quota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}", + "isContentBase64": false + } + }, + "Get-AzsContainerRegistryQuota+[NoContext]+TestGetAllContainerRegistryQuotas+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota?api-version=2019-11-01-preview+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "6f768574-0f06-48ac-ba0f-aeb17cd5434a" ], + "CommandName": [ "Get-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Get-AzsContainerRegistryQuota_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "334f6881-8abe-4020-888b-de1b24c2597c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14907" ], + "x-ms-correlation-request-id": [ "1639c9a4-7503-48c5-9365-296c9605bf0f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181219Z:1639c9a4-7503-48c5-9365-296c9605bf0f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "295" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota\",\"name\":\"redmond/testquota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 new file mode 100644 index 00000000..083ee5de --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 @@ -0,0 +1,89 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistryQuota.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsContainerRegistryQuota' { + BeforeEach { + + function ValidateContainerRegistryQuota { + param( + [Parameter(Mandatory = $true)] + $containerRegistryQuota + ) + # Resource + $containerRegistryQuota | Should Not Be $null + + # Validate ContainerRegistry quota properties + $containerRegistryQuota.CapacityPerRegistryInGib | Should Not Be $null + $containerRegistryQuota.NumberOfRegistries | Should Not Be $null + $containerRegistryQuota.Type | Should Not Be $null + $containerRegistryQuota.Id | Should Not Be $null + $containerRegistryQuota.Name | Should Not Be $null + } + + function AssertAreEqual { + param( + [Parameter(Mandatory = $true)] + $expected, + [Parameter(Mandatory = $true)] + $found + ) + # Resource + if ($null -eq $expected) { + $found | Should Be $null + } + else { + $found | Should Not Be $null + # Validate ContainerRegistry quota properties + $expected.CapacityPerRegistryInGib | Should Be $found.CapacityPerRegistryInGib + $expected.NumberOfRegistries | Should Be $found.NumberOfRegistries + } + } + } + + AfterEach { + $global:Client = $null + } + + It "TestListAllContainerRegistryQuotas" -Skip:$('TestListAllContainerRegistryQuotas' -in $global:SkippedTests) { + $global:TestName = 'TestListAllContainerRegistryQuotas' + + $quotas = Get-AzsContainerRegistryQuota + foreach ($quota in $quotas.Value) { + ValidateContainerRegistryQuota -containerRegistryQuota $quota + } + } + + It "TestGetContainerRegistryQuota" -Skip:$('TestGetContainerRegistryQuota' -in $global:SkippedTests) { + $global:TestName = 'TestGetContainerRegistryQuota' + + $quota = Get-AzsContainerRegistryQuota + if ($quota -as [Array]) + { + $quota = $quota[0] + } + $retrievedQuota = Get-AzsContainerRegistryQuota -InputObject $quota + ValidateContainerRegistryQuota -containerRegistryQuota $retrievedQuota + AssertAreEqual -expected $quota -found $retrievedQuota + } + + It "TestGetAllContainerRegistryQuotas" -Skip:$('TestGetAllContainerRegistryQuotas' -in $global:SkippedTests) { + $global:TestName = 'TestGetAllContainerRegistryQuotas' + + $quotas = Get-AzsContainerRegistryQuota + foreach ($quota in $quotas -as [Array]) { + $result = Get-AzsContainerRegistryQuota -InputObject $quota + ValidateContainerRegistryQuota -containerRegistryQuota $quota + AssertAreEqual -expected $quota -found $result + } + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Recording.json new file mode 100644 index 00000000..680dc00a --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Recording.json @@ -0,0 +1,43 @@ +{ + "Get-AzsContainerRegistrySetupStatus+[NoContext]+TestGetContainerRegistrySetupStatus+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "10" ], + "x-ms-client-request-id": [ "a61ceec4-0ec9-4477-8d13-8c2ee3e9105b" ], + "CommandName": [ "Get-AzsContainerRegistrySetupStatus" ], + "FullCommandName": [ "Get-AzsContainerRegistrySetupStatus_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "62298517-8fe3-4abb-964f-63b5fec33119" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14905" ], + "x-ms-correlation-request-id": [ "257fcfb9-6eeb-4a09-a9b8-41dd6e9b764d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181222Z:257fcfb9-6eeb-4a09-a9b8-41dd6e9b764d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "252" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value\",\"name\":\"redmond/value\",\"type\":\"Microsoft.ContainerRegistry.Setup/locations/setup\",\"properties\":{\"status\":\"Completed\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 new file mode 100644 index 00000000..0e77dcd3 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 @@ -0,0 +1,42 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistrySetupStatus.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsContainerRegistrySetupStatus' { + + BeforeEach { + + function ValidateSetupStatus { + param( + [Parameter(Mandatory = $true)] + $SetupStatus + ) + $setupStatus | Should Not Be $null + $setupStatus.Id | Should Not Be $null + $setupStatus.Name | Should Not Be $null + $setupStatus.Type | Should Not Be $null + $setupStatus.Status | Should Not Be $null + } + } + + AfterEach { + $global:Client = $null + } + + It "TestGetContainerRegistrySetupStatus" -Skip:$('TestGetContainerRegistrySetupStatus' -in $global:SkippedTests) { + $global:TestName = 'TestGetContainerRegistrySetupStatus' + + $result = Get-AzsContainerRegistrySetupStatus + $result | Should Not Be $null + ValidateSetupStatus -SetupStatus $result + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Recording.json b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Recording.json new file mode 100644 index 00000000..c9a4bba3 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Recording.json @@ -0,0 +1,78 @@ +{ + "New-AzsContainerRegistryQuota+[NoContext]+TestCreateStorageQuota+$PUT+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestCreateQuota?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestCreateQuota?api-version=2019-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"numberOfRegistries\": 20,\r\n \"capacityPerRegistryInGiB\": 20\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "95" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "75cab910-fb1d-4f21-a077-74e864ab4257" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "e2b21f89-beee-4c89-9ce1-04f39fca466e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181224Z:e2b21f89-beee-4c89-9ce1-04f39fca466e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "307" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestCreateQuota\",\"name\":\"redmond/TestCreateQuota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}", + "isContentBase64": false + } + }, + "New-AzsContainerRegistryQuota+[NoContext]+TestCreateStorageQuota+$DELETE+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestCreateQuota?api-version=2019-11-01-preview+2": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestCreateQuota?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "49e20dde-42f5-4fd4-982d-0404a7c859bf" ], + "CommandName": [ "Remove-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Remove-AzsContainerRegistryQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5433ccad-6732-42ce-9f70-549740687f77" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-correlation-request-id": [ "b1eaae52-9226-40ca-9fba-254f6f33b4f4" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181226Z:b1eaae52-9226-40ca-9fba-254f6f33b4f4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:25 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 new file mode 100644 index 00000000..9cebdf0e --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 @@ -0,0 +1,25 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'New-AzsContainerRegistryQuota.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'New-AzsContainerRegistryQuota' { + It "TestCreateStorageQuota" -Skip:$('TestCreateContainerRegistryQuota' -in $global:SkippedTests) { + $global:TestName = 'TestCreateContainerRegistryQuota' + + $name = "TestCreateQuota" + $quota = New-AzsContainerRegistryQuota -CapacityPerRegistryInGib 20 -NumberOfRegistries 20 -Name $name + $quota | Should Not Be $null + $quota.CapacityPerRegistryInGib | Should Be 20 + $quota.NumberOfRegistries | Should Be 20 + Remove-AzsContainerRegistryQuota -Name $name + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Recording.json new file mode 100644 index 00000000..303fd238 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Recording.json @@ -0,0 +1,195 @@ +{ + "Remove-AzsContainerRegistryQuota+[NoContext]+TestDeleteContainerRegistryQuota+$PUT+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"numberOfRegistries\": 100,\r\n \"capacityPerRegistryInGiB\": 50\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "96" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5ed23094-37b8-4dcb-805d-a5843392547e" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-correlation-request-id": [ "3b493476-64e1-41a0-ba06-dc09715da4af" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181235Z:3b493476-64e1-41a0-ba06-dc09715da4af" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "308" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota\",\"name\":\"redmond/TestDeleteQuota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":50,\"numberOfRegistries\":100}}", + "isContentBase64": false + } + }, + "Remove-AzsContainerRegistryQuota+[NoContext]+TestDeleteContainerRegistryQuota+$DELETE+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview+2": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "18" ], + "x-ms-client-request-id": [ "ec657587-cedd-4979-8e97-ee0c63df9ce9" ], + "CommandName": [ "Remove-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Remove-AzsContainerRegistryQuota_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "b5728e9b-00ea-4593-9087-925a4a62b2fb" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], + "x-ms-correlation-request-id": [ "c655abf7-7068-43d9-b270-3e6d2f8be2db" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181236Z:c655abf7-7068-43d9-b270-3e6d2f8be2db" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:36 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Remove-AzsContainerRegistryQuota+[NoContext]+TestDeleteContainerRegistryQuota+$PUT+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"numberOfRegistries\": 100,\r\n \"capacityPerRegistryInGiB\": 50\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "96" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "776e3efa-4af1-4482-8327-be0e870ba757" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-correlation-request-id": [ "a70a07c7-4cee-4a61-bdd5-d055925f2630" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181238Z:a70a07c7-4cee-4a61-bdd5-d055925f2630" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "308" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota\",\"name\":\"redmond/TestDeleteQuota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":50,\"numberOfRegistries\":100}}", + "isContentBase64": false + } + }, + "Remove-AzsContainerRegistryQuota+[NoContext]+TestDeleteContainerRegistryQuota+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "20" ], + "x-ms-client-request-id": [ "eb62b564-7251-4856-a2c0-ca8dfcfddc9b" ], + "CommandName": [ "Get-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Get-AzsContainerRegistryQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "4ee5da3a-6397-4340-b27f-3cb5d34d084c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14892" ], + "x-ms-correlation-request-id": [ "f67e252b-3dd2-422d-b00a-db6f7f017589" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181239Z:f67e252b-3dd2-422d-b00a-db6f7f017589" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "308" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota\",\"name\":\"redmond/TestDeleteQuota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":50,\"numberOfRegistries\":100}}", + "isContentBase64": false + } + }, + "Remove-AzsContainerRegistryQuota+[NoContext]+TestDeleteContainerRegistryQuota+$DELETE+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview+5": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/TestDeleteQuota?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "21" ], + "x-ms-client-request-id": [ "9f5c38a6-3e21-4aa9-ad90-b046ab328447" ], + "CommandName": [ "Remove-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Remove-AzsContainerRegistryQuota_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "60c5f41d-47e6-40de-836d-47e4aea76c9f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14996" ], + "x-ms-correlation-request-id": [ "a15e8d65-9bc7-4940-9310-6d7d2f4d877b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181240Z:a15e8d65-9bc7-4940-9310-6d7d2f4d877b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:39 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 new file mode 100644 index 00000000..92ce140d --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 @@ -0,0 +1,28 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzsContainerRegistryQuota.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Remove-AzsContainerRegistryQuota' { + It "TestDeleteContainerRegistryQuota" -Skip:$('TestDeleteContainerRegistryQuota' -in $global:SkippedTests) { + $global:TestName = 'TestDeleteContainerRegistryQuota' + + $name = "TestDeleteQuota" + $quota = New-AzsContainerRegistryQuota -CapacityPerRegistryInGib 50 -NumberOfRegistries 100 -Name $name + $quota | Should Not Be $null + $quota.CapacityPerRegistryInGib | Should Be 50 + $quota.NumberOfRegistries | Should Be 100 + Remove-AzsContainerRegistryQuota -Name $name + $quota | New-AzsContainerRegistryQuota -Name $name + $retrievedQuota = Get-AzsContainerRegistryQuota -Name $name + Remove-AzsContainerRegistryQuota -InputObject $retrievedQuota + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Recording.json new file mode 100644 index 00000000..a80e5675 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Recording.json @@ -0,0 +1,115 @@ +{ + "Set-AzsContainerRegistryConfiguration+[NoContext]+TestUpdateContainerRegistryConfiguration+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "bcd7401f-8045-4255-a62f-83f0c9fc10bc" ], + "CommandName": [ "Get-AzsContainerRegistryConfiguration" ], + "FullCommandName": [ "Get-AzsContainerRegistryConfiguration_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "e299cf8e-2b37-4bd5-b808-6bcc3553dc6f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14890" ], + "x-ms-correlation-request-id": [ "00a6dc15-a8bd-413d-94af-673a1b1a2446" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181241Z:00a6dc15-a8bd-413d-94af-673a1b1a2446" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "290" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default\",\"name\":\"redmond/Default\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/configurations\",\"properties\":{\"maximumCapacityInGiB\":0}}]}", + "isContentBase64": false + } + }, + "Set-AzsContainerRegistryConfiguration+[NoContext]+TestUpdateContainerRegistryConfiguration+$PUT+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/default?api-version=2019-11-01-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/default?api-version=2019-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"maximumCapacityInGiB\": 1\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "59" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "a6ab0516-d187-4b66-96a4-802ead3680f7" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1195" ], + "x-ms-correlation-request-id": [ "70469760-c195-4d30-9049-36b20f26fd4c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181243Z:70469760-c195-4d30-9049-36b20f26fd4c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "278" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default\",\"name\":\"redmond/Default\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/configurations\",\"properties\":{\"maximumCapacityInGiB\":1}}", + "isContentBase64": false + } + }, + "Set-AzsContainerRegistryConfiguration+[NoContext]+TestUpdateContainerRegistryConfiguration+$PUT+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/default?api-version=2019-11-01-preview+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/default?api-version=2019-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"maximumCapacityInGiB\": 0\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "59" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "f32fcc50-4bc7-4afa-a985-f3d6f50d4153" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1194" ], + "x-ms-correlation-request-id": [ "2b4d20ce-a0ee-483a-afc0-4451ca4d1818" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181245Z:2b4d20ce-a0ee-483a-afc0-4451ca4d1818" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "278" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default\",\"name\":\"redmond/Default\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/configurations\",\"properties\":{\"maximumCapacityInGiB\":0}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 new file mode 100644 index 00000000..6fdea608 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 @@ -0,0 +1,25 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzsContainerRegistryConfiguration.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Set-AzsContainerRegistryConfiguration' { + It "TestUpdateContainerRegistryConfiguration" -Skip:$('TestUpdateContainerRegistryConfiguration' -in $global:SkippedTests) { + $global:TestName = 'TestUpdateContainerRegistryConfiguration' + + $maxCapacityInGib = (Get-AzsContainerRegistryConfiguration ).MaximumCapacityInGib + $targetCapacityInGib = $originalDays + 1 + $result = Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $targetCapacityInGib + $result | Should Not Be $null + $result.MaximumCapacityInGib | Should Be $targetCapacityInGib + Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $maxCapacityInGib + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Recording.json new file mode 100644 index 00000000..21392536 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Recording.json @@ -0,0 +1,115 @@ +{ + "Set-AzsContainerRegistryQuota+[NoContext]+TestUpdateContainerRegistryQuota+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default Quota?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default%20Quota?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "25" ], + "x-ms-client-request-id": [ "aed03352-0099-4faa-b03e-f9e3baeb906e" ], + "CommandName": [ "Get-AzsContainerRegistryQuota" ], + "FullCommandName": [ "Get-AzsContainerRegistryQuota_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "ce2868d0-86ff-4e1d-ad95-18b98d883fdb" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14886" ], + "x-ms-correlation-request-id": [ "23b76036-d3f3-4894-8823-433ff4bbfb87" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181247Z:23b76036-d3f3-4894-8823-433ff4bbfb87" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "303" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota\",\"name\":\"redmond/Default quota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}", + "isContentBase64": false + } + }, + "Set-AzsContainerRegistryQuota+[NoContext]+TestUpdateContainerRegistryQuota+$PUT+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default Quota?api-version=2019-11-01-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default%20Quota?api-version=2019-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"numberOfRegistries\": 10,\r\n \"capacityPerRegistryInGiB\": 100\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "96" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5e1c71c9-9394-40d5-b73b-5c4dc4ae0635" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1193" ], + "x-ms-correlation-request-id": [ "9527283b-0328-47f7-8136-6c3e072109ef" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181249Z:9527283b-0328-47f7-8136-6c3e072109ef" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "304" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota\",\"name\":\"redmond/Default quota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":100,\"numberOfRegistries\":10}}", + "isContentBase64": false + } + }, + "Set-AzsContainerRegistryQuota+[NoContext]+TestUpdateContainerRegistryQuota+$PUT+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default Quota?api-version=2019-11-01-preview+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default%20Quota?api-version=2019-11-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"numberOfRegistries\": 20,\r\n \"capacityPerRegistryInGiB\": 20\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "95" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "c0ec29a7-7fae-4e1c-a6ca-bdc0c5ff394c" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1192" ], + "x-ms-correlation-request-id": [ "3aef1b41-5895-4871-938c-5767b282a489" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181250Z:3aef1b41-5895-4871-938c-5767b282a489" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "303" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota\",\"name\":\"redmond/Default quota\",\"type\":\"Microsoft.ContainerRegistry.Admin/locations/quotas\",\"properties\":{\"capacityPerRegistryInGiB\":20,\"numberOfRegistries\":20}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 new file mode 100644 index 00000000..3d4f585e --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 @@ -0,0 +1,83 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzsContainerRegistryQuota.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Set-AzsContainerRegistryQuota' { + BeforeEach { + + function ValidateContainerRegistryQuota { + param( + [Parameter(Mandatory = $true)] + $containerRegistryQuota + ) + # Resource + $containerRegistryQuota | Should Not Be $null + + # Validate ContainerRegistry quota properties + $containerRegistryQuota.CapacityPerRegistryInGib | Should Not Be $null + $containerRegistryQuota.NumberOfRegistries | Should Not Be $null + $containerRegistryQuota.Type | Should Not Be $null + $containerRegistryQuota.Id | Should Not Be $null + $containerRegistryQuota.Name | Should Not Be $null + } + + function AssertAreEqual { + param( + [Parameter(Mandatory = $true)] + $expected, + [Parameter(Mandatory = $true)] + $found + ) + # Resource + if ($null -eq $expected) { + $found | Should Be $null + } + else { + $found | Should Not Be $null + # Validate ContainerRegistry quota properties + $expected.CapacityPerRegistryInGib | Should Be $found.CapacityPerRegistryInGib + $expected.NumberOfRegistries | Should Be $found.NumberOfRegistries + } + } + } + + AfterEach { + $global:Client = $null + } + + It "TestUpdateContainerRegistryQuota" -Skip:$('TestUpdateContainerRegistryQuota' -in $global:SkippedTests) { + $global:TestName = 'TestUpdateContainerRegistryQuota' + + $name = "Default Quota" + + $quota = Get-AzsContainerRegistryQuota -Name 'Default Quota' + + $quota | Should Not Be $null + + $CapInGiB = 100 + $NumOfRegistry = 10 + + $updated = Set-AzsContainerRegistryQuota ` + -CapacityPerRegistryInGib $CapInGiB ` + -NumberOfRegistries $NumOfRegistry ` + -Name $name + + ValidateContainerRegistryQuota -containerRegistryQuota $updated + $updated.CapacityPerRegistryInGib | Should Be $CapInGiB + $updated.NumberOfRegistries | Should Be $NumOfRegistry + + Set-AzsContainerRegistryQuota ` + -CapacityPerRegistryInGib $quota.CapacityPerRegistryInGib ` + -NumberOfRegistries $quota.NumberOfRegistries ` + -Name $name + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Recording.json new file mode 100644 index 00000000..98acfc11 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Recording.json @@ -0,0 +1,38 @@ +{ + "Start-AzsContainerRegistrySetup+[NoContext]+[NoScenario]+$POST+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup?api-version=2019-11-01-preview+1": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup?api-version=2019-11-01-preview", + "Content": "{\r\n \"password\": \"password\",\r\n \"sslCertBase64\": \"MIIi7QIBAzCCIqkGCSqGSIb3DQEHAaCCIpoEgiKWMIIikjCCCqsGCSqGSIb3DQEHAaCCCpwEggqYMIIKlDCCCpAGCyqGSIb3DQEMCgECoIIJfjCCCXowHAYKKoZIhvcNAQwBAzAOBAhRjAPnR8YnhwICB9AEgglYe2P5S4PL8OrlOKHlh2NKxWYtkSosXswvt3F/4H4+mJeg9CaPwLXn9RY72EawlCJ8R2nWxYJCVLWhAyIACYlbjpHlZjJEx7bRFfRUPHnG/BAol8jQuKG0N3yNszZqlU3azgaDcgJvPdcLYt/WdAIE2Tisl1Ly1ukXkThlxzQ96WoiemVHOtjmEUyFsW+VWNmEDzdV6oLOJktFv3mbAEOUOz3onTcQbNr4IXyFrrxHFns8PvXcKDCZaGI8Bk8RzajJHbuoqsorGPexMCoLn1lYE1VQh5rP09boZ83uHjMhIR5V6c45HFFtRw2GQkl4gnoCpU9uV3Kr0bQ2PzwATEE+8MJ4cac12nYUQ0w7EQg6tHwWJTkK6Wpf0CiaV1CtSvB4Xs0h3timQxEU5IcOD3+Uu9LwlYu2OkmN19Ot61edO1PbPnOoSeRoiTPaSc2EpnkFAFRFNEvM6t9FPhpUTdPeq3AbcYHut2xm1hixm6p8QM+KyeoKqaCDTVEY629VOizQAR77qZWczzH30OqWgjrQfYsBLmNa2ojvdzVasu5z5mGCS+caFCJ8SSU1T9jutdA4YjROXLWYuMs8KDv7D38MtkpbWK1TnBx0HQ6DT9urTff5zM6KFCVrwY3cw3xU6rn9b7eEEiFA4WHd7Nk3a8ue0dBW6lq3b81dzp/cekpki+blMJKuBiWOzA1w8FGYm1bOLce0AaNX0x7iwF3el6nOqmHfjqPbWO79VatYvUf+zGNLi8Qo8ZBuIk1IRwbCYA/wOvvlQWzHhHmaJ00ezJ6gDxNkoHHDFvC3gZug4ye7e88MXZ1WN1HW3t1BGCKknLCWg9sXshY6IvldRGT0bVH8DpQwG3owx5HvgppugfKQEn87Kakb7L5t+mUdk/6nJSy0v5Li6QgN0P/Z2eJ6X5cyHvG4V6auJLie1RWVvyseH0QIVDTUvw3XWPkCUe64s1zOS6EUNVN8m6zcwxp/IJJXhXSwiHUlJdTsEgOuiSqGIN6flA2kHlyMAOIRwTjV81OAUU5294xOoZAu8j4BWvsB2qW46qdvvVx1Tyc3fWfhYgrKyTcj07L2IMe93mavGYfACsuRfnm07qqcRIZqRG7NkuwBcP5TGYx2KeR8dHtJef+Idk4glANbeTyV7S5dYT3G9pKBxtFzFxEQ3sQXbJHUYxuxTvNsCa4gWRPqH/5T39biCe/QO3LuwltI80JbSWNmaP9kz8ab4qdGEW8xYqpPumDf3Q1O5JwuAXSc9isQa5HHFDV8UK8sfzAtDe2+7vAuATUXERO9CvbPKHiW2rlK6TJ/e8zm6oHxyzBaUNXKaAOhQKNECq2jq7Csi2sMaZ71IjB3cR2Vmh4O2cbPfqOLtx/N6maUQqSadyrgfGbpfnGvZ918WLtXT1HmJP4PsxV7QxN5DjAHrJ6p7OLXvjv2mNrvVDuxTZCOWAqbsF/51PWcnIOuGRQ8vgbteoVEOz9aKMJxF20QyvnVvRLJnbbBTZcbSgeq5Oh66O9C/igwVX2Zicdkc3uIj80XVyfyW7lGe7KgnULn8E1W18HzHQWpISRRC+a4bzVTRyQwaS1ISPwRpfokrk81VCH7HOkgKoMKm1KX1gikUmszEGzrhv4v6Ypld0DNLL8lpt19MzwKd7v3Ww4OmxQS29ckZy8y0oJDeQUKOUXr0lPdV96VHKzMWSEC+mSKmM6jJwMK9h57ioyU2dmJRsXoybMS12ysZxZZGBGx5EJT9bR8NvpiUsp0BWj7IlYAn55h8PTtSU03Yjq0x+zo/KN/uEQuyJBJ+zHVkiouG5TQ5UnGSbxFG+3SzLX5lbR89vsk4ksSwECFni5mNmCz9M+UkuxVrfS1gnSFqzI5hNdBAP83nE/XvW4UQZqUk6tppCx2Fvv1oKPxrPFs8Vz8BFtgrCEFFy5lnbg8Az7M583+5ErJJvLFBrgovUFIf5MI8M0yB2XYie6/Mjq6P9658XikgCJqstAhoLEjJpUJxPebop+L2QQ7HVlqzXMlCl+OM+zsvYpVbQm+5xLXD5qkI16clbJG25SHk17kpdR0ltQlj/CDMUUMFriLDfsuuHWIRDx1Q1IvVCbgUKneqFAZkTrHycdP7ebmHvZrto2gA2A8Dg9Hf1IH+JuDzQpvrAwfXcP+NNo7HOQH+lI7dGm4UAM2ig8ckRfjDj1nMKabIUjrO9cdlwPIOu2Op1AqAa8x9Mp5lSq8zFXi6lONdNMbOuZGZuwRFAbkvjPqeSLyZuLk3QI29HCww270tRDDeqJ9zXOGX9s6wg2MRpzEZpysI4esqAyY4ONi2d2+N6PQtxxm7QlzPrJiHStFXimYZK8Yrp9hRpH/VsCEcCSWksCQ0i1HcoiASw+ryJ2/nOBk/bmxCnAfPSv8EjaqYJWEhrJd81VpuQQ/ijM9nF1CzL4HnzCuoiGb+Y/5Hhxvg0hOugXzeA6vau3Med0L4JfoAaFzvGMAoVVCs8Ydj0/V8986d7f6K3KHZJoXcFdNOFhZjJyC9xdFY0bkdnRsGtwMXdM2QEqsWu0sVAu/ElDhy0jBT+hcHDSJFDPPdNq+2PFvjzHWWji6gM6LFw8V6HsyZUKGIHgibenb7V4AFccOAAOvXsrpAFgvxvQ95LQf/rasqs+hrLqt8qJW6tDyT2xhP+9QM0xOfidq/pG7eBZxJz2ENX609WgUMizNEZxMFHRaDHNa4DlYsQDuWHnYxF2AK+cdHmxDEZYqH/z4HbeWxKNU19cG1PNAKzLGA9N5GdOzxyFoNvldDdgln1q2NmjXFDz1gy08CCUHHlbMw3kPBUMI1hqIoeBKd/0I+FGskI3psmg26HnBlgLmcBDJzFweo+n+2CwO6i14vRKvs0rjBQPOG2CCsVD97+GyA73tslyVRkolssVvgXAGeUdKK/8k0d9i02u4eVJXSx4MFPINrrJPLGSngdhvdfA91p0rE4jlBAYio0vi89wJ/K+sAU15m4OhuJcfo1+oBNXvM4PHHDzbW/xDLtoLV8DbuWVT44cIMjnYyhtX4V6/JUiDTCEj1urPt4WPWmH7+OgqDTT2+9M9OsohQJ+js9TF/5FkwEZkssiTGfTJIKqhFAtZ5NximUd4DR+S5C9l4zmT5+Keh+lRXVNXY+QBL13inLmTWsij9UVHLja9xGasgbiYKH0VCZF+UjDvp+wtHX5PC4K8GCagrgl/NTGB/jANBgkrBgEEAYI3EQIxADATBgkqhkiG9w0BCRUxBgQEAQAAADBdBgkqhkiG9w0BCRQxUB5OAHQAZQAtADIAZQBjADYANgAxAGUAZQAtAGEAMgA3ADMALQA0ADEAMQBkAC0AOABlADEANQAtAGEANgBjADYAOAAyADAAOABkADMAZgBiMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIIX3wYJKoZIhvcNAQcGoIIX0DCCF8wCAQAwghfFBgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBAzAOBAh/pqoUeEZXpgICB9CAgheYPDJNA6z6o+lMYjTx/s2lARd7r54v+jMYZraJK9+8P66LSF3BFYOPTcPF1GINcGaIWpFEqwotkAVKRe8sL0KqFalGzPCa0cBkzWLcJiKq6+s/FX3y1rKpAyFIjgd1af/5PO/5I5NnZXYuER2ldEy9sUnRfNOCn1loG2eaqzpUvGhnZyAIkoB2WMAzzc3pskZufhypoY0C75F2ttN9lUmtOBBsOyZWOjJ33Dwij3UkPpWfjn1Ui5Lz1NkFyGR6al2urH/wunOm887+7ozJVtW4Oh0tFJ1M53a9YQQ0SwU446giRC4SkAMJf/kFyxf7IQfoL5DI/mhzNSFNAURudKC49ZHCxRwefuuStLv+Mi2a1LCz4k8YE/r8mYjZGIF4Uv+c3+UBC9V+gaqboGv3g0TDhtJbtPJRMtSuuOMAqG+IK4725edDGc7Cvb8zFNk4gfjxi1B2Q8kYKtrEKqNcT/2DyyGFvBfbZsEy+vSCm59biN1q1Eii4S3xBW9TLnOYRkDnzgWCWD9HnnV+a1ezHzgrM2Q5CYqzpxvFyNvjVa9RdZIQPqz2XW7wOjAIgSaasWWNXHuXv4pLI9B9UuRlCwS0kIRDL9RgIH7idEcalSbPCS8sdN0tS0zc9h1U3vVW6Evuq57ww4xVojqTDbEV7S1NsI3ReFGJNwBleFtno8UrOODDInIpXmje5+XnYfhCfKqrqa17PYq9W0U1pswtAUqP5wu/J15m+6DvD5G3xGQJINA7Z+FlvI0nTUkaysJls+U/7pbn8QNPEs6Lx30pRwdC81tJxWfFOD1G8j2t5mnlbnG5I1mdSgNHlX8vtBup9qPK/kryu6NqfhZPsPYmy17U26UNjnbR33jmkuv6GGDFvoRoeNwVAJeqZKbEYjx4Uq7vGOGOy9KpPKEpLLXtuEVFB8PZdGNiKjh0RYqlh4I1QYvuc8bSRxyR/XCSLdwlOD9PydwndCMUgV+gkuThA9JL4ew36ncdf3uut8dhlyqPvm/Ly4qWRw4YuDoRAVft4ICOdhzZ1PeL4b99hwBq7qqbKKrx03U0h1Q1Ac2I5CVcO5I9C4x8pPXQiB4IMMWygAHC0r5Si0gF7nnaNjyj9NUvTks2NHHtzehKmKLGwdfhEF2DUwvx4sRU+0G1tsOor9AJwf5hX7hFratDJE/W+Y0EP+bwBwuQTA4JyefWTexquTU/ChZDLL1kgQCqT5wlv/Kp6vrPcBh1zZ9+DWLtw+sbppFzCqi/TZNSTTUT+XcL0+hCKWHyU6EJIsRqKLl8AmrPPx4FU2cHyPs0cdchWgH19k9LOBwoG00BCPS6AL1ekK+qLP5mI2KgAUI78VrjHhSowNELgJ5CnNy72QujttsDdUCmkCcCuCjVfmMCvHw2Iq9vONnFp9gUvieFm/pDvlDV70vlFqH6enMvHZmr0AOY7+ElaAZUj2z25rDV47HqHIU6VMX0h4e+mu7OP8hKaoo83XxQq3kYTWcsUtxIA1ZWpmYdxZ+Kj0VHTBA67IAGMJtFD79QYLAHCQ320QZMLcHWDfqnhWf6NJ0dhbpYtgh0PSQxozzdaZWNXC92dbrTE/rIFlILsNhsKpQvM+hLOw5ftrtul2lAky1AhrLwKlVi85ELwyCl9Sj/uQnAnKUY0i0f1xxFX4+uBS34PL4/ycQRS8OzRmHbcVz4/svh6A1ddyfXfZt0OLt3eh4F7bCHaedmKwVyMdThli8/xzA5ygUOo88Bjn1psU4jyKsOH9kw+q+41Sit/qe9i87M4Jfy1ObW3V8bEywbmRNf6SwPXZXvDE5HwdnDGlQ0DoRGN8F8ueV6WkYWYUtAoZx49j8OFjKByaTxGB91VvybLDudWwfxHQlwvZYYRrtqGP035D1rXfkg79+Rwi2A998VH+lhC4Aj7hUAMaYt0TA2u6Yy+8T09NckIsfA1DasZx3Z5rutW2QmuBg5UDSQPA3o4mQk38HjW6AX0tAuMV012lKwZMzGOEs0qL2cOyHKd6sWXjSrCcHSTrkQ6AJdpXyZig+0H5hjxFCdgnRSo4CvRLpQ2N7RJhSFUGsy7KCPli0cGsEfkzW8oR/R3f87jCIrqVfXKLrOr05HxOe9YDJjcaeTLPxxU1xM16FaWCGTpO82hFnStC7uiYFr3XFOeR+c8eWkdKreGqID3Viifim1wezPe7Y7CWx0P28DD8rClWRNUZ6gxte2de4RvUYP4lcdyf39g9gsAV9Yj2MKCdfubGEIGtJIC+8kp0ryIctU08UPmV3DyV81NYWaY2OW4Xs0H3H+kQ1uT79R09FC9DP8R6KzTCyRYaaKlYQ8HeOYkgSgh82riX6UlzdD1h48OcXUNcqRZYE7TqAlog/BK0ZIcTbid9KjnTbaLNIxEqxO5oF0ZOCPcZ961OrQ1ljz3il7j/eZMKE596GV/m4NASPTj5WKlLi2iR9t1ei6M7h08SLCbhub5tPhmYGAZW337gLDkiSdhF1lx/LlSp5hNg1RGIKABNLz4yjY3q+1ptso51KeT5e7tOM8RXJNeHHaOVKZ0C0jbqxC04aI/FejMDpMbfwr1RRnYtbk+TXyVn5SPAHOWfH9uKLw/KEoqqjEmjfGoHJH8fzh+wzthL82HmLCq9Q0DekZkALCnFlWKJ0oMxFFwkf2uFyu62RMAWipSe4zq42QF//y0fmw7Cr7ObzUe0WHayGmNdtaGQo6pbnD1tQ7D4zfQFOT93OW0dol2mUUuVFaaEo+yq1BzRgT3EI9TxAKPXVmEIV8g0/oDWDjOa9sNRypluWXlidZsTxkJ1tUUxMgoZXjszZgfvMSR4JGk/DhPBhpUL1Od5AOdH/9PJRPSDL0j8wH8wXo19AqmRl8w4jA66oP11zqozvzRsZjO4caDFVZsHnY6p2ZjEu1OksF6eMwGXizctNKt/WJ4c+KHxcAQDVgL2MVQ4/mfT52IoGNeSKpVV26Jhph6eqR/bqdHKECU7kXrbGkoRNl97GBzNhwhYSsggR9tWDFnllbBEcuII+F+ucTBnsqMnVr+LcCGgPPSgZg+gIzl9UhNRobxr1g0qCt1Km8Vgc1K0qPcyQ5p0lN2ZYzj5MhDvQuairA91XMzAp4A5tLPaR4FjBAmk6JgNtwX6Rezhvr7SHa2t50FysNitjhb3tMSQQVkhJ2qd2zMhpCvizxzOIOmFAfizbZ9W6hMtOeKy6tqSlW/zWmHixzsFwPyxMQMWD8gxAnHPMrJB56bqj/2aiEde4jX2iNw+UOywetxEaIu0Kse0JkDQ1nwb3HgQTXsOMH4ycjm1FSKO1CrI9/4j5Wl7AfeBVUKSaUqBUMwLn07nyQU/hJYnRDLXJhQ5msgVffjtuveZVvaDpgeLdu5e8RCt0IKkKg7+foGCr3A08g5Q9+Pcp+dSyGppUGyVtTrKOEDhY4eIBhLtJQwBn0oakgAj95B/1+yjLgP/wlN20XVo2x0wQ5rP+QzeuyUOQXbFNvagn0/rzAy/+2z8L6k5iJ50pK2YzXyDCqPu40Lj2hm72hyIE/+1fsCU/yfFbm1QI4NARVRBUN7H9xmfUjajrotXfbXaZglc/jUF1QQrTh65rhzwBh73oPmU1vuXSEFox9IrE5wlfbCzc5hU93hF2bNTeckCEBZd+yRJHPkzILiDK0IFi+VKoNMuKjxM54rmQUXgz02XqLYBxVNWF6I5/k22+n+TNDPlBN+MI9FdRqLW+ehizphNQUkujBavhNPdnzwcWHuIUS+Ym8UB0/bi5G7h752hEUQT0dMj997wpjXwd2TsT8Mqtc6fMwl4l1gXMcMHlSa+Zu0H5MwM3ZrttwIuK4i+Em9gZdG2yXChHx7w2i704Z8t8CAKh+CeIU0KhtdozlITFdSlDB2yDSDSRC/+ocXqrXYSx8mq8rYL9E4FZzx4sYTX1G6WyZb8qp1VkXbhsRvAcmXY0NFjkzskLAu9SSCsycl+VgtX1wljQxH3wGJhy0INAGqlhs22XARNk00XmY55rnedHYSDrphCbdU9qbyE7QqUPvcK4nPGG7IplAdEuYQsbPNnbDWjDNjoqaHlR5nnkywU2o6ixqGSWDpOYhz9K6PHzNop85oeKR9T8FXRJFBhxYVIWjBh3pUu3Q2XKVwcjLi0ERDzG9OSPYZREwv75hQAXW2GaqeoFuDnQG83RmJl6WMsKy1YfyNIRM+gUTN8ftdZSV/XAM1dxnlSxkNbHViXlC1hj2++04gyGjWnuImdikzcbCX0KtrywvojHzXj9pJLOa5ryx8+GpNI8ZKBzKdjw/XbEonBrtJ6cnXvl/ci5/8BBGe1NG4yDT/NFcV/S+X22d8oLG53mXDUOzSY5+2burCwj95snB1rv64yfZFUyFHxB/9x4MYoW1V83CKcls+A1SY5HNOEXWpT3Pr2x5O4uGIKG507ZOIJs4WBEdaM1ldZSpAULTo0MYjF4b5ZBAE/VOzggXVkni4g4jBwEhmSiEauc53bQ0NqKc5cSw1DDrS0K7XDhW+s5NXIDE46lW4/QoeyfAhzM1VO8eq58SinY+MdLVkl4TsaLTWfwiR+lV2+tu7SCNMTswaiscew898AZ/0WQaz/IcxuuG4AVtt5y3WREQP+ekaPXyHqOEPD4NZ9hTmO/qhVPcJNZVMHqIsL2CuZxHQHoXt8FO0prEFkpzWfkCj7qA3fun1AOvAouck+NAtW7a/bohKPx3hs9nwuzyTMCUCM9ZAf1Ur6IrFu4fhSpN9U2ZMJ/2JfHEv+jT8FMXDNJ1ebA7+BNbTGBGqghvi8Zq93PV4xtVIZaukleAFv0WoJWK8jRkYMDjuYZuAkTMjl59kc7RPamAvEHxCGc3KSeetIXph+tZsFNHFbtJVLUhRzxrIeNmaVVwEtkrt2b+lBgKMHh7oFRyk+/ZbsSTxqZY0UuobWitFKdF2h3xnxJnyhOPeA+wHobXQQucdeUULkfZY7GYVoNFonNQyuM6QR4dRH+5aglsz9YaQ30Itw4VS15A+vDA0UYAhMN6gC/mi4tJJ/qfEJ+sYbgjbPbrW6YVixoS2jeQvtK29ZgDZh5KaXKUkAVqwMiauQ2WzPwB1Wd+RTVdPxcButRBr1VQ3y8zY0lASgyECWEFlR8lJhXuc9n0vsziTnNhDqRM/SC5Ce2ZEnZO9Qonq+Snlev/7uyTzUx/p6kgOROBx8bI8ik5iGX+Y/1BvfpgBmD2Ne1Brvw0SaWnOppacCPQMmbmHJrdAwA/UQSQCdwTQ7idK9UiZ5FwtRon/vYUMLRG17riRblXSIvqmBQd12HIWBsbszRgHDmRydLywhrfBnsSa4r3zmT2vsEwz4rX8ZWhRycT7yCs4YmhOJmFEEvQF5pmBEFqTgDqabqf+U2UyVTbc3Hi40BCnzUrJkF+6vqDt0FpgHTZnuofn5MapD+jO1hEtw6KuiGmpRoBsxE9jOKtZRCHeRQkXOE3L5ivuksj3aOm4KWqDjaKhXg+R3fG120uAghcgrbAldAit819oVBIuogubIgcav/F5sth0KRHDCahFY1zkVEa9EhwWiUfXXhXo371id0QMYcvwlgO24356ydTQndf/TihiXD2YOo/hCHwbnT3iKr+Yt+srIAwxTRGpg6lEjqiDtJz09jGDD0/1TaXPvz19KYALJ4/jTh6TOcCBcyg4WwUzeemZYxx9G5nlCiwcIRT9I7NK445RLIA+02eN/UxddBjhXl3SRfBZUhFlCggq5J9Y79hGHpbAkYNXFHla/jsRhLZx4V3WmIpCHKNK+4wMymI7vkvzsSSlSJw0kweLjXNN+n/e9rODUZksc0RgNOXYZEU99kVn89kER5XjJNRGprdSQjzOzTNAFX7wg9ID52qvTZBb3jcxxE8ffjydVBgLOo7D4CWEOryTh7BAYgwpLtOUUg73v9DEOMuHWjZ7ZsyxrqK+FL09RXEmnPsvArRJpjU7FYWcWSRN8rK+pdhHeEC/6RNbVRztmbo1zYQc5/6Mml4/2o4QCv5b4Xno9pb0ECU2C9KzLe07FK3MYnzihP5cuXviBTd+sgMOV5A1VNkIkP37oprcCXIfqvpBtOg5oHdhP/NbI+EwQZhTerdF4olKpJ09c1+G+c7GsfkCpUAMAGpndMGHAtuvv4lcGsssgdLXBWnure42byHcWshcEpXzbXKg6xw4MrhtPKEkJLhxLgF/GrwaY265G4vBMF/MQYHmsjvaen6RFLPbcIBTaEoc/Z34/eYvra8vcnWFcxhTtBoTIDXLIQn8QaReXWUhxkCcGhzqPKBeeQi0Q6ABCoxcg/LBztZ5KOPCvsxA5s82wYXJ15LvrKp5k9u9/Fwo8D9j1stBhNwwY61dUr8+BBNL7dacgy+ibe5dXz0HgvvFO998ep85w+nAWe8u4+fL16lX2Prg3Geh1byoj6hREId3pZJvIt/ZoR8qfpzxYSCX57jvMmQSz0vF5btfpAwco9Ica0/FU1inDel1NGeTnxZmKaC2oXRCcYXjLkcbgQBi5UtRkeVvnbs0m7/6T8OBvPMqlrgGwBhKhqI7krIN9ROYJXQmbn5Y8S3KUFmCIaLCFJO+uRpkVMnUBwL4Tt9UGDoqU4V3aIR9mGdeZ7smYcJyD6qwRTMZwPlPL27hDH4Dm/F1MK+v/IqySjQl2DYa8WWy5+aCmN0XnhYvG3G7mfLBFFwLI3lOT0UNo5142n9hCzV+JSErIVfaka/CdqIGUr5AkLYo2ElueMCJ8nph/SPhAlldfsSJb+c4TGG4lB7f01aHrM9T0YZmANdrrwm7RjbJnQXumAPegoMAuXcxeTUzkFyJDGScx9s+ADUyRxxyDkcSOdMIebQOqRGQRCN/LjFU+o+f6U37jyhnhEnB0QfYfuXGO2ybrA8yiNwdqOJfSOKZaEPPnG81hoETgC6dWJN3flpWFGeZCKoA2A1TqWbYgumHt++cqxLjjXSuxlMZTjyfDi33HfQwSnS5u0TnahRxZTStQazoOcRVorIcKyLRIh8+hXGzOkqEzTrzZs+fr5roVjWgPXj67FfYWuMym5SHdFcjmgusVuWW8f2dXwrJbuYzeSrXPRp6CaJW46s61V/b+qCUGq3Ib5XMAClIgaX8S2Js6KVQ1AawUZQ9Om/L/Tbborgzmy77Cxy2SQnq+2ID8/4TgJEFHrkA7+wskPtz7U75X3ax6vc1TVEjkSXEX0N3cAR6unAHd+VWIknxv++UAtTDP3f4fIWB9uhox/GWjbD6brPq49NS3RmfMZ8sGqPhUHrKPQFPbir48noIRylqE0yebZJf+A/cddaICsuMAYG2ZT2Tuhdm85Z6YCA6Cszyt77iR2ZL2Iv1c0qItB1E1DWku4lRt0aLFFxx1qNVZsG/RSLbD6NiNgSmSmUMQbGpjjLGEPhw2jBUE/0/cvp862Gn/2mdiCzizM2XwagQq3TkkS+5EIZSJF74hImn9+SnwxYmJ65d9fotY4U/1Y+wgtw1Hc1SFNlD82A7aFyWIDecGbYOhyrT4BKggPQgRqaU7kUOlWMRR0U4yJPTxguq8avsaH4OrDjSFDaCY5k/02SLAP3RZRw1DCD+4GNrrcIX4dggC/9c1KV0BW0o7jp+kJDrUkSXOzm7CIskBytbdz+Bcuxox/axJYOSdTMXmqIBWPVor5ZqHR1NShHQlxBeQ/E1IOz1LjhceuS10syeIe3csx96yE6eKKtosLpD4dboXL/4ffnBn3qWgkeTC1Erk/kMu/ZLgi4QhfSWDKazMWKO0LIQ09OmTqYYiBHwuIpd3kvgW7i1cspXlmuOzJaFVF+l9u5W4m4rFi8snIpQjPozPk9RvaEkthx1t2tbpMHP8x4GMylWHKlODfZ9k4wBGUkYZSsCl6NzGTAGe0NSqnfZTYoRnIdOIemj5pozjVk68rCNiEtSd4W7aC2DBH9jyUpgfHpgDbtKZRNwXbMzk6r1oe9AhRbg+H/LBk87Y1bm+rDghOdyvAY9Q6HHBroOqhfLhmJ0OvHKx7vJm0Vhpp05vSHB32T1wL5QjCcJDtVwyqP3VTSQ3B37NzJAGk1Ogzb4QEJFz66TNYTqeTJbqf+3YqVftL30o9UojA7MB8wBwYFKw4DAhoEFCAUO1qfPnlbw7HCurHqfxQU6ZyiBBS8kGkralY8bGYQ5oQaBjCq2MJXfAICB9A=\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "11982" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "fd07dfd6-cd20-446d-b667-aec040e28413" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-correlation-request-id": [ "8020e31e-22fc-4986-b338-4749074a4a9b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181253Z:8020e31e-22fc-4986-b338-4749074a4a9b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "161" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value\",\"name\":\"redmond/value\",\"type\":\"Microsoft.ContainerRegistry.Setup/locations/setup\",\"properties\":{\"statusUri\":\"https://adminmanagement.redmond.ext-v.masd.stbtest.microsoft.com/subscriptions/731e84f5-d31e-4c6a-aa1d-546d6bfb2789/providers/Microsoft.ContainerRegistry.Setup/locations/local/setup?api-version=2019-11-01-preview\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 new file mode 100644 index 00000000..59c9221c --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 @@ -0,0 +1,19 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Start-AzsContainerRegistrySetup.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Start-AzsContainerRegistrySetup' { + $password = ConvertTo-SecureString "password" -AsPlainText -Force + $pfx_cert_path = Join-Path $PSScriptRoot 'SSL.pfx' + + { Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile $pfx_cert_path } | Should Not Throw +} diff --git a/src/Azs.ContainerRegistry.Admin/test/env.json b/src/Azs.ContainerRegistry.Admin/test/env.json new file mode 100644 index 00000000..460a70c0 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/env.json @@ -0,0 +1,7 @@ +{ + "SubscriptionId": "7e41090c-4aa7-40bc-856a-a993f8fbd215", + "Tenant": "91d73aac-4fb0-4ff2-a437-9d18d1658671", + "ResourceGroup": "testrg", + "Location": "redmond", + "TenantSubscriptionId": "95990F40-5F11-490D-B323-9317191D347A" +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/loadEnvJson.ps1 b/src/Azs.ContainerRegistry.Admin/test/loadEnvJson.ps1 new file mode 100644 index 00000000..073159ad --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/loadEnvJson.ps1 @@ -0,0 +1,28 @@ +# ---------------------------------------------------------------------------------- +# +# 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. +# ---------------------------------------------------------------------------------- +$envFile = 'env.json' +if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' +} + +if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { + $envFilePath = Join-Path $PSScriptRoot $envFile +} else { + $envFilePath = Join-Path $PSScriptRoot '..\$envFile' +} +$env = @{} +if (Test-Path -Path $envFilePath) { + $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json + $PSDefaultParameterValues = @{"*:SubscriptionId" = $env.SubscriptionId; "*:Tenant" = $env.Tenant; "*:Location" = $env.Location; "*:ResourceGroupName" = $env.ResourceGroup } +} \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/test/ssl.pfx b/src/Azs.ContainerRegistry.Admin/test/ssl.pfx new file mode 100644 index 00000000..7ba73ef6 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/ssl.pfx @@ -0,0 +1,33 @@ +-----BEGIN CERTIFICATE----- +MIIFtTCCA52gAwIBAgIQIbEW169pWa1PaAk258A4YjANBgkqhkiG9w0BAQsFADAw +MS4wLAYDVQQDDCVBenVyZVN0YWNrU2VsZlNpZ25lZEludGVybWVkaWF0ZTJDZXJ0 +MB4XDTIxMDgxMjE2MDUyMloXDTIyMDgxMjE2MTQ1NlowQzFBMD8GA1UEAww4Ki5h +enNhY3IuUmVkbW9uZC5FeHQtbjI1cjEzMDgubWFzZC5zdGJ0ZXN0Lm1pY3Jvc29m +dC5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCg4aQN093Sm7EH +UtsH51VpEklhS+yQ9NayZBJhy9EkrLqS7NpJkKrLqtQuoqkT+p7EuOSPW9DWHNEp +IK5YVItUcrHdqPzVPZKegQyPylpB35X1QTW2XpnV27lGVBFXWHBj5WwRJPsLf0GG +u+VR2Pk8AdzOhXe6ikurt9TiVLHy0QGpKPFgMhE7bYqK72qNjOPCn8wbZDY2y74+ +5YGyzLBkOlbw1SnwsKT7feSl7K5pb/07HuKVBugwGGxaPowjVo+qFmEfybRQgm9C +Wj6RM9sAgeCPZFZXHU9kNQuGEPmXe70ZvsYeQACR5Uj1FHIkNAY8wieWh5udqefk +iDt7W3p0kMgyVSrfJ3ZwwvWyO6dn8CH4B5Cldgm5O5jO6RjZ03o2kUK2eiZUgm3I +fJesOuxFarBapTuOMhy+GArdVJ4JMfBjLWv3erV/vU7svhVpPGZXEnIuO4faoCar +deSRMxCs2bAd8eC2gB1NhVOqMaC4olMewXT4Dc/s0zkdzq9xBfZJfVhElW2KAfio +Tyf16wqyt0HDJRvrq+g50rHvEBHwJohfQiLnBzqFepDNwCjQdNQeAlqZyrDOLA+B +kP9P5c55Wr+X2g4LlES0R5I13FU1VRqFWcWcox4HQJTEp4Jeliw/czIE/B/r1SL4 +6KOA1Vy2GwnOLFLs3hkuIphUaCTxDQIDAQABo4G3MIG0MA4GA1UdDwEB/wQEAwIF +oDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwEwQwYDVR0RBDwwOoI4Ki5h +enNhY3IuUmVkbW9uZC5FeHQtbjI1cjEzMDgubWFzZC5zdGJ0ZXN0Lm1pY3Jvc29m +dC5jb20wHwYDVR0jBBgwFoAUAxARr7cmiov/9sGAi1IiSR2anB8wHQYDVR0OBBYE +FDSU80b3L6DdAFJsAn2s4KkGnpLEMA0GCSqGSIb3DQEBCwUAA4ICAQAwoptpy7dX +6qJkpExM/dz9yiKklPU3H72omLhfMLcj7ywlpF1HsdEmkSheeoawRDfj0hLIwgte +OSuYkTUOBuEfDtUiSnOO+32mMatE2779dYABYQe3wo96GwW02fkVwfmyvXxglNeM +acBQJ4GwhlywEWgcwMebdA49J7xUTg4RsVqokMEhVxnL5QQ4saX20P0tnDgtVWa1 +djmai3riqM0m4SNm8SIciEzaQ1+EymDiJyqK8qnqBEQqLhZMEiifcp2/Oc5TcZ7C +YO6IimBlhwmFXDWuABehQFiFVjynGVbnPN5VwRzlP0+OdSM/TsqZl6BAM7cC+KQu +GxUffKCbu1WzPkT3o+JrklMNbtuyZFLjVc+mBFqtqnFHIESKt7oyUiIoqYXOKZEA +RekgSi0mlUpnP7KfnQUW6dD+1b1v8jbIA1BfnofKzD55pbAXaH1OLoZDdBwWAK+s +nJJlxEw11ki5PdNu5JN4phKyze6BCZS93trySj3hH2D1fSX2mF0FRzE/6jPoISgp +cIGeG5XUReA4eWAuzZiqXktVyf4Vu63q+2Fi8vp+2abyyV+MMMvCv2wTnTYy53XO +dpAAiTobuQ+PWmgDUtciBnnAc4WJc7KKH97OQ0PMTo+woV5zvZsGj8YKYMaMUCTj +Sd6Ud8FMGZrQQ59p9C3TiwEDERxrRcxw+g== +-----END CERTIFICATE----- diff --git a/src/Azs.ContainerService.Admin/docs/Azs.ContainerService.Admin.md b/src/Azs.ContainerService.Admin/docs/Azs.ContainerService.Admin.md new file mode 100644 index 00000000..cb958534 --- /dev/null +++ b/src/Azs.ContainerService.Admin/docs/Azs.ContainerService.Admin.md @@ -0,0 +1,19 @@ +--- +Module Name: Azs.ContainerService.Admin +Module Guid: ceb3fb10-8099-4398-b7a0-1b613eb62bc2 +Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azs.containerservice.admin +Help Version: 1.0.0.0 +Locale: en-US +--- + +# Azs.ContainerService.Admin Module +## Description +Microsoft AzureStack PowerShell: ContainerService Admin cmdlets + +## Azs.ContainerService.Admin Cmdlets +### [Get-AzsContainerService](Get-AzsContainerService.md) +Returns a list of managed clusters present in all tenant location. + +### [Get-AzsContainerServiceQuota](Get-AzsContainerServiceQuota.md) +Returns a list of container service quotas at the given location. + diff --git a/src/Azs.ContainerService.Admin/docs/Get-AzsContainerService.md b/src/Azs.ContainerService.Admin/docs/Get-AzsContainerService.md new file mode 100644 index 00000000..6b26d434 --- /dev/null +++ b/src/Azs.ContainerService.Admin/docs/Get-AzsContainerService.md @@ -0,0 +1,119 @@ +--- +external help file: +Module Name: Azs.ContainerService.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerservice.admin/get-azscontainerservice +schema: 2.0.0 +--- + +# Get-AzsContainerService + +## SYNOPSIS +Returns a list of managed clusters present in all tenant location. + +## SYNTAX + +``` +Get-AzsContainerService [-Location ] [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Returns a list of managed clusters present in all tenant location. + +## EXAMPLES + +### Example 1: Get list of managed clusters +```powershell +PS C:\> Get-AzsContainerService -Location "redmond" | ConvertTo-Json +[ + { + "CreationDate": "2021-08-24T21:33:46Z", + "Id": "/subscriptions/f9712d12-aa4d-4d37-8f46-fabf3c07c836/providers/Microsoft.ContainerService.Admin/locations/redmond/managedclusters/testaksux", + "Location": "redmond", + "Name": "redmond/testaksux", + "OrchestratorVersion": "1.19.11", + "PropertiesId": "/subscriptions/16661f04-6eca-4ccb-acef-3624fc128005/resourcegroups/testaksuxrg/providers/Microsoft.ContainerService/managedClusters/testaksux", + "PropertiesName": "testaksux", + "ProvisioningState": "Succeeded", + "SubscriptionId": "16661f04-6eca-4ccb-acef-3624fc128005", + "Type": "Microsoft.ContainerService.Admin/locations/managedclusters" + }, + { + "CreationDate": "2021-08-25T20:02:38Z", + "Id": "/subscriptions/f9712d12-aa4d-4d37-8f46-fabf3c07c836/providers/Microsoft.ContainerService.Admin/locations/redmond/managedclusters/testaksaddon", + "Location": "redmond", + "Name": "redmond/testaksaddon", + "OrchestratorVersion": "1.19.11", + "PropertiesId": "/subscriptions/a174daa5-4b9c-4745-8d80-ca8a6c1e2279/resourcegroups/testaksaddonrg/providers/Microsoft.ContainerService/managedClusters/testaksaddon", + "PropertiesName": "testaksaddon", + "ProvisioningState": "Succeeded", + "SubscriptionId": "a174daa5-4b9c-4745-8d80-ca8a6c1e2279", + "Type": "Microsoft.ContainerService.Admin/locations/managedclusters" + } +] +``` + +Returns a list of all tenant container service clusters. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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 + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerServiceAdmin.Models.Api20191101.IContainerServicesListValueItem + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/Azs.ContainerService.Admin/docs/Get-AzsContainerServiceQuota.md b/src/Azs.ContainerService.Admin/docs/Get-AzsContainerServiceQuota.md new file mode 100644 index 00000000..787b4db9 --- /dev/null +++ b/src/Azs.ContainerService.Admin/docs/Get-AzsContainerServiceQuota.md @@ -0,0 +1,99 @@ +--- +external help file: +Module Name: Azs.ContainerService.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerservice.admin/get-azscontainerservicequota +schema: 2.0.0 +--- + +# Get-AzsContainerServiceQuota + +## SYNOPSIS +Returns a list of container service quotas at the given location. + +## SYNTAX + +``` +Get-AzsContainerServiceQuota [-Location ] [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Returns a list of container service quotas at the given location. + +## EXAMPLES + +### Example 1: Get Quota for Container Service +```powershell +PS C:\> Get-AzsContainerServiceQuota -Location "redmond" | ConvertTo-Json +{ + "Id": "/subscriptions/f9712d12-aa4d-4d37-8f46-fabf3c07c836/providers/Microsoft.ContainerService.Admin/locations/redmond/quotas/Unlimited", + "Name": "redmond/Unlimited", + "PropertiesName": "Unlimited", + "Type": "Microsoft.ContainerService.Admin/locations/quotas" +} +``` + +Returns a quota for container service. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +The name of Azure region. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzLocation)[0].Location +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +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 + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.ContainerServiceAdmin.Models.Api20191101.IContainerServiceQuotaListValueItem + +## NOTES + +ALIASES + +## RELATED LINKS + diff --git a/src/Azs.ContainerService.Admin/docs/readme.md b/src/Azs.ContainerService.Admin/docs/readme.md new file mode 100644 index 00000000..c5081e18 --- /dev/null +++ b/src/Azs.ContainerService.Admin/docs/readme.md @@ -0,0 +1,11 @@ +# Docs +This directory contains the documentation of the cmdlets for the `Azs.ContainerService.Admin` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overriden on regeneration*. To update documentation examples, please use the `..\examples` folder. + +## Info +- Modifiable: no +- Generated: all +- Committed: yes +- Packaged: yes + +## Details +The process of documentation generation loads `Azs.ContainerService.Admin` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder. \ No newline at end of file diff --git a/src/Azs.ContainerService.Admin/examples/Get-AzsContainerService.md b/src/Azs.ContainerService.Admin/examples/Get-AzsContainerService.md new file mode 100644 index 00000000..2905fa60 --- /dev/null +++ b/src/Azs.ContainerService.Admin/examples/Get-AzsContainerService.md @@ -0,0 +1,32 @@ +### Example 1: Get list of managed clusters +```powershell +PS C:\> Get-AzsContainerService -Location "redmond" | ConvertTo-Json +[ + { + "CreationDate": "2021-08-24T21:33:46Z", + "Id": "/subscriptions/f9712d12-aa4d-4d37-8f46-fabf3c07c836/providers/Microsoft.ContainerService.Admin/locations/redmond/managedclusters/testaksux", + "Location": "redmond", + "Name": "redmond/testaksux", + "OrchestratorVersion": "1.19.11", + "PropertiesId": "/subscriptions/16661f04-6eca-4ccb-acef-3624fc128005/resourcegroups/testaksuxrg/providers/Microsoft.ContainerService/managedClusters/testaksux", + "PropertiesName": "testaksux", + "ProvisioningState": "Succeeded", + "SubscriptionId": "16661f04-6eca-4ccb-acef-3624fc128005", + "Type": "Microsoft.ContainerService.Admin/locations/managedclusters" + }, + { + "CreationDate": "2021-08-25T20:02:38Z", + "Id": "/subscriptions/f9712d12-aa4d-4d37-8f46-fabf3c07c836/providers/Microsoft.ContainerService.Admin/locations/redmond/managedclusters/testaksaddon", + "Location": "redmond", + "Name": "redmond/testaksaddon", + "OrchestratorVersion": "1.19.11", + "PropertiesId": "/subscriptions/a174daa5-4b9c-4745-8d80-ca8a6c1e2279/resourcegroups/testaksaddonrg/providers/Microsoft.ContainerService/managedClusters/testaksaddon", + "PropertiesName": "testaksaddon", + "ProvisioningState": "Succeeded", + "SubscriptionId": "a174daa5-4b9c-4745-8d80-ca8a6c1e2279", + "Type": "Microsoft.ContainerService.Admin/locations/managedclusters" + } +] +``` + +Returns a list of all tenant container service clusters diff --git a/src/Azs.ContainerService.Admin/examples/Get-AzsContainerServiceQuota.md b/src/Azs.ContainerService.Admin/examples/Get-AzsContainerServiceQuota.md new file mode 100644 index 00000000..ab08784e --- /dev/null +++ b/src/Azs.ContainerService.Admin/examples/Get-AzsContainerServiceQuota.md @@ -0,0 +1,12 @@ +### Example 1: Get Quota for Container Service +```powershell +PS C:\> Get-AzsContainerServiceQuota -Location "redmond" | ConvertTo-Json +{ + "Id": "/subscriptions/f9712d12-aa4d-4d37-8f46-fabf3c07c836/providers/Microsoft.ContainerService.Admin/locations/redmond/quotas/Unlimited", + "Name": "redmond/Unlimited", + "PropertiesName": "Unlimited", + "Type": "Microsoft.ContainerService.Admin/locations/quotas" +} +``` + +Returns a quota for container service diff --git a/src/Azs.ContainerService.Admin/readme.md b/src/Azs.ContainerService.Admin/readme.md new file mode 100644 index 00000000..0892c541 --- /dev/null +++ b/src/Azs.ContainerService.Admin/readme.md @@ -0,0 +1,87 @@ + +# Azs.ContainerService.Admin +This directory contains the PowerShell module for the ContainerServiceAdmin service. + +--- +## Status +[![Azs.ContainerService.Admin](https://img.shields.io/powershellgallery/v/Azs.ContainerService.Admin.svg?style=flat-square&label=Azs.ContainerService.Admin "Azs.ContainerService.Admin")](https://www.powershellgallery.com/packages/Azs.ContainerService.Admin/) + +## Info +- Modifiable: yes +- Generated: all +- Committed: yes +- Packaged: yes + +--- +## Detail +This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. + +## Module Requirements +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 or greater + +## Authentication +AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. + +## Development +For information on how to develop for `Azs.ContainerService.Admin`, see [how-to.md](how-to.md). + + +## Generation Requirements +Use of the beta version of `autorest.powershell` generator requires the following: +- [NodeJS LTS](https://nodejs.org) (10.15.x LTS preferred) + - **Note**: It *will not work* with Node < 10.x. Using 11.x builds may cause issues as they may introduce instability or breaking changes. +> If you want an easy way to install and update Node, [NVS - Node Version Switcher](../nodejs/installing-via-nvs.md) or [NVM - Node Version Manager](../nodejs/installing-via-nvm.md) is recommended. +- [AutoRest](https://aka.ms/autorest) v3 beta
`npm install -g autorest@beta`
  +- PowerShell 6.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g pwsh`
  +- .NET Core SDK 2.0 or greater + - If you don't have it installed, you can use the cross-platform npm package
`npm install -g dotnet-sdk-2.2`
  + +## Run Generation +In this directory, run AutoRest: +> `autorest` + +--- +### AutoRest Configuration +> see https://aka.ms/autorest + +``` yaml +require: + - $(this-folder)/../readme.azurestack.md + - $(repo)/specification/azsadmin/resource-manager/containerservice/readme.azsautogen.md + +metadata: + description: 'Microsoft AzureStack PowerShell: ContainerService Admin cmdlets' + +### PSD1 metadata changes +subject-prefix: '' +module-version: 0.1.0 +service-name: ContainerServiceAdmin + +### File Renames +### IMPORTANT - Note that the following settings are case sensitive ### +module-name: Azs.ContainerService.Admin +csproj: Azs.ContainerService.Admin.csproj +psd1: Azs.ContainerService.Admin.psd1 +psm1: Azs.ContainerService.Admin.psm1 +``` + +### Parameter default values +``` yaml +directive: + +# Add release notes + - from: Azs.ContainerService.Admin.nuspec + where: $ + transform: $ = $.replace('', 'AzureStack Hub Admin module generated with https://github.com/Azure/autorest.powershell.'); + +# Add Az.Accounts/Az.Resources as dependencies + - from: Azs.ContainerService.Admin.nuspec + where: $ + transform: $ = $.replace('', '\n '); + +# PSD1 changes for ReleaseNotes + - from: source-file-csharp + where: $ + transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'AzureStack Hub Admin module generated with https://github.com/Azure/autorest.powershell\'\"\);' ); +``` diff --git a/src/Azs.ContainerService.Admin/test/Get-AzsContainerService.Recording.json b/src/Azs.ContainerService.Admin/test/Get-AzsContainerService.Recording.json new file mode 100644 index 00000000..12026a6e --- /dev/null +++ b/src/Azs.ContainerService.Admin/test/Get-AzsContainerService.Recording.json @@ -0,0 +1,43 @@ +{ + "Get-AzsContainerService+[NoContext]+TestGetContainerService+$GET+https://management.azure.com/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/managedClusters?api-version=2019-11-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n31r1201.masd.stbtest.microsoft.com/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/managedClusters?api-version=2019-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1" ], + "x-ms-client-request-id": [ "68b5e6e1-3d73-404d-8677-7a5bc94d2197" ], + "CommandName": [ "Get-AzsContainerService" ], + "FullCommandName": [ "Get-AzsContainerService_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "2b39b838-c46d-4ae4-9518-91903936a705" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14990" ], + "x-ms-correlation-request-id": [ "50c0dbbe-bd7c-4ecb-9dfc-3ea57077d1d7" ], + "x-ms-routing-request-id": [ "REDMOND:20210816T232443Z:50c0dbbe-bd7c-4ecb-9dfc-3ea57077d1d7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 16 Aug 2021 23:24:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "2491" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/managedclusters/demok8s\",\"name\":\"redmond/demok8s\",\"type\":\"Microsoft.ContainerService.Admin/locations/managedclusters\",\"properties\":{\"id\":\"/subscriptions/650c424d-9945-4897-98ff-d33c9222be8b/resourcegroups/demok8s/providers/Microsoft.ContainerService/managedClusters/demok8s\",\"name\":\"demok8s\",\"location\":\"redmond\",\"creationDate\":\"2021-08-05T20:49:51+00:00\",\"subscriptionId\":\"650c424d-9945-4897-98ff-d33c9222be8b\",\"orchestratorVersion\":\"1.20.7\",\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/managedclusters/moassafakscni\",\"name\":\"redmond/moassafakscni\",\"type\":\"Microsoft.ContainerService.Admin/locations/managedclusters\",\"properties\":{\"id\":\"/subscriptions/650c424d-9945-4897-98ff-d33c9222be8b/resourcegroups/moassafRG/providers/Microsoft.ContainerService/managedClusters/moassafakscni\",\"name\":\"moassafakscni\",\"location\":\"redmond\",\"creationDate\":\"2021-08-11T18:21:30+00:00\",\"subscriptionId\":\"650c424d-9945-4897-98ff-d33c9222be8b\",\"orchestratorVersion\":\"1.20.7\",\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/managedclusters/moassafclustercni\",\"name\":\"redmond/moassafclustercni\",\"type\":\"Microsoft.ContainerService.Admin/locations/managedclusters\",\"properties\":{\"id\":\"/subscriptions/650c424d-9945-4897-98ff-d33c9222be8b/resourcegroups/moassafRG/providers/Microsoft.ContainerService/managedClusters/moassafclustercni\",\"name\":\"moassafclustercni\",\"location\":\"redmond\",\"creationDate\":\"2021-08-03T17:39:40+00:00\",\"subscriptionId\":\"650c424d-9945-4897-98ff-d33c9222be8b\",\"orchestratorVersion\":\"1.20.7\",\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/managedclusters/testdnscluster\",\"name\":\"redmond/testdnscluster\",\"type\":\"Microsoft.ContainerService.Admin/locations/managedclusters\",\"properties\":{\"id\":\"/subscriptions/650c424d-9945-4897-98ff-d33c9222be8b/resourcegroups/testdnsrg/providers/Microsoft.ContainerService/managedClusters/testdnscluster\",\"name\":\"testdnscluster\",\"location\":\"redmond\",\"creationDate\":\"2021-08-03T21:31:41+00:00\",\"subscriptionId\":\"650c424d-9945-4897-98ff-d33c9222be8b\",\"orchestratorVersion\":\"1.20.7\",\"provisioningState\":\"Succeeded\"}}]}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerService.Admin/test/Get-AzsContainerService.Tests.ps1 b/src/Azs.ContainerService.Admin/test/Get-AzsContainerService.Tests.ps1 new file mode 100644 index 00000000..0eae5a20 --- /dev/null +++ b/src/Azs.ContainerService.Admin/test/Get-AzsContainerService.Tests.ps1 @@ -0,0 +1,38 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerService.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsContainerService' { + BeforeEach { + function ValidateContainerService { + param( + [Parameter(Mandatory = $true)] + $ManagedClusters + ) + $managedClusters | Should Not Be $null + $managedClusters.orchestratorVersion | Should Not Be $null + $managedClusters.provisioningState | Should Not Be $null + } + } + + AfterEach { + $global:Client = $null + } + + It "TestGetContainerService" -Skip:$('TestGetContainerService' -in $global:SkippedTests) { + $global:TestName = 'TestGetContainerService' + + $result = Get-AzsContainerService -Location $env.Location + $result | Should Not Be $null + ValidateContainerService -ManagedClusters $result + } +} diff --git a/src/Azs.ContainerService.Admin/test/Get-AzsContainerServiceQuota.Recording.json b/src/Azs.ContainerService.Admin/test/Get-AzsContainerServiceQuota.Recording.json new file mode 100644 index 00000000..1fe3f89c --- /dev/null +++ b/src/Azs.ContainerService.Admin/test/Get-AzsContainerServiceQuota.Recording.json @@ -0,0 +1,43 @@ +{ + "Get-AzsContainerServiceQuota+[NoContext]+TestGetContainerServiceQuota+$GET+https://management.azure.com/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/quotas?api-version=2019-11-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n31r1201.masd.stbtest.microsoft.com/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/quotas?api-version=2019-11-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "2" ], + "x-ms-client-request-id": [ "9e7a786d-e8f4-479d-97d6-e859e405c608" ], + "CommandName": [ "Get-AzsContainerServiceQuota" ], + "FullCommandName": [ "Get-AzsContainerServiceQuota_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "a2a8094b-52bc-4bab-9460-792473abbc0d" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14988" ], + "x-ms-correlation-request-id": [ "f95c8f63-d22c-463b-b899-b24811dd70aa" ], + "x-ms-routing-request-id": [ "REDMOND:20210816T232445Z:f95c8f63-d22c-463b-b899-b24811dd70aa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Mon, 16 Aug 2021 23:24:45 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "270" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/40a8de27-eef0-47f4-b4e1-4168820581b8/providers/Microsoft.ContainerService.Admin/locations/redmond/quotas/Unlimited\",\"name\":\"redmond/Unlimited\",\"type\":\"Microsoft.ContainerService.Admin/locations/quotas\",\"properties\":{\"name\":\"Unlimited\"}}]}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Azs.ContainerService.Admin/test/Get-AzsContainerServiceQuota.Tests.ps1 b/src/Azs.ContainerService.Admin/test/Get-AzsContainerServiceQuota.Tests.ps1 new file mode 100644 index 00000000..0bf7a972 --- /dev/null +++ b/src/Azs.ContainerService.Admin/test/Get-AzsContainerServiceQuota.Tests.ps1 @@ -0,0 +1,37 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' +} +. ($loadEnvPath) +$TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerServiceQuota.Recording.json' +$currentPath = $PSScriptRoot +while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent +} +. ($mockingPath | Select-Object -First 1).FullName + +Describe 'Get-AzsContainerServiceQuota' { + BeforeEach { + function ValidateContainerServiceQuota { + param( + [Parameter(Mandatory = $true)] + $ManagedClustersQuota + ) + $managedClustersQuota | Should Not Be $null + $managedClustersQuota.name | Should Not Be $null + } + } + + AfterEach { + $global:Client = $null + } + + It "TestGetContainerServiceQuota" -Skip:$('TestGetContainerServiceQuota' -in $global:SkippedTests) { + $global:TestName = 'TestGetContainerServiceQuota' + + $result = Get-AzsContainerServiceQuota -Location $env.Location + $result | Should Not Be $null + ValidateContainerServiceQuota -ManagedClustersQuota $result + } +} diff --git a/src/Azs.ContainerService.Admin/test/env.json b/src/Azs.ContainerService.Admin/test/env.json new file mode 100644 index 00000000..ced1635d --- /dev/null +++ b/src/Azs.ContainerService.Admin/test/env.json @@ -0,0 +1,4 @@ +{ + "SubscriptionId": "40a8de27-eef0-47f4-b4e1-4168820581b8", + "Location": "redmond" +} \ No newline at end of file diff --git a/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec b/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec index 76d9e9fd..b2ac7741 100644 --- a/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec +++ b/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec @@ -2,7 +2,7 @@ Azs.Deployment.Admin - 1.0.0 + 1.0.1 Microsoft Corporation Microsoft Corporation true @@ -14,7 +14,7 @@ Azs.Deployment.Admin PSModule AzureStack - + diff --git a/src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 b/src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 index 4660e906..ea75c4c6 100644 --- a/src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 +++ b/src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 @@ -11,7 +11,7 @@ RootModule = 'Azs.Deployment.Admin.psm1' # Version number of this module. -ModuleVersion = '1.0.0' +ModuleVersion = '1.0.1' # ID used to uniquely identify this module GUID = 'a50d2cce-63a7-4c7b-980f-c4cead941544' @@ -50,7 +50,7 @@ CompatiblePSEditions = 'Core', 'Desktop' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'; }, @{ModuleName = 'Az.Resources'; RequiredVersion = '0.11.0'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'; }, @{ModuleName = 'Az.Resources'; RequiredVersion = '0.12.0'; }) # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() diff --git a/src/Azs.Fabric.Admin/readme.md b/src/Azs.Fabric.Admin/readme.md index be5888b3..921f31e9 100644 --- a/src/Azs.Fabric.Admin/readme.md +++ b/src/Azs.Fabric.Admin/readme.md @@ -72,7 +72,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 service-name: FabricAdmin ### File Renames @@ -660,12 +660,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Fabric.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 Changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Fabric.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Fabric.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 Changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Gallery.Admin/readme.md b/src/Azs.Gallery.Admin/readme.md index 01a533b5..72cfb883 100644 --- a/src/Azs.Gallery.Admin/readme.md +++ b/src/Azs.Gallery.Admin/readme.md @@ -58,7 +58,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 service-name: GalleryAdmin ``` @@ -108,12 +108,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Gallery.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Gallery.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Gallery.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.InfrastructureInsights.Admin/readme.md b/src/Azs.InfrastructureInsights.Admin/readme.md index 2d3007d6..529e39cd 100644 --- a/src/Azs.InfrastructureInsights.Admin/readme.md +++ b/src/Azs.InfrastructureInsights.Admin/readme.md @@ -58,7 +58,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 service-name: InfrastructureInsightsAdmin ### File Renames @@ -187,12 +187,8 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Infrastructureinsights.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); + transform: $ = $.replace('', '\n '); -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Infrastructureinsights.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Infrastructureinsights.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.KeyVault.Admin/readme.md b/src/Azs.KeyVault.Admin/readme.md index f83839e6..87ae549b 100644 --- a/src/Azs.KeyVault.Admin/readme.md +++ b/src/Azs.KeyVault.Admin/readme.md @@ -55,7 +55,7 @@ metadata: ### PSD1 metadata changes subject-prefix: 'Keyvault' -module-version: 1.0.1 +module-version: 1.0.2 service-name: KeyvaultAdmin ### File Renames @@ -74,12 +74,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Keyvault.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Keyvault.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Keyvault.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Network.Admin/readme.md b/src/Azs.Network.Admin/readme.md index 8eba1e22..cf0f4aaa 100644 --- a/src/Azs.Network.Admin/readme.md +++ b/src/Azs.Network.Admin/readme.md @@ -52,7 +52,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 service-name: NetworkAdmin ### File Renames @@ -183,12 +183,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Network.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Network.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Network.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Storage.Admin/readme.md b/src/Azs.Storage.Admin/readme.md index e44bf8f9..93e470bc 100644 --- a/src/Azs.Storage.Admin/readme.md +++ b/src/Azs.Storage.Admin/readme.md @@ -52,7 +52,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 service-name: StorageAdmin ### File Renames @@ -276,12 +276,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Storage.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Storage.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Storage.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Subscriptions.Admin/readme.md b/src/Azs.Subscriptions.Admin/readme.md index 48c29c7c..75170eb1 100644 --- a/src/Azs.Subscriptions.Admin/readme.md +++ b/src/Azs.Subscriptions.Admin/readme.md @@ -51,7 +51,7 @@ metadata: description: 'Microsoft AzureStack PowerShell: Subscriptions Admin cmdlets' subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 sanitize-names: false service-name: SubscriptionsAdmin @@ -369,12 +369,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Subscriptions.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.AzureBridge.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.AzureBridge.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Subscriptions/readme.md b/src/Azs.Subscriptions/readme.md index ebaac8a0..e905d9a5 100644 --- a/src/Azs.Subscriptions/readme.md +++ b/src/Azs.Subscriptions/readme.md @@ -68,7 +68,7 @@ prefix: Azs namespace: Microsoft.Azure.PowerShell.Cmdlets.$(service-name) subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 sanitize-names: false service-name: Subscription @@ -141,12 +141,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Subscriptions.nuspec where: $ - transform: $ = $.replace('', '\n '); + transform: $ = $.replace('', '\n '); # PSD1 changes for RequiredModules - from: source-file-csharp where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Subscriptions.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Subscriptions.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Subscriptions.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Subscriptions.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.12.0\'; \}\}\)\"\);'); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Update.Admin/readme.md b/src/Azs.Update.Admin/readme.md index a692c099..0364d869 100644 --- a/src/Azs.Update.Admin/readme.md +++ b/src/Azs.Update.Admin/readme.md @@ -51,7 +51,7 @@ metadata: description: 'Microsoft AzureStack PowerShell: Update Admin cmdlets' subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 service-name: UpdateAdmin ### File Renames @@ -171,12 +171,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Update.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Update.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.Update.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; RequiredVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/AzureStack/AzureStack.nuspec b/src/AzureStack/AzureStack.nuspec index 93fa0dee..2f44a76b 100644 --- a/src/AzureStack/AzureStack.nuspec +++ b/src/AzureStack/AzureStack.nuspec @@ -2,7 +2,7 @@ AzureStack - 2.1.1 + 3.0.0 Microsoft Corporation Microsoft Corporation true @@ -14,25 +14,27 @@ AzureStack ResourceManager ARM PSModule Administrator - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - \ No newline at end of file + diff --git a/src/AzureStack/AzureStack.psd1 b/src/AzureStack/AzureStack.psd1 index aa14816a..3a32c5fd 100644 --- a/src/AzureStack/AzureStack.psd1 +++ b/src/AzureStack/AzureStack.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. - ModuleVersion = '2.1.1' + ModuleVersion = '3.0.0' # Supported PSEditions # CompatiblePSEditions = @() @@ -56,22 +56,24 @@ # Modules that must be imported into the global environment prior to importing this module ### IMPORTANT - Note that the module names are case sensitive ### RequiredModules = @(@{ModuleName = 'Az.Accounts'; RequiredVersion = '2.2.8'; }, - @{ModuleName = 'Az.Resources'; RequiredVersion = '0.11.0'; }, - @{ModuleName = 'Azs.Azurebridge.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Backup.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Commerce.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Compute.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Deployment.Admin'; RequiredVersion = '1.0.0'; }, - @{ModuleName = 'Azs.Fabric.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Gallery.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Infrastructureinsights.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Keyvault.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Network.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Storage.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Subscriptions'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Subscriptions.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Update.Admin'; RequiredVersion = '1.0.1'; }, - @{ModuleName = 'Azs.Syndication.Admin'; RequiredVersion = '0.1.157'; }) + @{ModuleName = 'Az.Resources'; RequiredVersion = '0.12.0'; }, + @{ModuleName = 'Azs.Azurebridge.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Backup.Admin'; RequiredVersion = '2.0.0'; }, + @{ModuleName = 'Azs.Commerce.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Compute.Admin'; RequiredVersion = '1.2.0'; }, + @{ModuleName = 'Azs.Deployment.Admin'; RequiredVersion = '1.0.1'; }, + @{ModuleName = 'Azs.ContainerRegistry.Admin'; RequiredVersion = '0.2.0'; }, + @{ModuleName = 'Azs.ContainerService.Admin'; RequiredVersion = '0.1.0'; }, + @{ModuleName = 'Azs.Fabric.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Gallery.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Infrastructureinsights.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Keyvault.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Network.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Storage.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Subscriptions'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Subscriptions.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Update.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Syndication.Admin'; RequiredVersion = '0.1.161'; }) # Assemblies that must be loaded prior to importing this module # RequiredAssemblies = @() @@ -127,7 +129,8 @@ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Bug fix - Add signing for a file under utils folder in each of the module' + ReleaseNotes = '*Requires AzureStack update 2108 + * Azs.ContainerRegistry.Admin and Azs.ContainerService.Admin modules has been added.' } # End of PSData hashtable diff --git a/src/changelog.md b/src/changelog.md new file mode 100644 index 00000000..7cf5c27a --- /dev/null +++ b/src/changelog.md @@ -0,0 +1,85 @@ +# Release 3.0.0 +* Requires AzureStack Update 2203+ +* Breaking changes in Azs.Backup.Admin module +## Azs.Backup.Admin module +* Adds support for configuring backup location as blob storage +* Removes Set-AzsBackupconfiguration and newly supports Update\Clear-AzsBackupConfiguration +* Update-AzsBackupConfiguration - either updates a part of the backup location configuration or sets it as a whole + * Migration examples + * Set backup location configuration as a whole + * Old usage + ``` + $location = Set-AzsBackupConfiguration -Username $username -Password $password -Path $path -EncryptionCertPath $encryptionCertPath -IsBackupSchedulerEnabled:$isBackupSchedulerEnabled -BackupFrequencyInHours $backupFrequencyInHours -BackupRetentionPeriodInDays $backupRetentionPeriodInDays + ``` + * New usage + ``` + $location = Update-AzsBackupConfiguration -Username $username -Password $password -Path $path -EncryptionCertPath $encryptionCertPath -IsBackupSchedulerEnabled:$isBackupSchedulerEnabled -BackupFrequencyInHours $backupFrequencyInHours -BackupRetentionPeriodInDays $backupRetentionPeriodInDays + + $location = Update-AzsBackupConfiguration -BlobStorageUrl $blobStorageUrl -BlobStorageKey $blobStorageKey -EncryptionCertPath $encryptionCertPath -IsBackupSchedulerEnabled:$isBackupSchedulerEnabled -BackupFrequencyInHours $backupFrequencyInHours -BackupRetentionPeriodInDays $backupRetentionPeriodInDays + ``` + * Update a part of the backup location configuration + * Old usage + ``` + $location = Set-AzsBackupConfiguration -Path $path -BackupRetentionPeriodInDays $backupRetentionPeriodInDays + ``` + * New usage + ``` + $location = Update-AzsBackupConfiguration -Path $path -BackupRetentionPeriodInDays $backupRetentionPeriodInDays + + $location = Update-AzsBackupConfiguration -BlobStorageUrl $blobStorageUrl -BackupRetentionPeriodInDays $backupRetentionPeriodInDays + ``` +* Clear-AzsBackupConfiguration - clears the backup location configuration + * Usage + ``` + $location = Clear-AzsBackupConfiguration + ``` +## Azs.Compute.Admin module +* Get-AzsComputeScaleUnit - Added admin support to view the tenant VM and compute node information of a target scale unit + + + + +# Release 2.2.0 +* Requires AzureStack Update 2108+ +## Azs.ContainerService.Admin module +* AzureStack AKS admin powershell commands to manage Container service admin operations +## Azs.ContainerRegistry.Admin module +* AzureStack Container Registry admin power shell commands to setup and manage Container Registry admin operations +## Azs.Compute.Admin module +* Added support for GPU Quotas (DDA and Partitioned GPU VM sizes) to limit tenant usage + * Affected cmdlets - Get\Set\New\Remove-AzsComputeQuota +* Added support for globally enabling/disabling or locally enabling/disabling features for tenant subscription IDs. + * Affected cmdlets - Enable\Disable-AzsComputeUserSubscriptionFeature, Get-AzsComputeFeature, Update-AzsComputeGlobalFeatureSetting +* Get-AzsDisk - adds support for viewing managed disk creation source of returned objects in Get-AzsDisk. +* Get-AzsDisk - adds support for querying the exclusive allocated size of a managed disk with Get-AzsDisk -DiskSizeDetail, AzureStack operator can use this size to estimate the space to be freed after migrating the specific disk. + +## All Modules +* All the operator modules are updated for Az.Resources dependency. Az.Resources module version is updated to 0.12.0 + +# Release 2.1.1 +* AzureStack operator module GA version 2.1.1 +* Bug fix release for signing a script file +* Bug fix in Az.BootStraper module to update the cache https://github.com/Azure/azurestack-powershell/issues/103 + +# Release 2.1.0-preview +* Requires AzureStack Update 2102+ +* AzureStack operator module GA version 2.1.0, coming out of preview +* AzureStack Operator module version 2.1.0. Requires AzureStack Hub Update 2102+, +* There are no breaking changes from the previous release 2.0.2-preview +* Compatible with AzureStack specific Az module version 1.10.0 +* The individual Azs.* module versions are updated to 1.0.0, marking GA +* Fabric Admin module adds support for changing the default Gpu partition on a GPU enabled Azure Stack hub with Set-AzsScaleUnit -NumberOfGPUPartition X + +# Release 2.0.2-preview +* Bug fix for the existing 2.0.1-preview release +* Included fix for the issue - https://github.com/Azure/azurestack-powershell/issues/23 + +# Release 2.0.1-preview +* Minor update to the existing 2.0.0-preview release +* Included fix for the issue - https://github.com/Azure/azurestack-powershell/issues/14 + +# Release 2.0.0-preview +* AzureStack module generated with [autorest powershell generator](https://github.com/Azure/autorest.powershell) +* This version is compatible with [Az](https://www.powershellgallery.com/packages/Az/0.10.0-preview) modules for AzureStack +* The module is supported on AzureStack versions with Update 2002 and the hotfix + diff --git a/src/readme.azurestack.md b/src/readme.azurestack.md index 358383d8..51c8c025 100644 --- a/src/readme.azurestack.md +++ b/src/readme.azurestack.md @@ -15,6 +15,11 @@ metadata: requireLicenseAcceptance: true licenseUri: https://aka.ms/azps-license projectUri: https://github.com/Azure/azurestack-powershell + requiredModules: + - name: Az.Accounts + version: 2.2.8 + - name: Az.Resources + version: 0.12.0 ``` > Names @@ -30,6 +35,12 @@ clear-output-folder: true output-folder: . ``` +> Exclude some properties in table view +``` yaml +exclude-tableview-properties: + - Id +``` + > Directives ``` yaml directive: @@ -60,4 +71,4 @@ directive: where: $ transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \{previewVersion\}\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'\{previewVersion\}\'\"\);' ); -``` \ No newline at end of file +``` diff --git a/tools/download-nupkg.ps1 b/tools/download-nupkg.ps1 index d99c3d2f..e7427f69 100644 --- a/tools/download-nupkg.ps1 +++ b/tools/download-nupkg.ps1 @@ -1,13 +1,13 @@ <# - This script downloads artifacts from Azure Devops with build ID $buildId using your personal access token - $personalAccessToken, and downloads the artifacts as zip files to $destinationFolder, where the .nupkg files will be + This script downloads artifacts from Azure Devops with build ID $BuildId using your personal access token + $AzSdkPersonalAccessToken, and downloads the artifacts as zip files to $DestinationFolder, where the .nupkg files will be extracted. - $buildId: The numerical ID of the build. If empty, the latest build ID number will be used. - $destinationFolder: The destination folder to download the artifacts and extract the nupkg. Defaults to the current + $BuildId: The numerical ID of the build. If empty, the latest build ID number will be used. + $DestinationFolder: The destination folder to download the artifacts and extract the nupkg. Defaults to the current script's directory. - $personalAccessToken: The personal access token granted to you from Azure Devops. Defaults to environment variable - named "PersonalAccessToken". + $AzSdkPersonalAccessToken: The personal access token granted to you from Azure Devops. Defaults to environment variable + named "AzSdkPersonalAccessToken". Sample headers: @@ -31,19 +31,19 @@ Get all artifacts of a build: $listArtifactsReq = @{ - Uri = "https://dev.azure.com/azure-sdk/internal/_apis/build/builds/${buildId}/artifacts?api-version=5.1" + Uri = "https://dev.azure.com/azure-sdk/internal/_apis/build/builds/${BuildId}/artifacts?api-version=5.1" Headers = $headers } #> Param ( - [string]$buildId, - [string]$destinationFolder = $PSScriptRoot, - [string]$personalAccessToken = $env:PersonalAccessToken + [string]$BuildId, + [string]$DestinationFolder = $PSScriptRoot, + [string]$AzSdkPersonalAccessToken = $env:AzSdkPersonalAccessToken ) -$user = $personalAccessToken -$pass = $personalAccessToken +$user = $AzSdkPersonalAccessToken +$pass = $AzSdkPersonalAccessToken $pair = "${user}:${pass}" $bytes = [System.Text.Encoding]::ASCII.GetBytes($pair) $base64 = [System.Convert]::ToBase64String($bytes) @@ -51,8 +51,8 @@ $basicAuthValue = "Basic $base64" $headers = @{ Authorization = $basicAuthValue } $apiVersion = "5.1-preview" -# If the $buildId is empty string, download from the latest build. -if ($buildId -eq "") +# If the $BuildId is empty string, download from the latest build. +if ($BuildId -eq "") { $buildReq = @{ Uri = "https://dev.azure.com/azure-sdk/internal/_apis/build/latest/azurestack-powershell%20-%20gen-sign?branchName=dev&api-version=${apiVersion}" @@ -60,11 +60,11 @@ if ($buildId -eq "") } $result = Invoke-RestMethod @buildReq -Method Get - $buildId = $result.buildNumber + $BuildId = $result.buildNumber } $listArtifactsReq = @{ - Uri = "https://dev.azure.com/azure-sdk/internal/_apis/build/builds/${buildId}/artifacts?api-version=${apiVersion}" + Uri = "https://dev.azure.com/azure-sdk/internal/_apis/build/builds/${BuildId}/artifacts?api-version=${apiVersion}" Headers = $headers } @@ -82,8 +82,8 @@ foreach($resultValue in $result.value) { Uri = $resultValue.resource.downloadUrl Headers = $headers } - $downloadedModuleZips.add("${destinationFolder}\$($resultValue.name).zip") - Invoke-RestMethod @fileReq -Method Get -Outfile "${destinationFolder}\$($resultValue.name).zip" + $downloadedModuleZips.add("${DestinationFolder}\$($resultValue.name).zip") + Invoke-RestMethod @fileReq -Method Get -Outfile "${DestinationFolder}\$($resultValue.name).zip" } <##################################### @@ -95,7 +95,7 @@ $extractedModulesFolder = New-Object System.Collections.Generic.List[System.Obje foreach($moduleZip in $downloadedModuleZips) { - $expanded = Expand-Archive -LiteralPath $moduleZip -DestinationPath $destinationFolder -Force -PassThru + $expanded = Expand-Archive -LiteralPath $moduleZip -DestinationPath $DestinationFolder -Force -PassThru foreach($expandedFolder in $expanded) { @@ -119,7 +119,7 @@ foreach($extractedModuleFolder in $extractedModulesFolder) foreach($nupkg in $nupkgs) { - copy-item $nupkg -Destination $destinationFolder -Force + copy-item $nupkg.FullName -Destination $DestinationFolder -Force } Remove-Item -LiteralPath $extractedModuleFolder -Force -Recurse