From c5e5d3883666e983e4be7d19a19b8e5539de5a20 Mon Sep 17 00:00:00 2001 From: bganapa Date: Mon, 23 Aug 2021 13:20:29 -0700 Subject: [PATCH 01/34] ACR Admin module Initial version (#130) * Initial code changes * ACR auto-generating cmdlets. * ACR auto-generating cmdlets. - #2 * Add pester tests for all the cmdlets. * Add examples for all the cmdlets. * Increase vertion to 0.2.0 to avoid clashing with manually released 0.1.3 version. * Replace Read-AzsContainerRegistry to Get-AzsContainerRegistry. * Add missed Get-AzsContainerRegistry.Recording.json * Add docs for all cmdlets * Initial code changes * ACR auto-generating cmdlets. * ACR auto-generating cmdlets. - #2 * Add pester tests for all the cmdlets. * Add examples for all the cmdlets. * Increase vertion to 0.2.0 to avoid clashing with manually released 0.1.3 version. * Replace Read-AzsContainerRegistry to Get-AzsContainerRegistry. * Add missed Get-AzsContainerRegistry.Recording.json * Add docs for all cmdlets Co-authored-by: Rohit Jaini Co-authored-by: larisaborodina Co-authored-by: larisaborodina <58491292+larisaborodina@users.noreply.github.com> --- .../docs/Azs.ContainerRegistry.Admin.md | 46 ++++ .../docs/Get-AzsContainerRegistry.md | 104 ++++++++ .../docs/Get-AzsContainerRegistryCapacity.md | 159 +++++++++++ .../Get-AzsContainerRegistryConfiguration.md | 157 +++++++++++ .../docs/Get-AzsContainerRegistryQuota.md | 180 +++++++++++++ .../Get-AzsContainerRegistrySetupStatus.md | 138 ++++++++++ .../docs/New-AzsContainerRegistryQuota.md | 210 +++++++++++++++ ...emove-AzsContainerRegistryConfiguration.md | 192 ++++++++++++++ .../docs/Remove-AzsContainerRegistryQuota.md | 192 ++++++++++++++ .../Set-AzsContainerRegistryConfiguration.md | 194 ++++++++++++++ .../docs/Set-AzsContainerRegistryQuota.md | 210 +++++++++++++++ .../docs/Start-AzsContainerRegistrySetup.md | 227 ++++++++++++++++ .../docs/readme.md | 11 + .../examples/Get-AzsContainerRegistry.md | 19 ++ .../Get-AzsContainerRegistryCapacity.md | 16 ++ .../Get-AzsContainerRegistryConfiguration.md | 15 ++ .../examples/Get-AzsContainerRegistryQuota.md | 39 +++ .../Get-AzsContainerRegistrySetupStatus.md | 16 ++ .../examples/New-AzsContainerRegistryQuota.md | 15 ++ ...emove-AzsContainerRegistryConfiguration.md | 7 + .../Remove-AzsContainerRegistryQuota.md | 7 + .../Set-AzsContainerRegistryConfiguration.md | 14 + .../examples/Set-AzsContainerRegistryQuota.md | 15 ++ .../Start-AzsContainerRegistrySetup.md | 8 + src/Azs.ContainerRegistry.Admin/readme.md | 104 ++++++++ .../Get-AzsContainerRegistry.Recording.json | 43 +++ .../test/Get-AzsContainerRegistry.Tests.ps1 | 47 ++++ ...zsContainerRegistryCapacity.Recording.json | 43 +++ ...Get-AzsContainerRegistryCapacity.Tests.ps1 | 39 +++ ...tainerRegistryConfiguration.Recording.json | 43 +++ ...zsContainerRegistryConfiguration.Tests.ps1 | 38 +++ ...t-AzsContainerRegistryQuota.Recording.json | 248 ++++++++++++++++++ .../Get-AzsContainerRegistryQuota.Tests.ps1 | 89 +++++++ ...ontainerRegistrySetupStatus.Recording.json | 43 +++ ...-AzsContainerRegistrySetupStatus.Tests.ps1 | 42 +++ ...w-AzsContainerRegistryQuota.Recording.json | 78 ++++++ .../New-AzsContainerRegistryQuota.Tests.ps1 | 25 ++ ...tainerRegistryConfiguration.Recording.json | 160 +++++++++++ ...zsContainerRegistryConfiguration.Tests.ps1 | 26 ++ ...e-AzsContainerRegistryQuota.Recording.json | 195 ++++++++++++++ ...Remove-AzsContainerRegistryQuota.Tests.ps1 | 28 ++ ...tainerRegistryConfiguration.Recording.json | 115 ++++++++ ...zsContainerRegistryConfiguration.Tests.ps1 | 25 ++ ...t-AzsContainerRegistryQuota.Recording.json | 115 ++++++++ .../Set-AzsContainerRegistryQuota.Tests.ps1 | 83 ++++++ ...t-AzsContainerRegistrySetup.Recording.json | 38 +++ .../Start-AzsContainerRegistrySetup.Tests.ps1 | 19 ++ 47 files changed, 3877 insertions(+) create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md create mode 100644 src/Azs.ContainerRegistry.Admin/docs/readme.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistry.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryCapacity.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryConfiguration.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistrySetupStatus.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryConfiguration.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryQuota.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md create mode 100644 src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md create mode 100644 src/Azs.ContainerRegistry.Admin/readme.md create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Recording.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 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..fb3652a3 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md @@ -0,0 +1,46 @@ +--- +Module Name: Azs.ContainerRegistry.Admin +Module Guid: 27950488-3e83-458b-8797-6db82864cf62 +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-AzsContainerRegistryConfiguration](Remove-AzsContainerRegistryConfiguration.md) +Delete an existing container registry configuration + +### [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..e0058729 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md @@ -0,0 +1,104 @@ +--- +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 -------------------------- +```powershell +Get-AzsContainerRegistry +``` + +{ + "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" +} + +## 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..09d48121 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.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-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 -------------------------- +```powershell +Get-AzsContainerRegistryCapacity +``` + +{ + "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" +} + +## 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..1bf60f9d --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md @@ -0,0 +1,157 @@ +--- +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 -ConfigurationName [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzsContainerRegistryConfiguration -InputObject + [-DefaultProfile ] [] +``` + +## DESCRIPTION +Returns the specified configuration details. + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +Get-AzsContainerRegistryConfiguration +``` + +{{ + "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" +} + +## PARAMETERS + +### -ConfigurationName +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 +``` + +### -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.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..7129de57 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.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/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 -------------------------- +```powershell +Get-AzsContainerRegistryQuota +``` + +[ + { + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota", + "Name": "redmond/Default quota", + "NumberOfRegistry": 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", + "NumberOfRegistry": 30, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" + } +] + +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +Get-AzsContainerRegistryQuota -Name "Default quota" +``` + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota", + "Name": "redmond/Default quota", + "NumberOfRegistry": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} + +## 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..cef110db --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md @@ -0,0 +1,138 @@ +--- +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 -------------------------- +```powershell +Get-AzsContainerRegistrySetupStatus +``` + +{ + "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" + } +} + +## 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..7b0f1b40 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md @@ -0,0 +1,210 @@ +--- +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 ] [-NumberOfRegistry ] [-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 -------------------------- +```powershell +New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 +``` + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistry": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} + +## PARAMETERS + +### -CapacityPerRegistryInGiB +Storage capacity (GiB) of each registry. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded +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 +``` + +### -NumberOfRegistry +Total number of container registry accounts. + +```yaml +Type: System.Int32 +Parameter Sets: CreateExpanded +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: 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. + - `[NumberOfRegistry ]`: Total number of container registry accounts. + +## RELATED LINKS + diff --git a/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md new file mode 100644 index 00000000..ffe77127 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md @@ -0,0 +1,192 @@ +--- +external help file: +Module Name: Azs.ContainerRegistry.Admin +online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/remove-azscontainerregistryconfiguration +schema: 2.0.0 +--- + +# Remove-AzsContainerRegistryConfiguration + +## SYNOPSIS +Delete an existing container registry configuration + +## SYNTAX + +### Delete (Default) +``` +Remove-AzsContainerRegistryConfiguration -ConfigurationName [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentity +``` +Remove-AzsContainerRegistryConfiguration -InputObject + [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Delete an existing container registry configuration + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +Remove-AzsContainerRegistryConfiguration -ConfigurationName default +``` + + + +## PARAMETERS + +### -ConfigurationName +The name of the configuration. + +```yaml +Type: System.String +Parameter Sets: Delete +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: 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 +``` + +### -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/Remove-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md new file mode 100644 index 00000000..03258cf7 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md @@ -0,0 +1,192 @@ +--- +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 -------------------------- +```powershell +Remove-AzsContainerRegistryConfiguration -ConfigurationName default +``` + + + +## 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..b6b562c9 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md @@ -0,0 +1,194 @@ +--- +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 -ConfigurationName [-Location ] + [-SubscriptionId ] [-MaximumCapacityInGiB ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### Put +``` +Set-AzsContainerRegistryConfiguration -ConfigurationName + -ConfigurationObject [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Configure container registry overall configuration properties. + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default +``` + +{ + "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" +} + +## PARAMETERS + +### -ConfigurationName +The name of the configuration. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -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: 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: (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..1b533332 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md @@ -0,0 +1,210 @@ +--- +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 ] [-NumberOfRegistry ] [-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 -------------------------- +```powershell +Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 +``` + +{ + "CapacityPerRegistryInGiB": 30, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistry": 30, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} + +## 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 +``` + +### -NumberOfRegistry +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. + - `[NumberOfRegistry ]`: 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..6e69f000 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md @@ -0,0 +1,227 @@ +--- +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 ] [-Password ] + [-SslCertInputFile ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### Start +``` +Start-AzsContainerRegistrySetup -StartSetupRequest [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### StartViaIdentity +``` +Start-AzsContainerRegistrySetup -InputObject + -StartSetupRequest [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### StartViaIdentityExpanded +``` +Start-AzsContainerRegistrySetup -InputObject [-Password ] + [-SslCertInputFile ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Invokes container registry certificate uploading and service deployment. + +## EXAMPLES + +### -------------------------- EXAMPLE 1 -------------------------- +```powershell +Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path +``` + + + +## 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: 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 +``` + +### -SslCertInputFile +Input File for SslCert (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 +``` + +### -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..73f8dfa5 --- /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 + +{ + "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..6795c54e --- /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 + +{ + "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..cec2abea --- /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 + +{{ + "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..96031498 --- /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 + +[ + { + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota", + "Name": "redmond/Default quota", + "NumberOfRegistry": 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", + "NumberOfRegistry": 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" + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/Default quota", + "Name": "redmond/Default quota", + "NumberOfRegistry": 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..b77472ba --- /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 + +{ + "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..2741160c --- /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 -NumberOfRegistry 20 + +{ + "CapacityPerRegistryInGiB": 20, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistry": 20, + "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" +} +``` + +Create or update an existing container registry quota. + diff --git a/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryConfiguration.md new file mode 100644 index 00000000..86bb1fa0 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryConfiguration.md @@ -0,0 +1,7 @@ +### Example 1: Remove Azs ContainerRegistry Configuration +```powershell +PS C:\> Remove-AzsContainerRegistryConfiguration -ConfigurationName default + +``` + +Delete an existing container registry configuration. \ No newline at end of file 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..54e44dd8 --- /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 -ConfigurationName default + +{ + "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..1d189538 --- /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 -NumberOfRegistry 30 + +{ + "CapacityPerRegistryInGiB": 30, + "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/quotas/testquota", + "Name": "redmond/testquota", + "NumberOfRegistry": 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..6fec9ee6 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md @@ -0,0 +1,8 @@ +### Example 1: Start Azs ContainerRegistry Setup +```powershell +PS C:\> Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path + +``` + +Invokes container registry certificate uploading and service deployment. + diff --git a/src/Azs.ContainerRegistry.Admin/readme.md b/src/Azs.ContainerRegistry.Admin/readme.md new file mode 100644 index 00000000..be3e78e9 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/readme.md @@ -0,0 +1,104 @@ + +# 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 in ContainerRegistrySetup + - where: + subject: ContainerRegistrySetup + parameter-name: SslCertBase64 + set: + parameter-name: SslCert + +# 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 RequiredModules + - from: source-file-csharp + where: $ + transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerRegistry.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerRegistry.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; ModuleVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + +# 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..6c3efc7b --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 @@ -0,0 +1,47 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.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..a89cc119 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 @@ -0,0 +1,39 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.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..e02ab919 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.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-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..c3704b3a --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 @@ -0,0 +1,89 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.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.NumberOfRegistry | 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.NumberOfRegistry | Should Be $found.NumberOfRegistry + } + } + } + + 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..04c50441 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 @@ -0,0 +1,42 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.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..93872b84 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 @@ -0,0 +1,25 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.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 -NumberOfRegistry 20 -Name $name + $quota | Should Not Be $null + $quota.CapacityPerRegistryInGib | Should Be 20 + $quota.NumberOfRegistry | Should Be 20 + Remove-AzsContainerRegistryQuota -Name $name + } +} diff --git a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Recording.json new file mode 100644 index 00000000..7efaed33 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Recording.json @@ -0,0 +1,160 @@ +{ + "Remove-AzsContainerRegistryConfiguration+[NoContext]+TestRemoveContainerRegistryConfiguration+$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": [ "13" ], + "x-ms-client-request-id": [ "ca973158-44b9-4f74-9f7b-d3493ce4bd73" ], + "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": [ "780b1234-e64b-4c6f-b69e-125d779e3e52" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14901" ], + "x-ms-correlation-request-id": [ "2ec702aa-52cf-49ba-8839-9d1608be7f0a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181227Z:2ec702aa-52cf-49ba-8839-9d1608be7f0a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:27 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 + } + }, + "Remove-AzsContainerRegistryConfiguration+[NoContext]+TestRemoveContainerRegistryConfiguration+$DELETE+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": "DELETE", + "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/default?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "14" ], + "x-ms-client-request-id": [ "22d61cee-7cb7-45be-af4f-55ac32c8bc22" ], + "CommandName": [ "Remove-AzsContainerRegistryConfiguration" ], + "FullCommandName": [ "Remove-AzsContainerRegistryConfiguration_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": [ "0df61c64-6ae1-4e33-a6bb-7a8abe68af7f" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], + "x-ms-correlation-request-id": [ "77cda7ef-3503-4012-a9c2-bca3a1def352" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181229Z:77cda7ef-3503-4012-a9c2-bca3a1def352" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:29 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Remove-AzsContainerRegistryConfiguration+[NoContext]+TestRemoveContainerRegistryConfiguration+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations?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/configurations?api-version=2019-11-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "15" ], + "x-ms-client-request-id": [ "e7f13bfb-34f0-46db-b66f-ad04cc651b8c" ], + "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": [ "f56af45b-a923-4fd0-b8b7-bc35b7e97c40" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14898" ], + "x-ms-correlation-request-id": [ "ea9fcffd-5d53-4d90-973c-768716f2b188" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181230Z:ea9fcffd-5d53-4d90-973c-768716f2b188" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:30 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 + } + }, + "Remove-AzsContainerRegistryConfiguration+[NoContext]+TestRemoveContainerRegistryConfiguration+$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+4": { + "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": [ "26bb3969-7b78-4f5b-906f-4df70648cc85" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-correlation-request-id": [ "5fcf1ad7-d9f4-498e-9b51-d3527a690004" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181232Z:5fcf1ad7-d9f4-498e-9b51-d3527a690004" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Date": [ "Thu, 19 Aug 2021 18:12:32 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/Remove-AzsContainerRegistryConfiguration.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 new file mode 100644 index 00000000..2ea2616d --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.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 'Remove-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 'Remove-AzsContainerRegistryConfiguration' { + It "TestRemoveContainerRegistryConfiguration" -Skip:$('TestRemoveContainerRegistryConfiguration' -in $global:SkippedTests) { + $global:TestName = 'TestRemoveContainerRegistryConfiguration' + + $maxCapacityInGib = (Get-AzsContainerRegistryConfiguration ).MaximumCapacityInGib + $targetCapacityInGib = 0 + Remove-AzsContainerRegistryConfiguration -ConfigurationName default + $result = Get-AzsContainerRegistryConfiguration + $result | Should Not Be $null + $result.MaximumCapacityInGib | Should Be $targetCapacityInGib + Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $maxCapacityInGib -ConfigurationName default + } +} 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..2d24276f --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.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 '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 -NumberOfRegistry 100 -Name $name + $quota | Should Not Be $null + $quota.CapacityPerRegistryInGib | Should Be 50 + $quota.NumberOfRegistry | 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..1baf125d --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 @@ -0,0 +1,25 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.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 -ConfigurationName default + $result | Should Not Be $null + $result.MaximumCapacityInGib | Should Be $targetCapacityInGib + Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $maxCapacityInGib -ConfigurationName default + } +} 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..b37583e4 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 @@ -0,0 +1,83 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.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.NumberOfRegistry | 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.NumberOfRegistry | Should Be $found.NumberOfRegistry + } + } + } + + 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 ` + -NumberOfRegistry $NumOfRegistry ` + -Name $name + + ValidateContainerRegistryQuota -containerRegistryQuota $updated + $updated.CapacityPerRegistryInGib | Should Be $CapInGiB + $updated.NumberOfRegistry | Should Be $NumOfRegistry + + Set-AzsContainerRegistryQuota ` + -CapacityPerRegistryInGib $quota.CapacityPerRegistryInGib ` + -NumberOfRegistry $quota.NumberOfRegistry ` + -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..32798c7d --- /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": 409, + "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": "{\"error\":{\"code\":\"AcrAlreadyDeployed\",\"message\":\"Container registry deployment has already been successfully completed. It is not allowed to repeat deployment\"}}", + "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..ffd5cc96 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 @@ -0,0 +1,19 @@ +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.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 = "C:\CloudDeployment\Setup\Certificates\ADFS\Container Registry\SSL.pfx" + + { Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path } | Should Not Throw +} From ad20aef180bd8baebf8b03db048f953e879144b9 Mon Sep 17 00:00:00 2001 From: travist13 Date: Mon, 23 Aug 2021 13:42:47 -0700 Subject: [PATCH 02/34] Fixes for Azs.Compute.Admin powershell module (#127) * Fixing powershell generation errors for Azs.Compute.Admin * Prepending 'Compute' and replacing 'Tenant' by 'User' * Adding tests for 'Features' * Adding recordings for 'Features' tests * Adding 'Features' examples * Fix platform image tests; rerecord * Fixing feature\platform image test failures in playback. * Add missing env.json change; Removing autorest additional files how-to.md/license.txt * Testing out loading loadEnvJson.ps1 * Removing old feature files; Updating docs to use correct User instead of Tenant name. * Removing old files; Renaming Get-AzsFeature to Get-AzsComputeFeature * Updating docs using .\generate-help.ps1 * Update Update-AzsComputeGlobalFeatureSetting.md Co-authored-by: unknown Co-authored-by: Miguel Concha Vazquez Co-authored-by: bganapa --- src/Azs.Compute.Admin/custom/readme.md | 8 +- .../docs/Add-AzsPlatformImage.md | 45 +- .../docs/Add-AzsVMExtension.md | 40 +- .../docs/Azs.Compute.Admin.md | 25 +- ...sable-AzsComputeUserSubscriptionFeature.md | 252 + ...nable-AzsComputeUserSubscriptionFeature.md | 251 + .../docs/Get-AzsComputeFeature.md | 179 + .../docs/Get-AzsComputeQuota.md | 35 +- src/Azs.Compute.Admin/docs/Get-AzsDisk.md | 78 +- .../docs/Get-AzsDiskMigrationJob.md | 34 +- .../docs/Get-AzsPlatformImage.md | 36 +- .../docs/Get-AzsVMExtension.md | 27 +- .../docs/New-AzsComputeQuota.md | 48 +- .../docs/New-AzsDiskMigrationJob.md | 61 +- .../docs/Remove-AzsComputeQuota.md | 26 +- .../docs/Remove-AzsPlatformImage.md | 36 +- .../docs/Remove-AzsVMExtension.md | 34 +- .../docs/Set-AzsComputeQuota.md | 61 +- .../docs/Stop-AzsDiskMigrationJob.md | 20 +- .../Update-AzsComputeGlobalFeatureSetting.md | 254 + ...sable-AzsComputeUserSubscriptionFeature.md | 7 + ...nable-AzsComputeUserSubscriptionFeature.md | 6 + .../examples/Get-AzsComputeFeature.md | 28 + .../Update-AzsComputeGlobalFeatureSetting.md | 6 + src/Azs.Compute.Admin/examples/readme.md | 11 + src/Azs.Compute.Admin/readme.md | 21 + .../test/Add-AzsPlatformImage.Recording.json | 2704 +---- .../test/Add-AzsPlatformImage.Tests.ps1 | 30 +- .../test/Add-AzsVMExtension.Recording.json | 1759 +--- src/Azs.Compute.Admin/test/Common.ps1 | 4 + ...puteUserSubscriptionFeature.Recording.json | 158 + ...zsComputeUserSubscriptionFeature.Tests.ps1 | 26 + ...puteUserSubscriptionFeature.Recording.json | 200 + ...zsComputeUserSubscriptionFeature.Tests.ps1 | 28 + .../test/Get-AzsComputeFeature.Recording.json | 44 + .../test/Get-AzsComputeFeature.Tests.ps1 | 29 + .../test/Get-AzsComputeQuota.Recording.json | 8800 ++++++++++++++--- .../test/Get-AzsComputeQuota.Tests.ps1 | 43 +- .../test/Get-AzsDisk.Recording.json | 289 +- .../test/Get-AzsDisk.Tests.ps1 | 4 +- .../Get-AzsDiskMigrationJob.Recording.json | 151 +- .../test/Get-AzsPlatformImage.Tests.ps1 | 26 + .../test/Get-AzsVMExtension.Tests.ps1 | 26 + .../test/New-AzsComputeQuota.Tests.ps1 | 22 + .../New-AzsDiskMigrationJob.Recording.json | 71 +- .../test/Remove-AzsComputeQuota.Tests.ps1 | 22 + .../test/Remove-AzsPlatformImage.Tests.ps1 | 22 + .../test/Remove-AzsVMExtension.Tests.ps1 | 22 + .../test/Set-AzsComputeQuota.Tests.ps1 | 18 + .../Stop-AzsDiskMigrationJob.Recording.json | 112 +- ...ComputeGlobalFeatureSetting.Recording.json | 314 + ...e-AzsComputeGlobalFeatureSetting.Tests.ps1 | 35 + src/Azs.Compute.Admin/test/env.json | 8 +- 53 files changed, 10735 insertions(+), 5861 deletions(-) create mode 100644 src/Azs.Compute.Admin/docs/Disable-AzsComputeUserSubscriptionFeature.md create mode 100644 src/Azs.Compute.Admin/docs/Enable-AzsComputeUserSubscriptionFeature.md create mode 100644 src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md create mode 100644 src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md create mode 100644 src/Azs.Compute.Admin/examples/Disable-AzsComputeUserSubscriptionFeature.md create mode 100644 src/Azs.Compute.Admin/examples/Enable-AzsComputeUserSubscriptionFeature.md create mode 100644 src/Azs.Compute.Admin/examples/Get-AzsComputeFeature.md create mode 100644 src/Azs.Compute.Admin/examples/Update-AzsComputeGlobalFeatureSetting.md create mode 100644 src/Azs.Compute.Admin/examples/readme.md create mode 100644 src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json create mode 100644 src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json create mode 100644 src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json create mode 100644 src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Get-AzsPlatformImage.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Get-AzsVMExtension.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/New-AzsComputeQuota.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Remove-AzsComputeQuota.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Remove-AzsPlatformImage.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Remove-AzsVMExtension.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Set-AzsComputeQuota.Tests.ps1 create mode 100644 src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json create mode 100644 src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Tests.ps1 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..c463dcb2 100644 --- a/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md @@ -45,9 +45,10 @@ Creates a new platform image with given publisher, offer, skus and version. ## EXAMPLES -### Example 1: Add-AzsPlatformImage +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Add-AzsPlatformImage -Offer "asdf" -Publisher "asdf" -Sku "asdf" -Version "1.0.0" -OsType Windows -OsUri "https://asdf.blob.local.azurestack.external/asdf/UbuntuServer.vhd?sv=2017-04-17&ss=bqt&srt=sco&sp=rwdlacup&se=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https" +Add-AzsPlatformImage -Offer "asdf" -Publisher "asdf" -Sku "asdf" -Version "1.0.0" -OsType Windows -OsUri "https://asdf.blob.local.azurestack.external/asdf/UbuntuServer.vhd?sv=2017-04-17&ss=bqt&srt=sco&sp=rwdlacup&se=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https" +``` BillingPartNumber : DataDisks : @@ -58,12 +59,11 @@ OsType : Windows OsUri : https://asdf.blob.local.azurestack.external/asdf/UbuntuServer.vhd?sv=2017-04-17&ss=bqt&srt=sco&sp=rwdlacup&se=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https 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. ## PARAMETERS +### -AsJob +Run the command as a job ```yaml Type: System.Management.Automation.SwitchParameter @@ -75,7 +75,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -BillingPartNumber @@ -91,7 +90,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DataDisks @@ -108,7 +106,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -124,7 +121,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -141,7 +137,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -157,7 +152,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NewImage @@ -174,7 +168,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -NoWait @@ -190,7 +183,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Offer @@ -206,7 +198,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OsType @@ -222,7 +213,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -OsUri @@ -238,7 +228,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ProvisioningState @@ -254,7 +243,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -270,7 +258,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Sku @@ -286,7 +273,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -303,7 +289,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -319,7 +304,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -335,7 +319,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -352,7 +335,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -368,31 +350,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 +388,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..e3ad50f0 100644 --- a/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md @@ -47,9 +47,10 @@ Create a Virtual Machine Extension Image with publisher, version. ## EXAMPLES -### Example 1: Add-AzsVMExtension +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Add-AzsVMExtension -Location "local" -Publisher "Microsoft" -Type "MicroExtension" -Version "0.1.0" -ComputeRole "IaaS" -SourceBlob "https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip" -SupportMultipleExtensions -VmOsType "Linux" +Add-AzsVMExtension -Location "local" -Publisher "Microsoft" -Type "MicroExtension" -Version "0.1.0" -ComputeRole "IaaS" -SourceBlob "https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip" -SupportMultipleExtensions -VmOsType "Linux" +``` ExtensionType : MicroExtension TypeHandlerVersion : 0.1.0 @@ -66,9 +67,6 @@ SupportMultipleExtension : True Type : Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions VMScaleSetEnabled : False VmosType : Linux -``` - -Use a publicly accessible link to provide the location of the extension, or the URI to an Azure Blob using the SasUri. ## PARAMETERS @@ -85,7 +83,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -101,7 +98,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Extension @@ -118,7 +114,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -135,7 +130,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -IsSystemExtension @@ -151,7 +145,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -167,7 +160,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PropertiesPublisher @@ -183,7 +175,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ProvisioningState @@ -199,7 +190,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -215,7 +205,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SourceBlob @@ -231,7 +220,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -248,7 +236,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SupportMultipleExtensions @@ -264,7 +251,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -280,7 +266,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -296,7 +281,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VmOsType @@ -312,7 +296,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VMScaleSetEnabled @@ -328,7 +311,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -344,7 +326,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -361,7 +342,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -377,14 +357,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 +376,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..f1babcdd 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: 0069b4df-ccd1-4ae6-bf57-75660b132ca2 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..83ecd36f --- /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 -------------------------- +```powershell +Disable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId 4d105157-d6b2-42db-a3a3-56da6674183a -FeatureName Microsoft.Compute.EmergencyVMAccess -Location local +``` + + + +## 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..d416c775 --- /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 -------------------------- +```powershell +Enable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId 4d105157-d6b2-42db-a3a3-56da6674183a -FeatureName Microsoft.Compute.EmergencyVMAccess -Location local +``` + + + +## 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..cfa20a59 --- /dev/null +++ b/src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md @@ -0,0 +1,179 @@ +--- +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 -------------------------- +```powershell +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" +} + +## 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..66936e98 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md @@ -34,9 +34,10 @@ Get an existing Compute Quota. ## EXAMPLES -### Example 1: Get All Compute Quotas +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Get-AzsComputeQuota +Get-AzsComputeQuota +``` AvailabilitySetCount : 10 CoresLimit : 100 @@ -49,13 +50,11 @@ StandardManagedDiskAndSnapshotSize : 2048 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 100 VirtualMachineCount : 100 -``` - -Run `Get-AzsComputeQuota` with no parameters to get a list of all Compute Quotas. -### Example 2: Get Compute Quota by Name +### -------------------------- EXAMPLE 2 -------------------------- ```powershell -PS C:\> Get-AzsComputeQuota -Name ExampleComputeQuotaWithDefaultParameters +Get-AzsComputeQuota -Name ExampleComputeQuotaWithDefaultParameters +``` AvailabilitySetCount : 10 CoresLimit : 100 @@ -68,9 +67,6 @@ StandardManagedDiskAndSnapshotSize : 2048 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 0 VirtualMachineCount : 100 -``` - -Specify the Quota's name on the command line to retrieve a specific quota. ## PARAMETERS @@ -87,7 +83,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -104,7 +99,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -120,7 +114,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -136,7 +129,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -153,7 +145,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -165,23 +156,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-AzsDisk.md b/src/Azs.Compute.Admin/docs/Get-AzsDisk.md index 65f10651..bfadd3ab 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 @@ -35,16 +36,17 @@ Returns the disk. ## EXAMPLES -### Example 1: Get All Disks +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Get-AzsDisk +Get-AzsDisk ``` -Without any parameters, `Get-AzsDisk` will list all Disks. -### Example 2: Get a Disk by Name + +### -------------------------- EXAMPLE 2 -------------------------- ```powershell -PS C:\> Get-AzsDisk -Name "426b8945-8a24-42ad-acdc-c26f16202489" +Get-AzsDisk -Name "426b8945-8a24-42ad-acdc-c26f16202489" +``` ActualSizeGb : 24 DiskId : 426b8945-8a24-42ad-acdc-c26f16202489 @@ -61,13 +63,11 @@ 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 -``` - -Specify a disk by its `Name` to retrieve it. -### Example 3: Get a Specified number of Disks +### -------------------------- EXAMPLE 3 -------------------------- ```powershell -PS C:\> Get-AzsDisk -Count 3 +Get-AzsDisk -Count 3 +``` ActualSizeGb : 24 DiskId : 20f1619e-4210-47f6-81e6-b89e3028df06 @@ -116,13 +116,11 @@ 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 -``` - -Use the `Count` parameter to retrieve a specific number of disks. -### Example 4: Get all disks in specific location +### -------------------------- EXAMPLE 4 -------------------------- ```powershell -PS C:\> Get-AzsDisk -Status All -ScaleUnit s-cluster -VolumeLabel Objstore_4 +Get-AzsDisk -Status All -ScaleUnit s-cluster -VolumeLabel Objstore_4 +``` ActualSizeGb : 2 DiskId : e4732f76-0753-40ec-80f5-8effdd0b437d @@ -165,9 +163,6 @@ SharePath : \\SU1FileServer.s11r0401.masd.stbtest.microsoft.com\SU1_ObjSto Status : Reserved Type : Microsoft.Compute.Admin/locations/disks UserResourceId : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGroups/RBACTEST/providers/Microsoft.Compute/Disks/testdd -``` - -Use the `ScaleUnit` or `VolumeLabel` parameter to list all disks in specific location ## PARAMETERS @@ -184,7 +179,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -200,7 +194,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -217,7 +210,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -233,7 +225,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -249,7 +240,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -ScaleUnit @@ -265,7 +255,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SharePath @@ -281,7 +270,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 +300,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Status @@ -313,7 +315,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -330,7 +331,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -UserSubscriptionId @@ -346,7 +346,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VolumeLabel @@ -362,7 +361,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -374,23 +372,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.Api20210401.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..acddcfb1 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md @@ -34,16 +34,17 @@ Returns the requested disk migration job. ## EXAMPLES -### Example 1: +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Get-AzsDiskMigrationJob +Get-AzsDiskMigrationJob ``` -Returns a list of managed disk migration jobs at the location local. -### Example 2: + +### -------------------------- EXAMPLE 2 -------------------------- ```powershell -PS C:\> Get-AzsDiskMigrationJob -Name TestNewDiskMigrationJob +Get-AzsDiskMigrationJob -Name TestNewDiskMigrationJob +``` CreationTime : 2/26/2020 10:45:41 AM EndTime : 2/26/2020 10:46:32 AM @@ -56,9 +57,6 @@ Status : Succeeded Subtask : {edacd0f6-760a-43f9-a188-8833751f89ce, f1ee38a4-5c27-4728-a12b-36976c565042} TargetShare : \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_1 Type : Microsoft.Compute.Admin/locations/diskmigrationjobs -``` - -Get a specific managed disk migration job. ## PARAMETERS @@ -75,7 +73,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -92,7 +89,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -108,7 +104,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -124,7 +119,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Status @@ -140,7 +134,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -157,7 +150,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -169,23 +161,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.Api20210401.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..aaf53665 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md @@ -34,9 +34,10 @@ Returns the specific platform image matching publisher, offer, skus and version. ## EXAMPLES -### Example 1: Get All Platform Images +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Get-AzsPlatformImage +Get-AzsPlatformImage +``` BillingPartNumber : DataDisks : @@ -49,13 +50,11 @@ OsUri : https://asdf.blob.local.azurestack.external/asdf/UbuntuServe wdlacup&se=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https ProvisioningState : Succeeded Type : Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions -``` - -Get a list of all Platform Images by leaving all parameters blank. -### Example 2: Get Specific Platform Image +### -------------------------- EXAMPLE 2 -------------------------- ```powershell -PS C:\> Get-AzsPlatformImage -Offer ExampleOffer -Publisher ExamplePublisher -Location local -Sku ExampleSku -Version 1.0.0 +Get-AzsPlatformImage -Offer ExampleOffer -Publisher ExamplePublisher -Location local -Sku ExampleSku -Version 1.0.0 +``` BillingPartNumber : DataDisks : @@ -68,9 +67,6 @@ OsUri : https://asdf.blob.local.azurestack.external/asdf/UbuntuServe e=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https ProvisioningState : Succeeded Type : Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions -``` - -Specify the Offer, Publisher, Location, Sku, and Version to retrieve a Platform Image. ## PARAMETERS @@ -87,7 +83,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -104,7 +99,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -120,7 +114,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Offer @@ -136,7 +129,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -152,7 +144,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Sku @@ -168,7 +159,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -185,7 +175,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -201,7 +190,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -215,21 +203,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..3f29d16d 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md @@ -34,9 +34,10 @@ Returns requested Virtual Machine Extension Image matching publisher, type, vers ## EXAMPLES -### Example 1: Get All VM Extensions +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Get-AzsVMExtension +Get-AzsVMExtension +``` ExtensionType : IaaSDiagnostics TypeHandlerVersion : 1.11.3.12 @@ -56,9 +57,6 @@ VMScaleSetEnabled : False VmosType : Windows ... -``` - -Get a list of all VMExtensions by leaving all parameters blank. ## PARAMETERS @@ -75,7 +73,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -92,7 +89,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -108,7 +104,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -124,7 +119,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -141,7 +135,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Type @@ -157,7 +150,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -173,7 +165,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -187,21 +178,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..217e48b8 100644 --- a/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md @@ -32,9 +32,10 @@ Creates or Updates a Compute Quota with the provided quota parameters. ## EXAMPLES -### Example 1: Create a Compute Quota with Default Parameters +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> New-AzsComputeQuota -Name ExampleComputeQuotaWithDefaultParameters +New-AzsComputeQuota -Name ExampleComputeQuotaWithDefaultParameters +``` AvailabilitySetCount : 10 CoresLimit : 100 @@ -47,13 +48,11 @@ StandardManagedDiskAndSnapshotSize : 2048 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 0 VirtualMachineCount : 100 -``` - -Any parameters that are not specified will be set to their default parameter, shown above. -### Example 2: Create a Compute Quota with Custom Parameters +### -------------------------- EXAMPLE 2 -------------------------- ```powershell -PS C:\> New-AzsComputeQuota -Name ExampleComputeQuotaWithCustomParameters -Location local -AvailabilitySetCount 9 -CoresCount 99 -PremiumManagedDiskAndSnapshotSize 1024 -StandardManagedDiskAndSnapshotSize 1024 -VirtualMachineCount 99 -VMScaleSetCount 2 +New-AzsComputeQuota -Name ExampleComputeQuotaWithCustomParameters -Location local -AvailabilitySetCount 9 -CoresCount 99 -PremiumManagedDiskAndSnapshotSize 1024 -StandardManagedDiskAndSnapshotSize 1024 -VirtualMachineCount 99 -VMScaleSetCount 2 +``` AvailabilitySetCount : 9 CoresLimit : 99 @@ -66,9 +65,6 @@ StandardManagedDiskAndSnapshotSize : 1024 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 2 VirtualMachineCount : 99 -``` - -Customize Quota with parameters. Any parameters not specified will have default value. ## PARAMETERS @@ -85,7 +81,6 @@ Position: Named Default value: 10 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -CoresCount @@ -101,7 +96,6 @@ Position: Named Default value: 100 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -DefaultProfile @@ -117,7 +111,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -133,7 +126,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location1 @@ -149,7 +141,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -165,7 +156,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -NewQuota @@ -173,7 +163,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 +172,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -PremiumManagedDiskAndSnapshotSize @@ -198,7 +187,6 @@ Position: Named Default value: 2048 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -StandardManagedDiskAndSnapshotSize @@ -214,7 +202,6 @@ Position: Named Default value: 2048 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -231,7 +218,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VirtualMachineCount @@ -247,7 +233,6 @@ Position: Named Default value: 100 Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -VMScaleSetCount @@ -263,7 +248,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -279,7 +263,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -296,7 +279,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -304,23 +286,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..592bb13b 100644 --- a/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md @@ -26,14 +26,15 @@ New-AzsDiskMigrationJob -Name -TargetShare -Disks [- ``` ## DESCRIPTION - +Starts a managed disk migration job to migrate managed disks to the specified destination share. ## EXAMPLES -### Example 1: +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> $disks = Get-AzsDisk +$disks = Get-AzsDisk PS C:\> New-AzsDiskMigrationJob -Name TestJob1 -TargetScaleUnit s-cluster -TargetVolumeLabel ObjStore_2 -Disks $disks +``` CreationTime : 2/26/2020 10:56:32 AM EndTime : @@ -46,15 +47,13 @@ Status : Pending Subtask : {53ee3665-00e4-4c69-a067-524058905ead, d551734f-0370-4851-9704-c7cec80b34c5} TargetShare : \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_2 Type : Microsoft.Compute.Admin/locations/diskmigrationjobs -``` - -Create a disk migration job to migrate disks to the target scale unit and volume. -### Example 2: +### -------------------------- EXAMPLE 2 -------------------------- ```powershell -PS C:\> PS C:\> $disks = Get-AzsDisk +PS C:\> $disks = Get-AzsDisk PS C:\> New-AzsDiskMigrationJob -Name TestJob2 -TargetShare \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_3 -Disks $disks WARNING: TargetShare parameter will be deprecated in a future release, please use Volume instead. +``` CreationTime : 2/26/2020 11:02:48 AM EndTime : @@ -69,14 +68,10 @@ Subtask : {0cfd8d29-1ca4-42db-a490-9198814abc50, 89c9b15e-47c6-4321-a390-61 TargetShare : \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_3 Type : Microsoft.Compute.Admin/locations/diskmigrationjobs-AzsDiskMigrationJob -Name TestJob1 -TargetScaleUnit s-cluster -TargetVolumeLabel ObjStore_2 -Disks $disks -``` - -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 +83,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.Api20210401.IDisk[] Parameter Sets: (All) Aliases: @@ -104,11 +99,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 +114,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 +129,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 +145,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 +160,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 +175,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 +190,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -216,7 +205,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -233,7 +221,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -241,22 +228,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.Api20210401.IDisk[] ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20180730Preview.IDiskMigrationJob +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.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..0aaad642 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md @@ -29,12 +29,12 @@ Delete an existing Compute quota. ## EXAMPLES -### Example 1: Remove a Compute Quota +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Remove-AzsComputeQuota -Name "AComputeQuota" +Remove-AzsComputeQuota -Name "AComputeQuota" ``` -A successful call to remove a compute quota will not return any output + ## PARAMETERS @@ -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..d4fb1862 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md @@ -30,20 +30,19 @@ Delete a platform image ## EXAMPLES -### Example 1: Remove a Platform Image +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\>Remove-AzsPlatformImage -Location northwest -Offer UbuntuServer -Publisher Microsoft -Sku 16.04-LTS -Version 1.0.0 +Remove-AzsPlatformImage -Location northwest -Offer UbuntuServer -Publisher Microsoft -Sku 16.04-LTS -Version 1.0.0 ``` -A successful call to remove a platform image will not return any output -### Example 2: Remove a Platform Image the Does Not Exist -```powershell -PS C:\> Remove-AzsPlatformImage -Location northwest -Offer UbuntuServer -Publisher Microsoft -Sku 16.04-LTS -Version 1.1.6 +### -------------------------- EXAMPLE 2 -------------------------- +```powershell +Remove-AzsPlatformImage -Location northwest -Offer UbuntuServer -Publisher Microsoft -Sku 16.04-LTS -Version 1.1.6 ``` -A successful call to remove a platform image that doesn't exist will not return any output + ## PARAMETERS @@ -60,7 +59,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -InputObject @@ -77,7 +75,6 @@ Position: Named Default value: None Accept pipeline input: True (ByValue) Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -93,7 +90,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Offer @@ -109,7 +105,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -PassThru @@ -125,7 +120,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Publisher @@ -141,7 +135,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Sku @@ -157,7 +150,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -174,7 +166,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Version @@ -190,7 +181,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -206,7 +196,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -223,7 +212,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -237,21 +225,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..ff90b236 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md @@ -29,19 +29,19 @@ Deletes specified Virtual Machine Extension Image. ## EXAMPLES -### Example 1: Remove a VM Extension that Exists +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Remove-AzsVMExtension -Location local -Publisher Microsoft -Type MicroExtension -Version 0.1.0 +Remove-AzsVMExtension -Location local -Publisher Microsoft -Type MicroExtension -Version 0.1.0 ``` -A successful call to remove a compute quota will not return any output -### Example 2: Remove a VM Extension that Does Not Exist + +### -------------------------- EXAMPLE 2 -------------------------- ```powershell -PS C:\> Remove-AzsVMExtension -Location local -Publisher Microsoft -Type DoesntExist -Version 9.8.7 +Remove-AzsVMExtension -Location local -Publisher Microsoft -Type DoesntExist -Version 9.8.7 ``` -A successful call to remove a platform image that doesn't exist will not return any output + ## PARAMETERS @@ -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..d8ddd082 100644 --- a/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md @@ -12,38 +12,24 @@ 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 -### Example 1: Set Properties on an Existing Compute Quota +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> $myComputeQuota = Get-AzsComputeQuota -Name MyComputeQuota +$myComputeQuota = Get-AzsComputeQuota -Name MyComputeQuota +``` -PS C:\> $myComputeQuota.CoresLimit = 99; +PS C:\\> $myComputeQuota.CoresLimit = 99; -PS C:\> Set-AzsComputeQuota -NewQuota $myComputeQuota +PS C:\\> Set-AzsComputeQuota -NewQuota $myComputeQuota AvailabilitySetCount : 10 CoresLimit : 99 @@ -55,15 +41,11 @@ StandardManagedDiskAndSnapshotSize : 2048 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 0 VirtualMachineCount : 100 -``` - -Set the parameters specified on the command line. -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 +57,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 +73,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 +89,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -123,7 +104,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -140,7 +120,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -148,23 +127,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..8a9a8736 100644 --- a/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md @@ -22,9 +22,10 @@ Cancel a disk migration job. ## EXAMPLES -### Example 1: +### -------------------------- EXAMPLE 1 -------------------------- ```powershell -PS C:\> Stop-AzsDiskMigrationJob -Name TestJob +Stop-AzsDiskMigrationJob -Name TestJob +``` CreationTime : 2/26/2020 11:06:40 AM EndTime : 2/26/2020 11:07:24 AM @@ -38,9 +39,6 @@ Status : Canceled Subtask : {47774498-6bc7-4ce2-98ca-738739ded2fc, b09ac623-f71d-480c-98bc-88fa3f603f2c} TargetShare : \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_4 Type : Microsoft.Compute.Admin/locations/diskmigrationjobs -``` - -Cancel a managed disk migration job. ## PARAMETERS @@ -57,7 +55,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Location @@ -73,7 +70,6 @@ Position: Named Default value: (Get-AzLocation)[0].Location Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Name @@ -89,7 +85,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -SubscriptionId @@ -106,7 +101,6 @@ Position: Named Default value: (Get-AzContext).Subscription.Id Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -Confirm @@ -122,7 +116,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### -WhatIf @@ -139,7 +132,6 @@ Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False -Dynamic: False ``` ### CommonParameters @@ -149,11 +141,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.Api20210401.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..74890158 --- /dev/null +++ b/src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md @@ -0,0 +1,254 @@ +--- +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 -------------------------- +```powershell +Update-AzsComputeGlobalFeatureSetting -FeatureName Microsoft.Compute.EmergencyVMAccess -GlobalFeatureState Enabled -Location local +``` + + + +## 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. + +Possible string values of GlobalFeatureSetting are Enabled, Disabled, and TenantSubscriptionLevel. Enabled/Disabled will override features that are enabled with tenant subscription ID. TenantSubscriptionLevel will defer feature enablement to per tenant subscription ID enablement. + +```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/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/examples/readme.md b/src/Azs.Compute.Admin/examples/readme.md new file mode 100644 index 00000000..ac871d71 --- /dev/null +++ b/src/Azs.Compute.Admin/examples/readme.md @@ -0,0 +1,11 @@ +# Examples +This directory contains examples from the exported cmdlets of the module. When `build-module.ps1` is ran, example stub files will be generated here. If your module support Azure Profiles, the example stubs will be in individual profile folders. These example stubs should be updated to show how the cmdlet is used. The examples are imported into the documentation when `generate-help.ps1` is ran. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Purpose +This separates the example documentation details from the generated documentation information provided directly from the generated cmdlets. Since the cmdlets don't have examples from the REST spec, this provides a means to add examples easily. The example stubs provide the markdown format that is required. The 3 core elements are: the name of the example, the code information of the example, and the description of the example. That information, if the markdown format is followed, will be available to documentation generation and be part of the documents in the `..\docs` folder. \ No newline at end of file diff --git a/src/Azs.Compute.Admin/readme.md b/src/Azs.Compute.Admin/readme.md index 1f71a31d..2653942c 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. @@ -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 Quota 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 diff --git a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json index c88a69bf..1c356734 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json @@ -1,2459 +1,831 @@ { - "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-n25r0507.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"] - }, - "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"] - }, - "ContentHeaders": { - "Content-Length": ["590"], - "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\"}}" - } - }, - "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": { - "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", - "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": ["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"] - }, - "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"] - }, - "ContentHeaders": { - "Content-Length": ["703"], - "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\"}}" - } - }, - "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": { - "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", - "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": ["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": [ "1626" ], + "x-ms-client-request-id": [ "aea803d9-6a15-4a69-8c33-a25ded04b591" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_List" ], + "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": [ "3bb567fa-b0f9-476b-80ad-cca45ba1d1cb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13777" ], + "x-ms-request-id": [ "3bb567fa-b0f9-476b-80ad-cca45ba1d1cb" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181411Z:3bb567fa-b0f9-476b-80ad-cca45ba1d1cb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:10 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4cYy/hbdVDvsiF6QJAcW0LMpiQIB62o5XWoxtD3gIcVEKWvVcWhJlInaoa6beSkcvn0eTLA1Bh2e8OV/sryNXSfqFWeKBRW91YvnL7EAce/cNxGvDeVtJK7goV7S5jlNuLiKdHdNbRVnsR3rOzr0" ] }, "ContentHeaders": { - "Content-Length": ["578"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "8344" ], + "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-n25r0507.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=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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=2021-07-29T06%3a38%3a37Z\u0026ske=2021-07-31T06%3a58%3a37Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a37Z\u0026se=2021-07-31T06%3a58%3a37Z\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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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.19847.2010090140\",\"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/007efb466dc6418b8027b640626b427f%2FImage%2Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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.3986.2010070045\",\"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/c12f21f106244837acaafef12d14fc43%2FImage%2Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/CoreOS/offers/CoreOS/skus/Stable/versions/1465.8.0?api-version=2015-12-01-preview+24": { + "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/CoreOS/offers/CoreOS/skus/Stable/versions/1465.8.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "1627" ], + "x-ms-client-request-id": [ "051fa40d-9406-4abb-97d2-550f88d47063" ], + "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": [ "467d9689-e04d-44de-a2cb-066a25001f6f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13775" ], + "x-ms-request-id": [ "467d9689-e04d-44de-a2cb-066a25001f6f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181413Z:467d9689-e04d-44de-a2cb-066a25001f6f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:13 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0t5XQUg2Z37cug1S39hpLEF+XJzmd5Mw06twebsFQ2gYmfIgqW5ONQ897SMNKzS8qgEGCmEmzRG0u1XX+4rRMK0d7F1Vb8lOrc8AQk1pLcxYoqX19aQ+PRI7VD6JGA/2YoYm+IyV5carbnuftp1H" ] }, "ContentHeaders": { - "Content-Length": ["709"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "8344" ], + "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-n25r0507.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=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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=2021-07-29T06%3a38%3a37Z\u0026ske=2021-07-31T06%3a58%3a37Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a37Z\u0026se=2021-07-31T06%3a58%3a37Z\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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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.19847.2010090140\",\"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/007efb466dc6418b8027b640626b427f%2FImage%2Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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.3986.2010070045\",\"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/c12f21f106244837acaafef12d14fc43%2FImage%2Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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]+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/DellEMC/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/6.6.1?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "1628" ], + "x-ms-client-request-id": [ "8454cde2-4d6c-4f9b-b1eb-12e555fedf8e" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_Get" ], + "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": [ "e3bf1b6c-2559-4517-84d8-45fb11ab14c1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13773" ], + "x-ms-request-id": [ "e3bf1b6c-2559-4517-84d8-45fb11ab14c1" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181416Z:e3bf1b6c-2559-4517-84d8-45fb11ab14c1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:15 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvp6xnj6IaMaM0zSCshzg9FLP8JkA01y6TLZ/Hp9x4RQGsbhqsy0PxEnRl176PdHzRQnajDfxw937wtxqyiqca04I1cKQVYJTyDk7D4cShkoFHBdVP+v/p7lhks0TPwJWc/cA29WVIdmTCCyxExY/e" ] }, "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-n25r0507.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?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/KasperskyLab/offers/SolutionTemplateOffer/skus/SolutionTemplateSku/versions/1.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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": [ "1629" ], + "x-ms-client-request-id": [ "8167c83b-e694-423b-ac05-6b682546a80d" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_List" ], + "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": [ "18c69083-e433-4fe3-86f4-4f65c535bbb9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13771" ], + "x-ms-request-id": [ "18c69083-e433-4fe3-86f4-4f65c535bbb9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181417Z:18c69083-e433-4fe3-86f4-4f65c535bbb9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8SWjgf5nfldaaRgfuETdycV2OyA8JkauYw1aql7BgPuk5IuEjt5hhqthy5MmxG0cUdbb97OOawn27cf1j7L37mY8ZdVBt4NlrYGPtoERNofn6w8FFSZ1B2LImyCDimkjUi5zYsHBTxSySNFEK6qb" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "8344" ], + "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/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-n25r0507.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=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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=2021-07-29T06%3a38%3a37Z\u0026ske=2021-07-31T06%3a58%3a37Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a37Z\u0026se=2021-07-31T06%3a58%3a37Z\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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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.19847.2010090140\",\"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/007efb466dc6418b8027b640626b427f%2FImage%2Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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.3986.2010070045\",\"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/c12f21f106244837acaafef12d14fc43%2FImage%2Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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/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/MicrosoftRServer/offers/MLServer-Ubuntu/skus/Enterprise/versions/9.3.026060001?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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": [ "1630" ], + "x-ms-client-request-id": [ "af35efe4-fcea-4154-8592-699323cb6bda" ], + "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": [ "4bbf4ef1-fe00-44a0-84d3-7709373fdd0d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13770" ], + "x-ms-request-id": [ "4bbf4ef1-fe00-44a0-84d3-7709373fdd0d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181417Z:4bbf4ef1-fe00-44a0-84d3-7709373fdd0d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYIybNcP8zMlbazHDcmhfHMrcwVZcA84boMANfHXrSY1KCsh5GHdQBZIiITg7gkhIYH+ItBuB1ZYpQSMxYXSaatNCg/O27LKTLzUAs3wstscYMuowCCcHCNUCsUPXoGLDgmpCAMRSNy/WK/XVuhW1" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "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/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/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-n25r0507.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/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/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/MicrosoftRServer/offers/MLServer-WS2016/skus/Enterprise/versions/9.3.026080002?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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": [ "1631" ], + "x-ms-client-request-id": [ "cb3459a4-30b2-4907-b217-2f52cade1895" ], + "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": [ "18d6d739-01b2-40e0-b480-090904445f89" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13769" ], + "x-ms-request-id": [ "18d6d739-01b2-40e0-b480-090904445f89" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:18d6d739-01b2-40e0-b480-090904445f89" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxLx1mP/Or4ENEqGq+KVKm0r7kmyYlr18HrAaFyAvKXPTg4MqyMwDULwGc5Ypry8A5DnIjVO0hIsdUHCR7J92q1DfD8gW3T5eUcTHRyvrhjp1icR9PLZh+ZdJcdql0RNyaNh36X79EwTMqhAnCP4P" ] }, "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/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/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=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/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/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/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Express/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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": [ "1632" ], + "x-ms-client-request-id": [ "94c9706e-92e2-4122-a7f3-77e6f390b72a" ], + "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": [ "1d53df4c-408c-4fbf-8bab-6b2c83edfc8d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13768" ], + "x-ms-request-id": [ "1d53df4c-408c-4fbf-8bab-6b2c83edfc8d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:1d53df4c-408c-4fbf-8bab-6b2c83edfc8d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlFbLXBfXY39NlI3ugsNLkfuPRl36fU8btF3kUYUHsIzlpU7sUpdfFGfJNogXqoaGLnftkt7emTgUM9PlLhhSjz0TM7NmD9u7Aai8ZAg3NOdtjgFfp7XfLjllLQRaoAJvc/us38qUkJ1x+cG7fzu3" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "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/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/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=2021-07-29T06%3a38%3a37Z\u0026ske=2021-07-31T06%3a58%3a37Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a37Z\u0026se=2021-07-31T06%3a58%3a37Z\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/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/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/MicrosoftSQLServer/offers/SQL2014SP2-WS2012R2/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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": [ "1633" ], + "x-ms-client-request-id": [ "da062418-5b78-4684-962f-82facf737985" ], + "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": [ "a348d4d8-f3e1-4535-8143-99135a8f69ff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13767" ], + "x-ms-request-id": [ "a348d4d8-f3e1-4535-8143-99135a8f69ff" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:a348d4d8-f3e1-4535-8143-99135a8f69ff" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0MBxy34OpzlhOHCH0Zy2sEj/YIMRkqQfp6UhA2rzoX2MzIteJRx4nQ89swwa6XFeptYffO/Ry5ip4nMds6n/qR5WCHGFBDrQ8UfsiPi557aDVVmUYKbc7uGKly60aaODwvsJHxsCR15pXUAtQyBi" ] }, "ContentHeaders": { - "Content-Length": ["721"], - "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/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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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/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/SQL2016SP1-WS2016/skus/SQLDEV/versions/13.1.900310?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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": [ "1634" ], + "x-ms-client-request-id": [ "8b84b113-bcaa-43ae-b188-392cfea4beaa" ], + "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": [ "5cf907bc-14f9-4b7c-aeaa-f98ddffa930a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13766" ], + "x-ms-request-id": [ "5cf907bc-14f9-4b7c-aeaa-f98ddffa930a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:5cf907bc-14f9-4b7c-aeaa-f98ddffa930a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRVyx3hbst5tA+KXqO/JWQKcK8vl+z2+j2x2/BWtslJjSTPrv9KQ+OyftX8mHoBlMeUD1iV3QAfesae1PKSr//rEiVKjYg3L5+iUCgcSXOa4xiEPnT58f8gEk3ZuHaUluLYFtJv46KB9hv+Gwl9/Y" ] }, "ContentHeaders": { - "Content-Length": ["721"], - "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/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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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/versions/10.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/SQL2016SP1-WS2016/skus/Web/versions/13.1.900310?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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": [ "1635" ], + "x-ms-client-request-id": [ "0b391275-f2ea-4d78-a700-8607f47dfb31" ], + "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": [ "b5a24042-af67-4af2-a982-8f7dcd16368a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13765" ], + "x-ms-request-id": [ "b5a24042-af67-4af2-a982-8f7dcd16368a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:b5a24042-af67-4af2-a982-8f7dcd16368a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKqQuaiKaZ3xbsgDvJuPERDAg+YPXq7DCJlJyn3Pt1JOocztMS7L06J2dWv7LoUOnmyoxoOTkm4ceNcCGPWwS5TMfGgw7lUgsLYEt7pnvYsG7m9Zd4zjcpyGuohtnzGT90+tzqpyQi9q4wjFZ3gdk" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "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/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/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/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/2012-R2-Datacenter-smalldisk/versions/9600.19847.2010090140?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/SQL2016SP2-WS2016/skus/Express/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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.19847.2010090140?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": [ "1636" ], + "x-ms-client-request-id": [ "c0fad328-5f06-40b9-ab12-603af6bdefd9" ], + "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": [ "2d30ec04-63ed-46c8-8121-22a46835088b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13764" ], + "x-ms-request-id": [ "2d30ec04-63ed-46c8-8121-22a46835088b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181419Z:2d30ec04-63ed-46c8-8121-22a46835088b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbXXLFdHWWWGyhXef3W4jsQOjMCEMG5O2hsMP15fBMJiAsrh9dRjHyd64owDSlTSXiPAlI3ZSLMRJFJzdpXrizHwZ6q1YeEiwYAH9zyM1ZtJi3FQawmw6va61RAG2RjvARMKBpdKXldqIhVf/p+T4" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "952" ], + "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/2012-R2-Datacenter-smalldisk/versions/9600.19847.2010090140\",\"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/007efb466dc6418b8027b640626b427f%2FImage%2Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.3986.2010070045?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/SQL2016SP2-WS2016/skus/Web/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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.3986.2010070045?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": [ "1637" ], + "x-ms-client-request-id": [ "2bca5586-92bb-499a-b220-574bb773e058" ], + "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": [ "bf5821a8-02db-44cf-9294-eec1c533fcb0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13763" ], + "x-ms-request-id": [ "bf5821a8-02db-44cf-9294-eec1c533fcb0" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181419Z:bf5821a8-02db-44cf-9294-eec1c533fcb0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtmawrhJ0pUPX01vsZCx2GU1GID9Pcf7FmFJ7vC9CdKRcWQiIetyRgrWCFelBr2eDKv+6EmKeQJ8X8WEwt/YBCKNCJgz8y3pA2HSsy/Q6fBGK6mykWCMUY+b+FKPUpJH+RgDmp9wEnezXfzlq5Mnl" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "942" ], + "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/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.3986.2010070045\",\"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/c12f21f106244837acaafef12d14fc43%2FImage%2Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/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/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.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/MicrosoftSQLServer/offers/SQL2016SP2-WS2016/skus/Enterprise/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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": [ "1638" ], + "x-ms-client-request-id": [ "22f294c9-6c07-4945-9580-b3b34c0b1011" ], + "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": [ "233490dc-0f7f-489a-9c50-c0bcf4c800ee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13762" ], + "x-ms-request-id": [ "233490dc-0f7f-489a-9c50-c0bcf4c800ee" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181419Z:233490dc-0f7f-489a-9c50-c0bcf4c800ee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6hdQ+dhC1zKUJiBvwCm4fAjLW7uvS0QqIMWjUQfFEo7dm/cWqkn7nYp3lRRoHmFlSyxZI/L1UKOxQK/536WD25gHN8tcyXPg5DWLV7Rs7q111wrB8CpBC2O3VNiWNy9/mXzsPzYc9jO7kUi3GrpD" ] }, "ContentHeaders": { - "Content-Length": ["710"], - "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/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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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-Ubuntu1604/skus/SQLDEV/versions/14.0.1000320?api-version=2015-12-01-preview+53": { + "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/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, + "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": ["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"] }, "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": {} + "Content-Type": [ "application/json" ], + "Content-Length": [ "211" ] + } }, "Response": { - "StatusCode": 200, + "StatusCode": 201, "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": [ "2229a853-ad6f-4db9-a5e6-d6275121b2a6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1098" ], + "x-ms-request-id": [ "2229a853-ad6f-4db9-a5e6-d6275121b2a6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181421Z:2229a853-ad6f-4db9-a5e6-d6275121b2a6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHri+yfHeVzV5pr5wPzoqlKGCWPdETZg5kh+EMxhweoFkd4+8LVklk5CZdPven5dkmsq21xMIk6WjBNa2UOAeNfJGrvzbVkc5anXP2BsW5zdTDT/0l+MYzQLzpzDEeIM1+eOGDJm/TG57MUaB3C7v" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "586" ], + "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\":\"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-Ubuntu1604/skus/Web/versions/14.0.1000320?api-version=2015-12-01-preview+55": { + "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-n25r0507.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": [ "1640" ], + "x-ms-client-request-id": [ "7ee77952-3953-46e1-a584-5be29c2b3b4d" ], + "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/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": [ "ca863b56-e040-4b46-a3f3-c26dd9cee65e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13761" ], + "x-ms-request-id": [ "ca863b56-e040-4b46-a3f3-c26dd9cee65e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181451Z:ca863b56-e040-4b46-a3f3-c26dd9cee65e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmWVoPv0d6psoAqXxvGCesCalUfF6Go9gm7T7YfsezSVNLFgKO10PSPX/5VaK6fbEb9Yw2BuWW48CkqIXTk1P3rBZUJPz04qRy+bAfulHTQmCSkQi2WycCA0ek4vFGwulgRGSp8Tg3OjNBeOf41D6" ] }, "ContentHeaders": { - "Content-Length": ["715"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "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/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-SLES12SP2/skus/Express/versions/14.0.1000320?api-version=2015-12-01-preview+47": { + "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/Express/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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"] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "1641" ], + "x-ms-client-request-id": [ "7ee77952-3953-46e1-a584-5be29c2b3b4d" ], + "CommandName": [ "Add-AzsPlatformImage" ], + "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "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": {} + } }, "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": [ "63e49426-f0ec-453b-a590-28a36aecd5be" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13760" ], + "x-ms-request-id": [ "63e49426-f0ec-453b-a590-28a36aecd5be" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181451Z:63e49426-f0ec-453b-a590-28a36aecd5be" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBX3ZYRmPzeuPfzne6nZaonY8ex5MNhrceUqEoxJa/0ejGL7eEDrhOQ7O6vRYDUNx/TqKDI1VPwPCQo+xw68M8yFaB3+gGXdFc+NB5iw44sS9FJhf6Rd0iWn47UYNYlrsy2zfyuYy4JOdqpTjBO0n" ] }, "ContentHeaders": { - "Content-Length": ["713"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "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/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]+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/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, + "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": { - "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"] }, "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": {} + "Content-Type": [ "application/json" ], + "Content-Length": [ "211" ] + } }, "Response": { - "StatusCode": 200, + "StatusCode": 201, "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": [ "e4bdf50e-8344-47d4-95bc-cb0c74d6d39d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1097" ], + "x-ms-request-id": [ "e4bdf50e-8344-47d4-95bc-cb0c74d6d39d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181453Z:e4bdf50e-8344-47d4-95bc-cb0c74d6d39d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:14:53 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6Tdgtusp1D1bItZqv4neD5/kBuFasQVZ4GFv+KOxdgV+Fae042Uy6B/D+jqQK9B7vFQ1qlGprAxQhAfNRgQ2MfqdAIqXez8Mohz9nVIWTyGrdkE8uRMusYwKLQ8+CVkxQqwfaCh73QJo6pJtrmjE" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "Content-Length": [ "586" ], + "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\":\"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/Enterprise/versions/14.0.1000320?api-version=2015-12-01-preview+56": { + "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/Enterprise/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": ["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"] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "1643" ], + "x-ms-client-request-id": [ "dd1cb50b-9e77-429e-8777-13b36de2559a" ], + "CommandName": [ "Add-AzsPlatformImage" ], + "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "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-WS2016/skus/Express/versions/14.0.1000320?api-version=2015-12-01-preview+57": { - "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": [ "44e8916e-b16a-43a9-bc0c-7c925dea188c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14092" ], + "x-ms-request-id": [ "44e8916e-b16a-43a9-bc0c-7c925dea188c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181523Z:44e8916e-b16a-43a9-bc0c-7c925dea188c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/6cF8SC/oldlwjXp7jNMeaqVXHbH0TkHaxuhT5DWWdDjfZZ7agJ0+wd8aUk3GPVYAEH9SNkm9p1yPu6JefbsTNIoM8aR8XtnTbbLJDzDdKuGJiaRdAug0ZTG87VUamZgcHtVTZwfZ6+WiI2dEXEb" ] }, "ContentHeaders": { - "Content-Length": ["710"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "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/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\":\"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/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+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/Standard/versions/12.20.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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]"] - }, - "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"] + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "1644" ], + "x-ms-client-request-id": [ "dd1cb50b-9e77-429e-8777-13b36de2559a" ], + "CommandName": [ "Add-AzsPlatformImage" ], + "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ] }, "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-WS2016/skus/Standard/versions/14.0.1000320?api-version=2015-12-01-preview+59": { - "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": [ "97b488c8-aed1-4438-bcd2-106a279f7a85" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14091" ], + "x-ms-request-id": [ "97b488c8-aed1-4438-bcd2-106a279f7a85" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181524Z:97b488c8-aed1-4438-bcd2-106a279f7a85" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtqeUfXDU1ehz8e3rtDtnssFbBI2c5b3s++2T2QqXZVlUH26LYRpSbgEMG8JVuY5swp6uJDKviwkMCBS38Xoe7gFTzvfjBM3bgtHcKUu92AWjU9Vyhe7hfeulOb21jOJx7lZiyaUkxpopKdbmjD4B" ] }, "ContentHeaders": { - "Content-Length": ["708"], - "Content-Type": ["application/json; charset=utf-8"], - "Expires": ["-1"] + "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/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-n25r0507.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": [ "1645" ], + "x-ms-client-request-id": [ "b9349656-6df2-4a41-91b0-bdf2759bbff2" ], + "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": [ "21fb3434-55c4-4594-bf40-0e97cb788482" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14933" ], + "x-ms-request-id": [ "21fb3434-55c4-4594-bf40-0e97cb788482" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181526Z:21fb3434-55c4-4594-bf40-0e97cb788482" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:25 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGe0tNRZ0KfJ+P/md9weYvWwi1taC5qjUqBxOEbdmZg4cWYs2XVohRRynoPM8uh7Et9mKWZhms62rExpmlfxAyWP3Llz0tNoyTIlG+VtL4O2l54rMmOHxADZQsUwSFaZTAFI966NK9DLNDi80B79k" ] }, "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..e500a9e7 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-n25r0507.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": [ "1646" ], + "x-ms-client-request-id": [ "ed1105a0-e65c-482d-b387-013cdf7a91ef" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -15,934 +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" ], - "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" ], - "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" ], + "x-ms-correlation-request-id": [ "9b3675f9-34fa-4559-874c-4dcf4b441c6a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14089" ], + "x-ms-request-id": [ "9b3675f9-34fa-4559-874c-4dcf4b441c6a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181526Z:9b3675f9-34fa-4559-874c-4dcf4b441c6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:54 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "645" ], - "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\"}}" - } - }, - "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": { - "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", - "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": [ "555172f1-760e-40f9-a388-bbc335ee2b7e" ], + "Date": [ "Thu, 19 Aug 2021 18:15:26 GMT" ], "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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:55 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5saxwJbesw4KWYNwSNQXR80d4wl1ur9yuzmwH8bIAFymZG7LA9ICotx+Jph2qUODF+ObsLrz9RMHgMAqW9zpwJ+H1YTTBqffYAv37qw+JMa+HbzpqrbfTUJqdbs/5R4eNTsG7WJTps/Aro90hO3m" ] }, "ContentHeaders": { - "Content-Length": [ "599" ], + "Content-Length": [ "8730" ], "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\"}}" + "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.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.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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/KasperskyLab.SecurityAgent/types/KSWS/versions/1.0.0.0?api-version=2015-12-01-preview+25": { + "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/KasperskyLab.SecurityAgent/types/KSWS/versions/1.0.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "34" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1647" ], + "x-ms-client-request-id": [ "c804408e-677e-4385-b962-26529781009f" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -951,34 +62,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "80b44061-ec64-43b1-8861-f509e278ee4b" ], - "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" ], + "x-ms-correlation-request-id": [ "33dfca8d-796b-4028-82e7-e96f3f09c66b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14088" ], + "x-ms-request-id": [ "33dfca8d-796b-4028-82e7-e96f3f09c66b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181526Z:33dfca8d-796b-4028-82e7-e96f3f09c66b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:44:57 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBTsBn8+7hEjFDkjXboljwGaOJ69YY8AMNOSZ8y+7LfhCgpXz7rWmWVOxmFGJTay22WDldHJu0E/hzI1MswrLcXUVuNAkjoCvJlpo0oMe8BfQ/Nz61YkVdAz2XbJL7LN+VG+2QSV6xKcRlE446yeJ" ] }, "ContentHeaders": { - "Content-Length": [ "612" ], + "Content-Length": [ "8730" ], "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.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.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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-n25r0507.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": [ "1648" ], + "x-ms-client-request-id": [ "c6db8bd0-3e39-431c-8ae7-6b539e8c0a47" ], + "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": [ "7b895566-b645-4739-833f-62d60e93886f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14087" ], + "x-ms-request-id": [ "7b895566-b645-4739-833f-62d60e93886f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181527Z:7b895566-b645-4739-833f-62d60e93886f" ], "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": [ "Thu, 19 Aug 2021 18:15:26 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+88ztV3gghzSPqB2vtqVPXcpmm5POQ5e56IdbxX7/YBEcGv8bgt+fKiX1kYQOCZ5ierXkX8RmklZ0fZ86A8RumuXIZUULXFwoSmxgaKWfMJ8T4BZzthM0Xmq/kpaodlcgEA+zzpdmM20SVteHigM" ] }, "ContentHeaders": { - "Content-Length": [ "600" ], + "Content-Length": [ "8730" ], "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.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.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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-n25r0507.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": [ "1649" ], + "x-ms-client-request-id": [ "63eaae3e-0399-42e3-a2dd-32e503f33907" ], + "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": [ "14f53f72-2763-4707-9c30-44bcf6a5b75b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14086" ], + "x-ms-request-id": [ "14f53f72-2763-4707-9c30-44bcf6a5b75b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181527Z:14f53f72-2763-4707-9c30-44bcf6a5b75b" ], "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": [ "Thu, 19 Aug 2021 18:15:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvllcTh/Rg8s1iBUV7IRL21xs+3rfcBydUsAnn7KhxI9Azw35RXFZz6W5C9I+8RHWpQsr0YdOl//w5vNxWr7oIDqv7xtWh6luQJG6VrN+UpjAViz6/b3zu0qH32w4qBQu8mpPriJW68JUJ+MCfZcZd" ] }, "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-n25r0507.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": [ "1650" ], + "x-ms-client-request-id": [ "c7a551ea-7952-432f-989b-7d9852292f5d" ], + "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": [ "d2fc75e0-998a-43c4-9253-d99dffefd527" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14085" ], + "x-ms-request-id": [ "d2fc75e0-998a-43c4-9253-d99dffefd527" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181527Z:d2fc75e0-998a-43c4-9253-d99dffefd527" ], "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": [ "Thu, 19 Aug 2021 18:15:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv98EMkKIYdoe/dLCKKMNQx/X5aMjnUPsfnyxofSDx7aSlVn9+NJZxiYrP7fanpzNqzBBB45foq+H7u0jrjJS0KzfnB6R7TLm6D2tGXI7zcbcrWRrxouKnSdGfNuBwfjXb8R+R+gA7fx9IQ9s+yvyY" ] }, "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-n25r0507.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": [ "1651" ], + "x-ms-client-request-id": [ "0ac0dff5-dcc3-47d5-a211-64c81f1260f7" ], + "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": [ "d56e89b9-43ea-47a1-a010-d20e46208667" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14084" ], + "x-ms-request-id": [ "d56e89b9-43ea-47a1-a010-d20e46208667" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181528Z:d56e89b9-43ea-47a1-a010-d20e46208667" ], "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": [ "Thu, 19 Aug 2021 18:15:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhX/BTS4atlo9cFK6lzKGwg4JzQZcEKFn9AQOKdBf9Wq3fi9NqusEvayiDUI4EUDJb/NxxBu4MQQKL2YHsnFlKi70CsKcJrHSGcVmRPxo0r0n5Y9cqZZL0dTrZ+9UZpEtKWDoeWJpt6b2wOfRNhCo" ] }, "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.Security/types/IaaSAntimalware/versions/1.5.5.9?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-n25r0507.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": [ "39" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1652" ], + "x-ms-client-request-id": [ "c95583e7-2998-4a06-9237-72a8cf4659b3" ], + "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": [ "a363c1d1-76b0-4598-994e-c0027f0f930c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14083" ], + "x-ms-request-id": [ "a363c1d1-76b0-4598-994e-c0027f0f930c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181528Z:a363c1d1-76b0-4598-994e-c0027f0f930c" ], "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": [ "Thu, 19 Aug 2021 18:15:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvs66C6OPeGinUN+9xYF8hTAR7UPUf/zcSbLfcqGtgYpyNkGBLwoKLee6u5o32ZBcKSIwDjits97htzyFMdG9DuVL75BiRlymS3/qsNDp0ya2Qss7067+sJDXVIs2BJcQxfxtHlxF5emm+h9RuK0AK" ] }, "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.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.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.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.Compute/types/CustomScriptExtension/versions/1.9.3?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-n25r0507.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.9.3?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": [ "1653" ], + "x-ms-client-request-id": [ "1f86c839-9c46-48fb-a0fb-7ccfc1b7400a" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1167,34 +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": [ "d1b76ac5-ebe8-4465-aebd-9187582d9b5b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14082" ], + "x-ms-request-id": [ "d1b76ac5-ebe8-4465-aebd-9187582d9b5b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181528Z:d1b76ac5-ebe8-4465-aebd-9187582d9b5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:07 GMT" ] + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBfjMNT/v9oBfjPh1p4tlLbSS0dhxgMLswFpHwOIeCVg7YbVHDwczNtsIp9d5G6y4ye6oE7yVIneR/rqwVws8x3XivAtn2RFi3g1wOqI4uuRCAMjZTK5BAnZUxJqH/zjjrxu5kpgK3YuHwi+9QLhZ" ] }, "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\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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\"}}", + "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.12.2.2?api-version=2015-12-01-preview+32": { + "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.4?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/IaaSDiagnostics/versions/1.12.2.2?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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.4?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "41" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1654" ], + "x-ms-client-request-id": [ "d8f869d0-b69f-4215-88de-262812aa9fc0" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1203,70 +356,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f4dbf832-1b15-4773-8d45-7abea43d2b0d" ], - "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" ], + "x-ms-correlation-request-id": [ "4edd644b-5170-4897-9a2f-223297050046" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14081" ], + "x-ms-request-id": [ "4edd644b-5170-4897-9a2f-223297050046" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181528Z:4edd644b-5170-4897-9a2f-223297050046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:09 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.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\"}}" - } - }, - "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": { - "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", - "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": [ "0980f5ab-eda4-4c2e-be13-0d0cbb2e1bd4" ], + "Date": [ "Thu, 19 Aug 2021 18:15:28 GMT" ], "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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:10 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx46P31AwSbdHFPfu8Lyvc3rXp7HbAmiCaMikITEdW/Ad2doREh9z1Q4dLd1lgyTSn+ItAaGYWxT885jdzuWvzS56im5UILBNEUEnkZxN2KVNULCzm8C00mWbouw/w04QjlQZMFLyhch/L56d1MyG" ] }, "ContentHeaders": { - "Content-Length": [ "633" ], + "Content-Length": [ "620" ], "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\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.4\",\"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.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9?api-version=2015-12-01-preview+34": { + "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.4?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.Azure.Security/types/IaaSAntimalware/versions/1.5.5.9?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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.4?api-version=2015-12-01-preview", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "43" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1655" ], + "x-ms-client-request-id": [ "c8384681-0bdf-4b88-bd37-7e77f06b8f63" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1275,70 +398,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "53928152-d1f1-41a4-8909-db44eac7fb95" ], - "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" ], + "x-ms-correlation-request-id": [ "c49b1ccf-d45e-41b3-9de3-107b3e710a85" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14080" ], + "x-ms-request-id": [ "c49b1ccf-d45e-41b3-9de3-107b3e710a85" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181529Z:c49b1ccf-d45e-41b3-9de3-107b3e710a85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:11 GMT" ] - }, - "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.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\"}}" - } - }, - "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": { - "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", - "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": [ "59374e0f-3bae-4c85-92d7-e634ca066f06" ], + "Date": [ "Thu, 19 Aug 2021 18:15:28 GMT" ], "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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:13 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx10ZEFcz747s7OHZ6CmN/5b6HOwF3tnfoS1dZ6WQkzjL1pWWSlksvGdLw02nPF0Rum19JKWF1WT29NqWQkpyIaPn9RRBgCOEJV7PD6bu69EhCqY86/ncniWYhQyfH+dr1TPp/fqQFA1xrGs2yInz" ] }, "ContentHeaders": { - "Content-Length": [ "623" ], + "Content-Length": [ "603" ], "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\"}}" + "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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\"}}", + "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.2?api-version=2015-12-01-preview+36": { + "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+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.2?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "45" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1656" ], + "x-ms-client-request-id": [ "dfa96a21-0c4d-4984-85c1-693fe156524d" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1347,70 +440,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7b78aef4-a5d9-4cd9-8665-d24bffd1c135" ], - "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" ], + "x-ms-correlation-request-id": [ "f588f107-aebb-413f-9bc0-a8386a20d522" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14079" ], + "x-ms-request-id": [ "f588f107-aebb-413f-9bc0-a8386a20d522" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181529Z:f588f107-aebb-413f-9bc0-a8386a20d522" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:15 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.Compute/types/JsonADDomainExtension/versions/1.3.4?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/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4?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": [ "4c3d049c-9688-4a8c-9819-9baba25837d0" ], + "Date": [ "Thu, 19 Aug 2021 18:15:28 GMT" ], "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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:17 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIUVsGMlfRxiLCJf3iBBo/3XeaZmF321QQ8iFzjUeYCeNorG+WiLn9cMGl0rlXZiKqjsbb8nFMGPczvHuHQeVF3PXr9+gmO0uIkIyZUbpdj0VHkRTD4rPsmriiowCuJErMqVdp9S4ai7GMSKlMaVs" ] }, "ContentHeaders": { - "Content-Length": [ "624" ], + "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.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\"}}" + "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.Compute/types/VMAccessAgent/versions/2.4.4?api-version=2015-12-01-preview+38": { + "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+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.Compute/types/VMAccessAgent/versions/2.4.4?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "47" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1657" ], + "x-ms-client-request-id": [ "88dbf7f1-a76d-4c52-9a46-0b5e99d14686" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1419,70 +482,40 @@ "Response": { "StatusCode": 200, "Headers": { - "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9b56f9ae-2575-48ea-b853-2f23448bdabb" ], - "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" ], + "x-ms-correlation-request-id": [ "1bfc7a29-0fd2-47c2-b014-21f376713b70" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14078" ], + "x-ms-request-id": [ "1bfc7a29-0fd2-47c2-b014-21f376713b70" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181529Z:1bfc7a29-0fd2-47c2-b014-21f376713b70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:19 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.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5?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/VMExtension/publishers/Microsoft.EnterpriseCloud.Monitoring/types/MicrosoftMonitoringAgent/versions/1.0.11081.5?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": [ "7aeefd75-a1c6-4e37-8906-b95fce5df207" ], + "Date": [ "Thu, 19 Aug 2021 18:15:29 GMT" ], "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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:20 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYb7fk17xJ2O2EwjmnP+KO+nQBRjHi2hAUv8Bwp4h1mdMrZQRWsXs4Eiq6LpfXS5hBNvqc/ZEdzc5rJdTjHQNS6dpTgmmfYcYAT4WdMJloelJfZXxCYxKtB29CrGqe64odHni2N2S53eozbKtoBzF" ] }, "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.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.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.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.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.1.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/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "49" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1658" ], + "x-ms-client-request-id": [ "f4d444e2-a7bc-43c9-b6ff-95053f767d83" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1491,70 +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": [ "f864b39c-0400-4cda-a1e8-8593bf7368e1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14077" ], + "x-ms-request-id": [ "f864b39c-0400-4cda-a1e8-8593bf7368e1" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181530Z:f864b39c-0400-4cda-a1e8-8593bf7368e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:22 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/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\"}}" - } - }, - "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": { - "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", - "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": [ "0922e4cf-21df-4bb0-afc7-61ac63fbd82e" ], + "Date": [ "Thu, 19 Aug 2021 18:15:29 GMT" ], "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" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 21 Feb 2020 01:45:24 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvt/HTwoEzXeYwKyzbXibjpf2+FPdMqSX+8vCR26si2BjfEao0XgPmyKiLv6wfZT29MflfcMqTGc8e8VtXhaStA3/LPI8Ax8cKnkFb3KvdAFdaluWZ5s/Mf62b9eWt3kcC62nXkVfVfqMUfrYTmyMr" ] }, "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/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.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/NvidiaGpuDriverWindows/versions/1.3.2.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.Powershell/types/DSC/versions/2.77.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "51" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1659" ], + "x-ms-client-request-id": [ "512435f1-c351-428c-860b-d9ac10f5be9e" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1563,70 +566,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": [ "54c62c82-6fcd-4f29-9680-492d7fd16b38" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14076" ], + "x-ms-request-id": [ "54c62c82-6fcd-4f29-9680-492d7fd16b38" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181530Z:54c62c82-6fcd-4f29-9680-492d7fd16b38" ], "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": [ "Thu, 19 Aug 2021 18:15:29 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+iejB4oAMCARKicQRvRwcfuEcC21jGeCtMu3qiOOZsaiLu9aaVo/070j/RWZqkl30JnSLN/Ese03cQ/3lXiaYiu1Cg+IsxMuG2zgho2eVGqvy6uFFyYHunF4OUxXow1oeZKdXk8aDxcanZBt7FI1P5aKDGt0qKjbbwohiU" ] }, "ContentHeaders": { - "Content-Length": [ "679" ], + "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.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/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/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.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5?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.OSTCExtensions/types/OSPatchingForLinux/versions/2.3.0.1?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5?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": [ "1660" ], + "x-ms-client-request-id": [ "f91d5206-4787-4a7c-bb19-bd7ea4fb721b" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1635,70 +608,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": [ "9dab0054-d266-4f5d-b468-ebb6a411498a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14075" ], + "x-ms-request-id": [ "9dab0054-d266-4f5d-b468-ebb6a411498a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181530Z:9dab0054-d266-4f5d-b468-ebb6a411498a" ], "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": [ "Thu, 19 Aug 2021 18:15:29 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+iejB4oAMCARKicQRv5/IZukG5VnK8bpv8Z7+0VrEAbgknPkVTq0HvoEQ3OprW84CHsdS9LCpQLJljTqyY5nxH0Q48Y/N1cEXqiTPYpULXiCmWAeIbaTlGooW9R5XK4AFFfD00v15LfloFbNOQZspKGy+dJTRgb4t7+ief" ] }, "ContentHeaders": { - "Content-Length": [ "603" ], + "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.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.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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\"}}", + "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.2?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/VMAccessForLinux/versions/1.4.0.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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.2?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": [ "1661" ], + "x-ms-client-request-id": [ "30dfd3d1-1426-406e-ae70-5017bf38b1b4" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1707,34 +650,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": [ "0faebf9a-c769-472a-826c-364145acf189" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14074" ], + "x-ms-request-id": [ "0faebf9a-c769-472a-826c-364145acf189" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181530Z:0faebf9a-c769-472a-826c-364145acf189" ], "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": [ "Thu, 19 Aug 2021 18:15:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvITYJYsB32h4Ur9TnYiUOEKK/QYUmHYi/3FH8EMymqkcWZrPBaR8k3iJJOejI7t0tcqqp+OEM+Tn8Wv7FyApgPcJugYRDgmI2fpsdKRPgS0e/X0ShPdW+tZ0Du5TgnuC7KbrxlZgh49VGHNqR41zR" ] }, "ContentHeaders": { - "Content-Length": [ "629" ], + "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.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.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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\"}}", + "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+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/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "1662" ], + "x-ms-client-request-id": [ "69168b25-8842-4e90-8c7a-bd5f13ded15e" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1743,35 +692,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": [ "e2e350eb-39e3-4815-b1db-6da60a0a9921" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14073" ], + "x-ms-request-id": [ "e2e350eb-39e3-4815-b1db-6da60a0a9921" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181531Z:e2e350eb-39e3-4815-b1db-6da60a0a9921" ], "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": [ "Thu, 19 Aug 2021 18:15:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsGcXLxbMwKGxiCRBoGpDudGxQPUpvrEJ4hqrNxO5Nwi/WgaXwGawCGiqaPqCZM4K8T9GMutjZEH7VGaIi0kSWItp087SWa6TrYGykHCxmTjXXuGqEnGVnqvyckOnmaeSf1gzKyg35uJyS6IWHkwi" ] }, "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 +729,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": [ "141186ac-9788-408c-ae0b-011f3b360daf" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1119" ], + "x-ms-request-id": [ "141186ac-9788-408c-ae0b-011f3b360daf" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181532Z:141186ac-9788-408c-ae0b-011f3b360daf" ], "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": [ "Thu, 19 Aug 2021 18:15:32 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuz/tNZSENNiXAZYgEgA2EmPVezdiGYuU/6g2XscnF49QYczF9Rc47YJgZZf5oVyMg7/p6EL78pRy4Vna/rXEaVU5QKbhTnjxaJDJEXu68gg9fVH2rbtQcE/O1WfxsHUJwH1yc5xCUAqU+oV8y+UX" ] }, "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-n25r0507.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": [ "1664" ], + "x-ms-client-request-id": [ "9aec5fd0-4fbc-4930-ae20-7cd28fe45dcf" ], + "CommandName": [ "Remove-AzsVMExtension" ], + "FullCommandName": [ "Remove-AzsVMExtension_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1817,23 +771,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": [ "38f2d0bb-1b54-4544-a0ca-5222525e337f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14932" ], + "x-ms-request-id": [ "38f2d0bb-1b54-4544-a0ca-5222525e337f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181533Z:38f2d0bb-1b54-4544-a0ca-5222525e337f" ], "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": [ "Thu, 19 Aug 2021 18:15:33 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7VFzErhyFnjXBsXxyWJhpulJJUc1bclPFa0gqtoDF1+oERobam4MQwxtwcqB7v4E/2LAFbfo4NUeMHUWIuixuo6f2nyr6v9L1KDhv96SkUW1v0eJyGhbjUt4txR2+GGjJSR5IONTsoeKfPZGJFP6" ] }, "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..5e4510c0 100644 --- a/src/Azs.Compute.Admin/test/Common.ps1 +++ b/src/Azs.Compute.Admin/test/Common.ps1 @@ -1,4 +1,8 @@ $global:SkippedTests = @( "TestDeleteNonExistingQuota", + "TestListDisks", + "TestGetDisk", + "TestGetDiskMigrationJob", + "TestNewDiskMigrationJob", "TestStopDiskMigrationJob" ) \ No newline at end of file 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..027eabda --- /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-n25r0507.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": [ "3321" ], + "x-ms-client-request-id": [ "6e9ccc44-e8dd-4c03-a880-954e471ad3b7" ], + "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": [ "dac88c58-c349-42ee-820d-35f45629e342" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14132" ], + "x-ms-request-id": [ "dac88c58-c349-42ee-820d-35f45629e342" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192403Z:dac88c58-c349-42ee-820d-35f45629e342" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHAwqQ17ix23Ma/oOCLl1DHAfK35l0OaNmp1eob7t6eCygPyvQkNBrbx6cqsX0t1b30MWYFfhWMnNfwM0LmiVmUHD0XJ4caTHLXnD8PyHIAqu23neJK0ZDAG4Gplm9P+V3opCYtxX+7NZPC3eSqdX" ] + }, + "ContentHeaders": { + "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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\": \"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": [ "bc119376-ecf6-40c5-bcc9-ff31c6510dbb" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], + "x-ms-request-id": [ "bc119376-ecf6-40c5-bcc9-ff31c6510dbb" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192403Z:bc119376-ecf6-40c5-bcc9-ff31c6510dbb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWPHBac1igd1UcPmh9lKqs6exb/ir8kFdB0tHy9laZZwqaHATRE/9N/rZnqolqBIiYTQzYow01MH77zzyWhCvWd7S9BN/1tKzPilLbAZjV/qIkwId+uyLtCIaF2HRSYbw6uo7lNQtSD9FtktMynED" ] + }, + "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\": \"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": [ "4bf7911d-7b93-4127-b0bc-c45b8a8e2069" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], + "x-ms-request-id": [ "4bf7911d-7b93-4127-b0bc-c45b8a8e2069" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192403Z:4bf7911d-7b93-4127-b0bc-c45b8a8e2069" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdH9U+5YhP5uBSSH2dGAnZSb08RTaM4/dQCD7o6/Fk48xGkAM6T0ZzAjOCKXPRZ9rzLk2HaZdZvpTrDcL7aPPenRasoXUyqT5UzJ20auYUD2nO6yRM8lHvxi6YrqrX1nG9Wd8TNiS87BwJwYGv35f" ] + }, + "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-n25r0507.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": [ "3324" ], + "x-ms-client-request-id": [ "9864a8e3-9cbb-4288-8198-6d36e1a99345" ], + "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": [ "b0763a38-d9db-4084-99aa-50f2e768ca0c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14131" ], + "x-ms-request-id": [ "b0763a38-d9db-4084-99aa-50f2e768ca0c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:b0763a38-d9db-4084-99aa-50f2e768ca0c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv06U54elrequ55LN/0Hv21ykMH4q7E/qEBzrUmY0jOz00QD9gHZ88V++mkJ84/fRvLFTU6/uvz75/ccRuQjz//MT/y5Qku1uEntX/r9Ytswmk8PwgjXMG7xn7KQKL5HvmMnnqzC06eBAhUzhTDQTU" ] + }, + "ContentHeaders": { + "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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..6b35d390 --- /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-n25r0507.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": [ "3325" ], + "x-ms-client-request-id": [ "767e1cfe-d6d2-41dd-b13a-f44605bc54ad" ], + "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": [ "1cbe374c-08f0-46c4-bbad-15cc53777e11" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14130" ], + "x-ms-request-id": [ "1cbe374c-08f0-46c4-bbad-15cc53777e11" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:1cbe374c-08f0-46c4-bbad-15cc53777e11" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcAWeNZIAt6rY/n5JRiO9yG4pNNrtnjxdaNtz3fg2EetCeoHa0y0ezCvDd1Oe5i5H50QIZQ/+Qn3IUMLOG0Y5rfZkOxIa4tL2cYR5oqy0jGHNY/QBRtzzdMT6+m3C0sBK4fZ3Lxlvip1Zk2pxXCGx" ] + }, + "ContentHeaders": { + "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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": [ "5096a487-7cfe-464e-b597-7520354a32f1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], + "x-ms-request-id": [ "5096a487-7cfe-464e-b597-7520354a32f1" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:5096a487-7cfe-464e-b597-7520354a32f1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAYidSRPL4vUrnRisSqZUJZvOFEvi9gX4ktJ9m8DTAIJYqxG9q7GyisWbUpveepMv/PnwjXr1em9aOTUQQVmd2U75vrGaVIa7E7HMDsOYBj6z4NmdBligbBdYfAckri3BVqL7UX+xoL4cF/lrR/Q+" ] + }, + "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-n25r0507.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": [ "3327" ], + "x-ms-client-request-id": [ "d31e728f-ba07-4447-8ab3-f378eab231f5" ], + "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": [ "fd9885d9-a1d7-446b-8763-c2e7d14c463e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14129" ], + "x-ms-request-id": [ "fd9885d9-a1d7-446b-8763-c2e7d14c463e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:fd9885d9-a1d7-446b-8763-c2e7d14c463e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXAhQVATjGcC7ju3vv9sY4YMh5n40M85m453C6gLMLww1fWtrm02F572mCV71+QJZt9OXmHoBbnaFZhvk4OMatKNScN4kTFk+z9AkeqlfhsnX5iLFqXNvcWZZ0MPfL8o2urepFtRmKckdyUlQPqOO" ] + }, + "ContentHeaders": { + "Content-Length": [ "721" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\",\"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": [ "2cbc4b7c-da7c-4389-863a-81c951424c88" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1171" ], + "x-ms-request-id": [ "2cbc4b7c-da7c-4389-863a-81c951424c88" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:2cbc4b7c-da7c-4389-863a-81c951424c88" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1payj4FUGQuGEEU5YLdmgK3YX9qwQFhVYP3aIV8qzDAyP5p2nKzTtM0Qr5RtHnuFvzen0chEYItV9DUeUTznyNqA0mh4Ox6bx/7aoizyOyC6LkAR6YUMM4Ic9ia4yoYTNn8SftmymfIpVm2ayYRC" ] + }, + "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-n25r0507.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": [ "3329" ], + "x-ms-client-request-id": [ "c6d67afe-b750-41aa-a41f-aaae870b16f5" ], + "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": [ "f4b5b591-b711-49bd-a53f-54ca198507fd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14128" ], + "x-ms-request-id": [ "f4b5b591-b711-49bd-a53f-54ca198507fd" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:f4b5b591-b711-49bd-a53f-54ca198507fd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkz+7EOQkkJcjArR+heMqFxi9xBXJmVyjWI06u0DwmpVCMtBP1kozcVmo6w8zsfEGnCBuRACf34cdooKOGqoMUUQISx7a39DS559ovUiJoXagSQ9G5IyVN38VjAm7JZCNmIev+u/iCczr5Ea9nHWs" ] + }, + "ContentHeaders": { + "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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..8f6510ef --- /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-n25r0507.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": [ "3330" ], + "x-ms-client-request-id": [ "2be80849-1663-453f-a7be-cac228aa9f52" ], + "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": [ "edc50d37-7df1-4bb9-95ea-9e9f64cd1f1f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14127" ], + "x-ms-request-id": [ "edc50d37-7df1-4bb9-95ea-9e9f64cd1f1f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192405Z:edc50d37-7df1-4bb9-95ea-9e9f64cd1f1f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOuMGcW9LqC1eowNHcA+bBBzito2g1RYdI1lT0dX+sQl6iUbOKCPTo3x88zBNRjGwLsMR/gyi3/Jqmlvchzn8RVjWqFhtaOyNnA/SKMtNsrMjInWdnO+SQJORA3K/GPx0FvRcb8h2m0nrAKr6tSai" ] + }, + "ContentHeaders": { + "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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..27d25508 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-n25r0507.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": [ "1671" ], + "x-ms-client-request-id": [ "8ab46a91-36e5-4c81-8524-675604188ab2" ], "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": [ "dcee5e3f-01ce-42d4-a103-ca040aa15e7d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14068" ], + "x-ms-request-id": [ "dcee5e3f-01ce-42d4-a103-ca040aa15e7d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181535Z:dcee5e3f-01ce-42d4-a103-ca040aa15e7d" ], "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": [ "Thu, 19 Aug 2021 18:15:34 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu368vc+fECSUAdUwnBKpvomiRdMf4G8vRai7jHYSHfyMAN2Q+FXyTFfTfPO2WjhYu+2BbWa6nio752+7SDM6TSPZFnhDjRxlz5TBpbb9lQVORTFyUOmpR8anv9QtX6NZR7cPt9QZevnzwMKGsZIF" ] }, "ContentHeaders": { - "Content-Length": [ "3541" ], + "Content-Length": [ "89437" ], "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-183\",\"name\":\"crp-test-admin-quota-183\",\"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-295\",\"name\":\"crp-test-admin-quota-295\",\"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-403\",\"name\":\"crp-test-admin-quota-403\",\"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-548\",\"name\":\"crp-test-admin-quota-548\",\"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/crp-test-admin-quota-609\",\"name\":\"crp-test-admin-quota-609\",\"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-666\",\"name\":\"crp-test-admin-quota-666\",\"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-763\",\"name\":\"crp-test-admin-quota-763\",\"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-880\",\"name\":\"crp-test-admin-quota-880\",\"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-930\",\"name\":\"crp-test-admin-quota-930\",\"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-932\",\"name\":\"crp-test-admin-quota-932\",\"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/crp-test-admin-quota-938\",\"name\":\"crp-test-admin-quota-938\",\"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-965\",\"name\":\"crp-test-admin-quota-965\",\"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/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_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"name\":\"TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"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_03e83052-5334-4698-ae99-2d7c920be26a\",\"name\":\"TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a\",\"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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"name\":\"TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"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_0c338586-bd2d-4853-9469-9d777aeda04c\",\"name\":\"TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c\",\"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_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"name\":\"TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"name\":\"TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"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_0fc53db4-6547-49fb-99a9-478fd1854760\",\"name\":\"TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760\",\"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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"name\":\"TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"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_1837cc90-2efd-4a73-9403-8067935dff2a\",\"name\":\"TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a\",\"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_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"name\":\"TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"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_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"name\":\"TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"name\":\"TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"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_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"name\":\"TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"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_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"name\":\"TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"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_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"name\":\"TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"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_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"name\":\"TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"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_241c777d-cea3-421f-8f87-10fad501471c\",\"name\":\"TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c\",\"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_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"name\":\"TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"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_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"name\":\"TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"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_2724109d-2850-4287-aa4a-2fee87856796\",\"name\":\"TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796\",\"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_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"name\":\"TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"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_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"name\":\"TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"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_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"name\":\"TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"name\":\"TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"name\":\"TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"name\":\"TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"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_315e9ea0-41a2-425a-89ad-035934330030\",\"name\":\"TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030\",\"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_35640a91-26b9-4752-a80f-c2ccb1200362\",\"name\":\"TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362\",\"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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"name\":\"TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"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_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"name\":\"TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"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_380ef479-4324-4189-b01d-4ac06415dff4\",\"name\":\"TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4\",\"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_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"name\":\"TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"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_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"name\":\"TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"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_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"name\":\"TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"name\":\"TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"name\":\"TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"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_40a56c01-a2d1-4532-8b31-c55667920160\",\"name\":\"TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160\",\"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_4456bc12-f4b9-468c-b445-debf990183ff\",\"name\":\"TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff\",\"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_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"name\":\"TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"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_46db30e9-0725-471d-96e2-5f99dac411f6\",\"name\":\"TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6\",\"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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"name\":\"TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"name\":\"TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"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_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"name\":\"TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"name\":\"TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"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_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"name\":\"TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"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_4affb4ae-2533-4b91-9669-178a72c28c05\",\"name\":\"TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05\",\"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_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"name\":\"TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"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_50210271-dd89-479e-b2ef-a705d6d5136e\",\"name\":\"TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e\",\"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_531120d4-b389-4576-a76a-ddaefbc7d099\",\"name\":\"TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099\",\"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_5351849c-c628-4716-bd44-d0e596aba50d\",\"name\":\"TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d\",\"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_5367a7df-297e-466f-bd25-70e916a864ef\",\"name\":\"TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef\",\"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_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"name\":\"TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"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_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"name\":\"TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"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_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"name\":\"TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"name\":\"TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"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_5e42ae42-19e7-4173-9637-a2151db79696\",\"name\":\"TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696\",\"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_5f0b1184-4467-41d3-95d2-912a324591c8\",\"name\":\"TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8\",\"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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"name\":\"TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"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_62f98c1d-6944-4881-9340-88f3518ab36a\",\"name\":\"TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a\",\"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_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"name\":\"TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"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_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"name\":\"TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"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_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"name\":\"TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"name\":\"TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"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_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"name\":\"TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"name\":\"TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"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_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"name\":\"TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"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_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"name\":\"TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"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_718a092c-627e-44c9-8b85-afa051604d51\",\"name\":\"TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51\",\"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_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"name\":\"TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"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_74b7ce15-3896-4604-aa77-dd938948d44e\",\"name\":\"TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e\",\"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_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"name\":\"TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"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_75570a55-9a85-4ab6-b307-1729dea80220\",\"name\":\"TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220\",\"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_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"name\":\"TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"name\":\"TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"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_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"name\":\"TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"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_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"name\":\"TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"name\":\"TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"name\":\"TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"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_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"name\":\"TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"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_834ccfc2-c570-486f-9f82-606958969a8f\",\"name\":\"TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f\",\"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_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"name\":\"TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"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_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"name\":\"TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"name\":\"TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"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_8855d8ef-d217-4949-844b-424daaace267\",\"name\":\"TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267\",\"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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"name\":\"TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"name\":\"TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"name\":\"TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"name\":\"TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"name\":\"TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"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_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"name\":\"TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"name\":\"TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"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_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"name\":\"TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"name\":\"TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"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_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"name\":\"TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"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_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"name\":\"TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"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_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"name\":\"TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"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_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"name\":\"TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"name\":\"TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"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_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"name\":\"TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"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_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"name\":\"TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"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_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"name\":\"TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"name\":\"TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"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_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"name\":\"TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"name\":\"TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"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_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"name\":\"TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"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_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"name\":\"TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"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_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"name\":\"TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"name\":\"TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"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_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"name\":\"TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"name\":\"TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"name\":\"TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"name\":\"TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"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_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"name\":\"TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"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_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"name\":\"TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"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_bc07765f-c3f5-403d-8852-a26378a74da1\",\"name\":\"TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1\",\"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_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"name\":\"TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"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_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"name\":\"TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"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_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"name\":\"TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"name\":\"TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"name\":\"TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"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_c3962496-e060-45e6-b892-428bd15fba06\",\"name\":\"TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06\",\"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_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"name\":\"TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"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_c5117940-85df-4e95-8295-08b129c4230a\",\"name\":\"TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a\",\"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_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"name\":\"TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"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_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"name\":\"TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"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_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"name\":\"TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"name\":\"TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"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_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"name\":\"TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"name\":\"TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"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_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"name\":\"TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"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_d47b3132-f356-4b72-a8e9-f915289d622f\",\"name\":\"TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f\",\"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_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"name\":\"TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"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_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"name\":\"TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"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_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"name\":\"TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"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_de07e417-8c58-4079-8494-7f903c93fb3b\",\"name\":\"TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b\",\"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_df78adb7-1839-4e19-aaca-ea67878453da\",\"name\":\"TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da\",\"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_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"name\":\"TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"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_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"name\":\"TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"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_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"name\":\"TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"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_e7148f69-198c-4061-9145-883d70ae5011\",\"name\":\"TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011\",\"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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"name\":\"TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"name\":\"TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"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_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"name\":\"TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"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_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"name\":\"TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"name\":\"TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"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_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"name\":\"TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"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_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"name\":\"TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"name\":\"TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"name\":\"TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"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_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"name\":\"TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"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_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"name\":\"TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"name\":\"TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"name\":\"TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"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_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"name\":\"TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"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-n25r0507.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": [ "1672" ], + "x-ms-client-request-id": [ "653f04e9-6a4d-4e9b-987a-9f54ef0467ae" ], "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": [ "d783473b-4fc6-4a93-80d6-4b519fe08ddc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14067" ], + "x-ms-request-id": [ "d783473b-4fc6-4a93-80d6-4b519fe08ddc" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181536Z:d783473b-4fc6-4a93-80d6-4b519fe08ddc" ], "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": [ "Thu, 19 Aug 2021 18:15:36 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnhUY3RP9jlcyRx4pTnJPcYA8LjThDMHJ3iGeD1XPXnAkm9b1vKwjhrZ2zmZLPhXEHWI7BRCT0Ohb+8Dab6HjmIRhQccDNflavdaPYP2Hr0X4bEu145JWPF6yuUy46tmnG8ej3OvNXKftsHmMCb31" ] }, "ContentHeaders": { - "Content-Length": [ "3541" ], + "Content-Length": [ "89437" ], "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-183\",\"name\":\"crp-test-admin-quota-183\",\"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-295\",\"name\":\"crp-test-admin-quota-295\",\"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-403\",\"name\":\"crp-test-admin-quota-403\",\"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-548\",\"name\":\"crp-test-admin-quota-548\",\"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/crp-test-admin-quota-609\",\"name\":\"crp-test-admin-quota-609\",\"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-666\",\"name\":\"crp-test-admin-quota-666\",\"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-763\",\"name\":\"crp-test-admin-quota-763\",\"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-880\",\"name\":\"crp-test-admin-quota-880\",\"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-930\",\"name\":\"crp-test-admin-quota-930\",\"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-932\",\"name\":\"crp-test-admin-quota-932\",\"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/crp-test-admin-quota-938\",\"name\":\"crp-test-admin-quota-938\",\"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-965\",\"name\":\"crp-test-admin-quota-965\",\"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/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_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"name\":\"TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"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_03e83052-5334-4698-ae99-2d7c920be26a\",\"name\":\"TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a\",\"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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"name\":\"TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"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_0c338586-bd2d-4853-9469-9d777aeda04c\",\"name\":\"TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c\",\"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_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"name\":\"TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"name\":\"TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"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_0fc53db4-6547-49fb-99a9-478fd1854760\",\"name\":\"TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760\",\"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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"name\":\"TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"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_1837cc90-2efd-4a73-9403-8067935dff2a\",\"name\":\"TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a\",\"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_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"name\":\"TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"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_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"name\":\"TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"name\":\"TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"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_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"name\":\"TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"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_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"name\":\"TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"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_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"name\":\"TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"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_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"name\":\"TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"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_241c777d-cea3-421f-8f87-10fad501471c\",\"name\":\"TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c\",\"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_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"name\":\"TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"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_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"name\":\"TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"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_2724109d-2850-4287-aa4a-2fee87856796\",\"name\":\"TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796\",\"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_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"name\":\"TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"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_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"name\":\"TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"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_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"name\":\"TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"name\":\"TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"name\":\"TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"name\":\"TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"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_315e9ea0-41a2-425a-89ad-035934330030\",\"name\":\"TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030\",\"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_35640a91-26b9-4752-a80f-c2ccb1200362\",\"name\":\"TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362\",\"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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"name\":\"TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"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_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"name\":\"TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"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_380ef479-4324-4189-b01d-4ac06415dff4\",\"name\":\"TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4\",\"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_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"name\":\"TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"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_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"name\":\"TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"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_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"name\":\"TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"name\":\"TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"name\":\"TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"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_40a56c01-a2d1-4532-8b31-c55667920160\",\"name\":\"TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160\",\"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_4456bc12-f4b9-468c-b445-debf990183ff\",\"name\":\"TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff\",\"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_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"name\":\"TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"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_46db30e9-0725-471d-96e2-5f99dac411f6\",\"name\":\"TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6\",\"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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"name\":\"TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"name\":\"TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"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_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"name\":\"TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"name\":\"TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"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_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"name\":\"TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"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_4affb4ae-2533-4b91-9669-178a72c28c05\",\"name\":\"TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05\",\"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_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"name\":\"TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"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_50210271-dd89-479e-b2ef-a705d6d5136e\",\"name\":\"TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e\",\"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_531120d4-b389-4576-a76a-ddaefbc7d099\",\"name\":\"TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099\",\"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_5351849c-c628-4716-bd44-d0e596aba50d\",\"name\":\"TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d\",\"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_5367a7df-297e-466f-bd25-70e916a864ef\",\"name\":\"TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef\",\"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_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"name\":\"TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"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_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"name\":\"TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"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_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"name\":\"TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"name\":\"TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"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_5e42ae42-19e7-4173-9637-a2151db79696\",\"name\":\"TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696\",\"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_5f0b1184-4467-41d3-95d2-912a324591c8\",\"name\":\"TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8\",\"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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"name\":\"TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"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_62f98c1d-6944-4881-9340-88f3518ab36a\",\"name\":\"TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a\",\"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_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"name\":\"TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"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_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"name\":\"TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"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_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"name\":\"TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"name\":\"TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"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_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"name\":\"TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"name\":\"TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"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_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"name\":\"TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"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_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"name\":\"TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"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_718a092c-627e-44c9-8b85-afa051604d51\",\"name\":\"TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51\",\"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_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"name\":\"TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"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_74b7ce15-3896-4604-aa77-dd938948d44e\",\"name\":\"TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e\",\"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_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"name\":\"TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"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_75570a55-9a85-4ab6-b307-1729dea80220\",\"name\":\"TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220\",\"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_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"name\":\"TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"name\":\"TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"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_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"name\":\"TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"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_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"name\":\"TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"name\":\"TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"name\":\"TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"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_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"name\":\"TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"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_834ccfc2-c570-486f-9f82-606958969a8f\",\"name\":\"TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f\",\"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_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"name\":\"TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"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_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"name\":\"TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"name\":\"TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"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_8855d8ef-d217-4949-844b-424daaace267\",\"name\":\"TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267\",\"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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"name\":\"TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"name\":\"TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"name\":\"TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"name\":\"TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"name\":\"TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"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_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"name\":\"TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"name\":\"TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"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_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"name\":\"TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"name\":\"TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"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_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"name\":\"TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"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_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"name\":\"TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"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_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"name\":\"TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"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_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"name\":\"TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"name\":\"TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"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_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"name\":\"TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"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_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"name\":\"TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"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_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"name\":\"TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"name\":\"TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"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_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"name\":\"TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"name\":\"TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"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_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"name\":\"TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"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_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"name\":\"TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"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_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"name\":\"TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"name\":\"TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"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_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"name\":\"TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"name\":\"TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"name\":\"TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"name\":\"TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"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_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"name\":\"TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"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_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"name\":\"TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"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_bc07765f-c3f5-403d-8852-a26378a74da1\",\"name\":\"TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1\",\"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_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"name\":\"TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"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_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"name\":\"TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"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_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"name\":\"TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"name\":\"TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"name\":\"TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"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_c3962496-e060-45e6-b892-428bd15fba06\",\"name\":\"TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06\",\"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_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"name\":\"TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"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_c5117940-85df-4e95-8295-08b129c4230a\",\"name\":\"TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a\",\"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_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"name\":\"TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"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_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"name\":\"TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"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_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"name\":\"TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"name\":\"TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"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_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"name\":\"TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"name\":\"TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"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_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"name\":\"TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"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_d47b3132-f356-4b72-a8e9-f915289d622f\",\"name\":\"TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f\",\"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_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"name\":\"TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"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_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"name\":\"TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"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_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"name\":\"TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"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_de07e417-8c58-4079-8494-7f903c93fb3b\",\"name\":\"TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b\",\"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_df78adb7-1839-4e19-aaca-ea67878453da\",\"name\":\"TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da\",\"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_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"name\":\"TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"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_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"name\":\"TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"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_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"name\":\"TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"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_e7148f69-198c-4061-9145-883d70ae5011\",\"name\":\"TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011\",\"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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"name\":\"TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"name\":\"TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"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_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"name\":\"TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"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_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"name\":\"TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"name\":\"TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"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_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"name\":\"TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"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_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"name\":\"TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"name\":\"TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"name\":\"TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"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_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"name\":\"TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"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_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"name\":\"TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"name\":\"TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"name\":\"TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"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_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"name\":\"TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"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-183?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183?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": [ "1673" ], + "x-ms-client-request-id": [ "8eb27417-16d8-4f26-89eb-344c9a77957e" ], "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": [ "859566be-0849-4454-ae0d-4d15da72a712" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14066" ], + "x-ms-request-id": [ "859566be-0849-4454-ae0d-4d15da72a712" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:859566be-0849-4454-ae0d-4d15da72a712" ], "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": [ "Thu, 19 Aug 2021 18:15:36 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGDMJTvGsjsXNbfnyA9aQElv9mQ3UF67h1scxXi1POCiZNcTfpiWMG3FwD4kXUf+P8xf+da1pGS4/p3QZyb2z+1IaOu/eQBHKZ1u38A/ZJaooXsDRxc2mHrrGGlZSFLuUAN9WZJ74wx6arlPwdNlN" ] }, "ContentHeaders": { - "Content-Length": [ "426" ], + "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/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-183\",\"name\":\"crp-test-admin-quota-183\",\"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?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-n25r0507.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": [ "1674" ], + "x-ms-client-request-id": [ "a4ff54c5-1ad4-496d-81d3-5cc86276f27e" ], "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": [ "6192b22b-51da-4ee3-b57c-73214cb2d50f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14065" ], + "x-ms-request-id": [ "6192b22b-51da-4ee3-b57c-73214cb2d50f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:6192b22b-51da-4ee3-b57c-73214cb2d50f" ], "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": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvlBlhiVxyyYd9fSWq1Q9D7Q3N3w5CmLX2tQW0EaKZQfp8lPJHIKNVoI+AbjDYy1e+2VLLDBBI7NI2oP9jYainV5a2dczQGFsUcwbyQXY+BuaYD/bwWeyakc1anQ43/GrkPC2MyvrK5llT2OnQWoQ" ] }, "ContentHeaders": { - "Content-Length": [ "3541" ], + "Content-Length": [ "89437" ], "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-183\",\"name\":\"crp-test-admin-quota-183\",\"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-295\",\"name\":\"crp-test-admin-quota-295\",\"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-403\",\"name\":\"crp-test-admin-quota-403\",\"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-548\",\"name\":\"crp-test-admin-quota-548\",\"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/crp-test-admin-quota-609\",\"name\":\"crp-test-admin-quota-609\",\"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-666\",\"name\":\"crp-test-admin-quota-666\",\"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-763\",\"name\":\"crp-test-admin-quota-763\",\"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-880\",\"name\":\"crp-test-admin-quota-880\",\"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-930\",\"name\":\"crp-test-admin-quota-930\",\"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-932\",\"name\":\"crp-test-admin-quota-932\",\"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/crp-test-admin-quota-938\",\"name\":\"crp-test-admin-quota-938\",\"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-965\",\"name\":\"crp-test-admin-quota-965\",\"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/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_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"name\":\"TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"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_03e83052-5334-4698-ae99-2d7c920be26a\",\"name\":\"TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a\",\"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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"name\":\"TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"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_0c338586-bd2d-4853-9469-9d777aeda04c\",\"name\":\"TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c\",\"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_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"name\":\"TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"name\":\"TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"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_0fc53db4-6547-49fb-99a9-478fd1854760\",\"name\":\"TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760\",\"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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"name\":\"TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"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_1837cc90-2efd-4a73-9403-8067935dff2a\",\"name\":\"TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a\",\"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_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"name\":\"TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"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_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"name\":\"TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"name\":\"TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"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_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"name\":\"TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"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_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"name\":\"TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"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_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"name\":\"TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"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_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"name\":\"TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"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_241c777d-cea3-421f-8f87-10fad501471c\",\"name\":\"TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c\",\"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_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"name\":\"TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"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_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"name\":\"TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"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_2724109d-2850-4287-aa4a-2fee87856796\",\"name\":\"TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796\",\"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_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"name\":\"TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"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_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"name\":\"TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"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_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"name\":\"TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"name\":\"TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"name\":\"TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"name\":\"TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"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_315e9ea0-41a2-425a-89ad-035934330030\",\"name\":\"TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030\",\"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_35640a91-26b9-4752-a80f-c2ccb1200362\",\"name\":\"TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362\",\"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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"name\":\"TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"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_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"name\":\"TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"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_380ef479-4324-4189-b01d-4ac06415dff4\",\"name\":\"TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4\",\"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_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"name\":\"TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"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_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"name\":\"TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"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_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"name\":\"TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"name\":\"TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"name\":\"TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"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_40a56c01-a2d1-4532-8b31-c55667920160\",\"name\":\"TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160\",\"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_4456bc12-f4b9-468c-b445-debf990183ff\",\"name\":\"TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff\",\"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_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"name\":\"TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"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_46db30e9-0725-471d-96e2-5f99dac411f6\",\"name\":\"TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6\",\"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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"name\":\"TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"name\":\"TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"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_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"name\":\"TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"name\":\"TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"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_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"name\":\"TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"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_4affb4ae-2533-4b91-9669-178a72c28c05\",\"name\":\"TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05\",\"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_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"name\":\"TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"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_50210271-dd89-479e-b2ef-a705d6d5136e\",\"name\":\"TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e\",\"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_531120d4-b389-4576-a76a-ddaefbc7d099\",\"name\":\"TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099\",\"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_5351849c-c628-4716-bd44-d0e596aba50d\",\"name\":\"TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d\",\"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_5367a7df-297e-466f-bd25-70e916a864ef\",\"name\":\"TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef\",\"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_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"name\":\"TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"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_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"name\":\"TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"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_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"name\":\"TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"name\":\"TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"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_5e42ae42-19e7-4173-9637-a2151db79696\",\"name\":\"TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696\",\"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_5f0b1184-4467-41d3-95d2-912a324591c8\",\"name\":\"TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8\",\"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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"name\":\"TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"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_62f98c1d-6944-4881-9340-88f3518ab36a\",\"name\":\"TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a\",\"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_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"name\":\"TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"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_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"name\":\"TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"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_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"name\":\"TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"name\":\"TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"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_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"name\":\"TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"name\":\"TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"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_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"name\":\"TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"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_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"name\":\"TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"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_718a092c-627e-44c9-8b85-afa051604d51\",\"name\":\"TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51\",\"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_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"name\":\"TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"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_74b7ce15-3896-4604-aa77-dd938948d44e\",\"name\":\"TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e\",\"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_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"name\":\"TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"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_75570a55-9a85-4ab6-b307-1729dea80220\",\"name\":\"TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220\",\"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_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"name\":\"TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"name\":\"TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"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_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"name\":\"TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"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_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"name\":\"TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"name\":\"TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"name\":\"TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"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_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"name\":\"TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"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_834ccfc2-c570-486f-9f82-606958969a8f\",\"name\":\"TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f\",\"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_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"name\":\"TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"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_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"name\":\"TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"name\":\"TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"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_8855d8ef-d217-4949-844b-424daaace267\",\"name\":\"TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267\",\"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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"name\":\"TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"name\":\"TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"name\":\"TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"name\":\"TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"name\":\"TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"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_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"name\":\"TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"name\":\"TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"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_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"name\":\"TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"name\":\"TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"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_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"name\":\"TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"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_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"name\":\"TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"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_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"name\":\"TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"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_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"name\":\"TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"name\":\"TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"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_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"name\":\"TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"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_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"name\":\"TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"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_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"name\":\"TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"name\":\"TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"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_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"name\":\"TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"name\":\"TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"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_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"name\":\"TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"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_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"name\":\"TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"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_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"name\":\"TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"name\":\"TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"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_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"name\":\"TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"name\":\"TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"name\":\"TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"name\":\"TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"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_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"name\":\"TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"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_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"name\":\"TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"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_bc07765f-c3f5-403d-8852-a26378a74da1\",\"name\":\"TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1\",\"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_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"name\":\"TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"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_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"name\":\"TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"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_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"name\":\"TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"name\":\"TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"name\":\"TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"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_c3962496-e060-45e6-b892-428bd15fba06\",\"name\":\"TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06\",\"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_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"name\":\"TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"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_c5117940-85df-4e95-8295-08b129c4230a\",\"name\":\"TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a\",\"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_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"name\":\"TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"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_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"name\":\"TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"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_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"name\":\"TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"name\":\"TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"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_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"name\":\"TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"name\":\"TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"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_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"name\":\"TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"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_d47b3132-f356-4b72-a8e9-f915289d622f\",\"name\":\"TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f\",\"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_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"name\":\"TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"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_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"name\":\"TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"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_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"name\":\"TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"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_de07e417-8c58-4079-8494-7f903c93fb3b\",\"name\":\"TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b\",\"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_df78adb7-1839-4e19-aaca-ea67878453da\",\"name\":\"TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da\",\"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_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"name\":\"TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"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_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"name\":\"TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"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_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"name\":\"TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"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_e7148f69-198c-4061-9145-883d70ae5011\",\"name\":\"TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011\",\"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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"name\":\"TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"name\":\"TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"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_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"name\":\"TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"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_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"name\":\"TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"name\":\"TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"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_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"name\":\"TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"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_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"name\":\"TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"name\":\"TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"name\":\"TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"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_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"name\":\"TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"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_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"name\":\"TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"name\":\"TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"name\":\"TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"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_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"name\":\"TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"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-183?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183?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": [ "1675" ], + "x-ms-client-request-id": [ "9d250ed9-ed77-4215-b6ac-ed0d0fff0bcf" ], "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": [ "e6d77957-9bf6-41ed-93e6-ad8f09fe83f2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14064" ], + "x-ms-request-id": [ "e6d77957-9bf6-41ed-93e6-ad8f09fe83f2" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:e6d77957-9bf6-41ed-93e6-ad8f09fe83f2" ], "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": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZxXrQBrZKUvEHIdw8ASh4a1fbQ+Ae8PcLdcgz8pwQgBSAejl7ylMvTIyjhsbhr5I+EFJ3yuwG4533hDGrBR7mh3ndjPxVQL23cAFxtlkPIXdX2w7ia3fzE85qdeytsgnswmZpbu6DIKC4FDmO0UL" ] }, "ContentHeaders": { - "Content-Length": [ "426" ], + "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/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-183\",\"name\":\"crp-test-admin-quota-183\",\"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/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-295?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-295?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": [ "1676" ], + "x-ms-client-request-id": [ "0f0dd62d-7dc7-414d-b39f-91ac98a9f4a6" ], "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": [ "bde8fd92-2378-41d8-ad79-4a36d56a4d15" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14063" ], + "x-ms-request-id": [ "bde8fd92-2378-41d8-ad79-4a36d56a4d15" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:bde8fd92-2378-41d8-ad79-4a36d56a4d15" ], "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": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAZh8x2CuRp12RW/iW6B6aYpRtCtsXi5dcH+w3T5kuRrRfoUvr9AB7ZAvyr8viN8WRfeSBl2qdy3wKyEaUVxEC8+2VNM41ULarzIxepPLSERU9eL+CfEPjn2XeuF89StN0C5arltnbgm1CsLrtuzr" ] }, "ContentHeaders": { - "Content-Length": [ "458" ], + "Content-Length": [ "484" ], "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-295\",\"name\":\"crp-test-admin-quota-295\",\"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/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-403?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-403?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": [ "1677" ], + "x-ms-client-request-id": [ "a0a5182d-ce8a-4e32-bc45-10f1bca77c20" ], "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": [ "b79c2029-b9e9-4795-aba9-91728d026a2c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14062" ], + "x-ms-request-id": [ "b79c2029-b9e9-4795-aba9-91728d026a2c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:b79c2029-b9e9-4795-aba9-91728d026a2c" ], "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": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv58WKyT6JlZDb7gEBiZjqgQqoR+ZIiTM9JWKpqCPbChBHRZJAMwrEq3m2yh0dQUNwYnnNMp1uBzI/fkEJWZ1FegNC9LtLzXRd6rNLPvSt4eu1mKpO2IjMJp3B3epdsluwLRUM+WtiNNLLY7ATEqKy" ] }, "ContentHeaders": { - "Content-Length": [ "460" ], + "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/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-403\",\"name\":\"crp-test-admin-quota-403\",\"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-548?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-548?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": [ "1678" ], + "x-ms-client-request-id": [ "c6bd0999-2b62-4cea-b8e1-3f67a6c95702" ], "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": [ "5775815e-e20f-4d1a-83e8-d8e3cceae164" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14061" ], + "x-ms-request-id": [ "5775815e-e20f-4d1a-83e8-d8e3cceae164" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:5775815e-e20f-4d1a-83e8-d8e3cceae164" ], "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": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJce1Z4D5oJuqhHAgko3dRp3GnyFqPLiwEtTUf0PbQgLlpgmBbm3cHxy6SWA3Q5pxy+aLb8nQt8NQWhNFj56RrY7tqk0/rSu+IyXdw6Zq/dZFPgrIgwV6YZ5YHDubyX83KfWihyNq5cEHpqGHTPcU" ] }, "ContentHeaders": { - "Content-Length": [ "429" ], + "Content-Length": [ "484" ], "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-548\",\"name\":\"crp-test-admin-quota-548\",\"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/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-609?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-609?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": [ "1679" ], + "x-ms-client-request-id": [ "5ae5863f-6a43-4e97-82fa-760e7bf45851" ], "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": [ "b07165aa-56ee-425a-8181-5166910b1880" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14060" ], + "x-ms-request-id": [ "b07165aa-56ee-425a-8181-5166910b1880" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:b07165aa-56ee-425a-8181-5166910b1880" ], "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": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtvLhxvsR6Q3e9cttccN/DAdEYRVHSaKiTrBECVmGNwdweYKyo8SKJgP7zRiLdZtXey4oQX1goluKrBRQfypvXjs+JQJXifhNb9EZGSpe8I0QXh/vm0lAYNOHhQ1vGLh0AXVZQNFFr0F2y9Ow/YxC" ] }, "ContentHeaders": { - "Content-Length": [ "435" ], + "Content-Length": [ "484" ], "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-609\",\"name\":\"crp-test-admin-quota-609\",\"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/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-666?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-666?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": [ "1680" ], + "x-ms-client-request-id": [ "5aafd6d0-8a1b-4322-87e2-0ba46212a639" ], "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": [ "41f976ef-0c17-4079-9505-607e585a0692" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14059" ], + "x-ms-request-id": [ "41f976ef-0c17-4079-9505-607e585a0692" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:41f976ef-0c17-4079-9505-607e585a0692" ], "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": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoK9ZKFlmJqyXnCwO5dXeEwsll7aW3p/80VO1y13dAa2Yi9aZt/D72H4Ra8c05/RWeMCpVKJWOd9l6B/+AMB/hr+PIjzowRi3Cu/yHayFnrEAVcGOhIPM8RrXeYiGXHegr1Md1YIA/xttRzYR56AF" ] }, "ContentHeaders": { - "Content-Length": [ "407" ], + "Content-Length": [ "484" ], "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-666\",\"name\":\"crp-test-admin-quota-666\",\"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/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/crp-test-admin-quota-763?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-763?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": [ "1681" ], + "x-ms-client-request-id": [ "c2996065-927e-4a00-8673-ff41e9e9c144" ], "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": [ "5b07ac0e-b496-4efd-a26d-5fe2a94892c4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14058" ], + "x-ms-request-id": [ "5b07ac0e-b496-4efd-a26d-5fe2a94892c4" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:5b07ac0e-b496-4efd-a26d-5fe2a94892c4" ], "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": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5HpcRe+cH7NAP1iUJcVUOAav5uFPu9EnPNXE1A6GZbiU0pId0aAQJWo3FTITJataAvHZcbauHV8DM7o0WzIaIyIlQhw/MC/BD9IvefUhgXK59yCVVb1V15cid1MFg86s00C/AKjJocTAhK+tRLKJ" ] }, "ContentHeaders": { - "Content-Length": [ "452" ], + "Content-Length": [ "484" ], "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/crp-test-admin-quota-763\",\"name\":\"crp-test-admin-quota-763\",\"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/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/crp-test-admin-quota-880?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-880?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": [ "1682" ], + "x-ms-client-request-id": [ "6c1b7437-f5ac-45ee-87c9-908046f0535e" ], "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": [ "9d3d0a9c-c7b3-4735-b87d-9759d6d6ccf8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14057" ], + "x-ms-request-id": [ "9d3d0a9c-c7b3-4735-b87d-9759d6d6ccf8" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:9d3d0a9c-c7b3-4735-b87d-9759d6d6ccf8" ], "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": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvh/7qvR5wlM6QR0IIdRktk21WlaVgUqcbKW1kluNBZmMY+fy5nkcc30uZymAhMVNEe1nSjVN7wZ7t/aVniJLXWkH68WOGpk6reO9FNeupUQ3TXrlh02coC4qosakCHMZuFEt5cb4GcuaxNKKXSxDG" ] }, "ContentHeaders": { - "Content-Length": [ "455" ], + "Content-Length": [ "484" ], "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/crp-test-admin-quota-880\",\"name\":\"crp-test-admin-quota-880\",\"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]+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/crp-test-admin-quota-930?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-930?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": [ "1683" ], + "x-ms-client-request-id": [ "878d3066-5ae0-4934-8268-ba477d6565a4" ], + "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": [ "c6e922ea-8f6a-451a-9ffe-c51a9f97401b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14056" ], + "x-ms-request-id": [ "c6e922ea-8f6a-451a-9ffe-c51a9f97401b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:c6e922ea-8f6a-451a-9ffe-c51a9f97401b" ], "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": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvqKyRi9cIYqePaONhCbxnqO/tl2LkBM598j7YmXP3wXY5zgQDRXVIN95bAialm3O9KhOMCmubYMNrnHVsRRNfAnYHOA64giEs/gCPuam/TdxLkEopsUNQz50W4UXEBWgSl9XPSw2f20CAddx9I6v" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "484" ], "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/crp-test-admin-quota-930\",\"name\":\"crp-test-admin-quota-930\",\"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]+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/crp-test-admin-quota-932?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-932?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": [ "1684" ], + "x-ms-client-request-id": [ "bb503b42-def3-48ee-b4ee-7afcf8573cc4" ], + "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": [ "a8db74ce-6b07-4a10-b4fc-40b4d1c34d23" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14055" ], + "x-ms-request-id": [ "a8db74ce-6b07-4a10-b4fc-40b4d1c34d23" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:a8db74ce-6b07-4a10-b4fc-40b4d1c34d23" ], "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": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrZbyJvnxbFtFH3IuYod0MJBPr0d7Yht5YGuaPqM5O3eetKCqmBO5kLBoEqUHGLOHu1wEz0FGUomAJ99Ht3KpAqVPZc4cgYhJrDUtV5FCD27a/zcrlrrQuwm/e/tOtvFucw+ZGS3omd72XuzTpr4Y" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "484" ], "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/crp-test-admin-quota-932\",\"name\":\"crp-test-admin-quota-932\",\"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]+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/crp-test-admin-quota-938?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-938?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": [ "1685" ], + "x-ms-client-request-id": [ "1497c18d-d40c-466a-9a9e-e48edf1bab2e" ], + "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": [ "acd64f21-c80a-48dc-88a2-53318d167856" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14054" ], + "x-ms-request-id": [ "acd64f21-c80a-48dc-88a2-53318d167856" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:acd64f21-c80a-48dc-88a2-53318d167856" ], "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": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDdeyVaFyCKYypvejR7Km/5ZAXHKQnCeUCaG6j90q/TWP3SSm3npa5VilqSaI+SE5Wj55N0+EHBONhNgpxN693FLIIwooXRYHJbu4zw6BOHxR/0FeJVEixh89/7Qqh+5wYzJNavJU+Fa+JClehMTm" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "484" ], "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/crp-test-admin-quota-938\",\"name\":\"crp-test-admin-quota-938\",\"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]+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/crp-test-admin-quota-965?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-965?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": [ "1686" ], + "x-ms-client-request-id": [ "349d13be-de7e-4a84-8d4e-abf757ad6866" ], + "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": [ "66d5ca2a-5c4b-4042-ba43-be2a4178b275" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14053" ], + "x-ms-request-id": [ "66d5ca2a-5c4b-4042-ba43-be2a4178b275" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:66d5ca2a-5c4b-4042-ba43-be2a4178b275" ], "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": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxI13Hq3xaM9yZTPrG8SignV9h+R5v/YXHsFMrusn1kqWX6ZOYSxoJUjah6VNcgzS4h6O2yePHizvkPrxefwMNMvrJ1QzFiCN5BCYz0dSRb9Xb5yP5JZZg5nUHWla/kOL0BvxFf3Y7kTVACiwEz6i" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "Content-Length": [ "484" ], "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/crp-test-admin-quota-965\",\"name\":\"crp-test-admin-quota-965\",\"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]+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/Default Quota?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-n25r0507.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": [ "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": [ "1687" ], + "x-ms-client-request-id": [ "3d2d55c7-ff77-488f-9ffa-487bc0fa366f" ], + "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": [ "18bec46b-a007-44b4-aaaa-b278b6ece463" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14052" ], + "x-ms-request-id": [ "18bec46b-a007-44b4-aaaa-b278b6ece463" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:18bec46b-a007-44b4-aaaa-b278b6ece463" ], "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": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHCxhZDb33aXN8dZReD1yZnJnAuQDx1ytGtvkhtgBQZTDSM21GhkGFs+LOVUy219mq4MUcSG4hPIeT005QqKrDz3MAfTIk+G9U/JlyQD1hzbhvzOrMQMcXn0E0IK4FEhN6+58tDB5oE5hWaZjIHcC" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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]+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/myQuota?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-n25r0507.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": [ "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": [ "1688" ], + "x-ms-client-request-id": [ "6f1b047c-1c8a-4ff2-a935-20ddc8085363" ], + "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": [ "4f49d55f-bea9-4acf-b8eb-0e005453fff0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14051" ], + "x-ms-request-id": [ "4f49d55f-bea9-4acf-b8eb-0e005453fff0" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:4f49d55f-bea9-4acf-b8eb-0e005453fff0" ], "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": [ "Thu, 19 Aug 2021 18:15:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+fLhPfsN7FFYpmwZiNZxj0mhrSfCjDRe9Zza5WRrD/BiurrZdTSbm8whqej9o4jZKGSQ+nudawpfJqItF7LWhJ9A9PQs/rX04SHL/Jelypm7VF3Zabmu2zXOIUm72VxGMV9AhIIBWEqrxrdnaUN1" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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/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_023d3563-4fac-4995-8fe3-091d8ee4c69e?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e?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": [ "1689" ], + "x-ms-client-request-id": [ "9405e890-dab4-40fa-a76d-ced131b7a121" ], + "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": [ "faa567a6-b108-4650-951d-082feed3d8bc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14050" ], + "x-ms-request-id": [ "faa567a6-b108-4650-951d-082feed3d8bc" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:faa567a6-b108-4650-951d-082feed3d8bc" ], "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": [ "Thu, 19 Aug 2021 18:15:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3/pLpDCFh71//7n/SuLe8rYIlJJJoUzOMNbDTFG2s8pxD8VyVIUhbE4TlMm4mHMsCys5Ad4RAuZvcAqdt6Me8RiivPBcQHWAWpWSU1zP+nVHb1LVn8ZEU9RwHBnt/nfNmRNIoV7T32e8DT7c1cp8" ] }, "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_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"name\":\"TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"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_03e83052-5334-4698-ae99-2d7c920be26a?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a?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": [ "1690" ], + "x-ms-client-request-id": [ "a40b64cb-f39d-4e8a-ab6d-8e16561a81ff" ], + "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": [ "6ccd46dc-0e52-415b-a3ba-a08251d4f69c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14049" ], + "x-ms-request-id": [ "6ccd46dc-0e52-415b-a3ba-a08251d4f69c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:6ccd46dc-0e52-415b-a3ba-a08251d4f69c" ], "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": [ "Thu, 19 Aug 2021 18:15:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNssb9AgKZu0Ds4DTFedf479A+HdOFKquUoSOGHRDYe2TFEDw3p8M8K0NjFr4yFSaLlJ3O+fPLIxUGUvBpiwBiRTMogoJHBAhxiP46siiwRU1VvgmE1qxAEDXTRaIQ8lAUJEBxSB5YNmrVS2ir4gh" ] }, "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_03e83052-5334-4698-ae99-2d7c920be26a\",\"name\":\"TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a\",\"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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563?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": [ "1691" ], + "x-ms-client-request-id": [ "49d9fe03-c800-4cff-b00a-5c36780e6bc2" ], + "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": [ "f3c92b6c-f604-4d8d-9f6d-21b17143432d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14048" ], + "x-ms-request-id": [ "f3c92b6c-f604-4d8d-9f6d-21b17143432d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:f3c92b6c-f604-4d8d-9f6d-21b17143432d" ], "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": [ "Thu, 19 Aug 2021 18:15:39 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyTmr3rxNrFtlrmxkG9Q81MA4hY1UEDIBZ1nx1dZTweGALb9geuycMhFT/Lb+UHk4TO9aoqrkI/byx5Iw5UPWxEE1ev/3BD677QAbBYZJMkry50/KBEJwGX0f8c0j38r/PclMqTBGkBPtN0OEcCtP" ] }, "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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"name\":\"TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"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_0c338586-bd2d-4853-9469-9d777aeda04c?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c?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": [ "1692" ], + "x-ms-client-request-id": [ "dd6062ea-b920-4c51-94b5-ccaf5a629f0d" ], + "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": [ "e46db59f-8518-42fc-966a-6a64eceb1557" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14047" ], + "x-ms-request-id": [ "e46db59f-8518-42fc-966a-6a64eceb1557" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181541Z:e46db59f-8518-42fc-966a-6a64eceb1557" ], "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": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRva/WCfUgmG81Ks0ub98UmA7plzLpN1Bs63luBH79WYlnRYVOhT2SzlUsEnaADlk+iz+IG6F6zxiSPSHAkwMaG1KiXRTrg37OKSHLApivssszr4DvCEJOBmNP78iytnO27QCL+6FMAIBQhwokHNSQF" ] }, "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_0c338586-bd2d-4853-9469-9d777aeda04c\",\"name\":\"TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c\",\"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_0d989332-5d79-4fe9-8431-a80051f12ecb?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb?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": [ "1693" ], + "x-ms-client-request-id": [ "9941dd01-5185-440e-a1db-51e6054209b1" ], + "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": [ "1ae6762f-583a-46d0-b4a1-ff9e213da692" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14046" ], + "x-ms-request-id": [ "1ae6762f-583a-46d0-b4a1-ff9e213da692" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181541Z:1ae6762f-583a-46d0-b4a1-ff9e213da692" ], "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": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQIyxyPseOBg5lZKHRW1A82QDRDad4BqtVK41LC2t0lLXq4WI1xTlanKSKQVEZqeXKIUVAgQFNeK4hWGGMPA6PKV9Pl019TCiWcKcluSBt0ACU9QV5IjFyjuZqSgLLIYNCZXeK8So08MaNA2oqECq" ] }, "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_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"name\":\"TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25?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": [ "1694" ], + "x-ms-client-request-id": [ "e12546a2-d50b-46b3-88cd-81e2326a7fbd" ], + "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": [ "5ca07570-3bde-4a0e-8881-46cd3d6a8203" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14045" ], + "x-ms-request-id": [ "5ca07570-3bde-4a0e-8881-46cd3d6a8203" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181541Z:5ca07570-3bde-4a0e-8881-46cd3d6a8203" ], "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": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyt1gubVDWUuDAB2ZtJhAYBF+ZRntKZNWb+2xhB4Ht2fy5gwMMGx7GXEU1d/1ebiF00BEP5IPAlcuT0ZFoDMyUNyR/fMcle8F/UQ+H9Rg2qxSW74RbgvyKpl722386nJH1UHLe9qz1+05S4oaWxPi" ] }, "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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"name\":\"TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"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_0fc53db4-6547-49fb-99a9-478fd1854760?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760?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": [ "1695" ], + "x-ms-client-request-id": [ "75286814-9498-4afc-9f8d-dcc0bf28be38" ], + "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": [ "e83e37ed-2853-491b-aa6a-c3b9e883d77e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14044" ], + "x-ms-request-id": [ "e83e37ed-2853-491b-aa6a-c3b9e883d77e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181541Z:e83e37ed-2853-491b-aa6a-c3b9e883d77e" ], "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": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTd2KxJ78Ecoys5Og1iwVxXZyWXRZ7Vujg8J9cw4ZT9b8XTzG4dXVeRimi6ZwY8qOBahoTXOT/OSB5gN3VoDTOW1V3jIOzoH/JvKR2Iv9AdcwOzMjbzSWaWaUZMAQ6JCu92E25d77vk8du+AGVllw" ] }, "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_0fc53db4-6547-49fb-99a9-478fd1854760\",\"name\":\"TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760\",\"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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c?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": [ "1696" ], + "x-ms-client-request-id": [ "6e6dce9a-5d70-42e0-b62e-67e97ef4d5c8" ], + "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": [ "8a94de0f-95e3-4fc2-a1a6-54d09952ab7f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14043" ], + "x-ms-request-id": [ "8a94de0f-95e3-4fc2-a1a6-54d09952ab7f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:8a94de0f-95e3-4fc2-a1a6-54d09952ab7f" ], "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": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPd16AGpfDRUSb6KNmaBilhGplpP1OG/+MjOS2sfpv1Bb5A0YQxCTVk2Oew0QZEYBhjZiOOQwN6QSk/rc+mQGxCQWgccL7jVLuTvJ+Xx1H0H3RaGeRY+c1PpQVSoBM4pPXFVFwcW4/Tq7rO+Q4VxV" ] }, "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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"name\":\"TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"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_1837cc90-2efd-4a73-9403-8067935dff2a?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a?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": [ "1697" ], + "x-ms-client-request-id": [ "d4a63b7b-2ce2-42c4-af5e-becf4f2da87c" ], + "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": [ "e214cfba-7c2c-4a23-b07d-a76760e2c433" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14042" ], + "x-ms-request-id": [ "e214cfba-7c2c-4a23-b07d-a76760e2c433" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:e214cfba-7c2c-4a23-b07d-a76760e2c433" ], "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": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrcC46qdPauf7+6Z3nNJP4SIXZk0xm4Uqq+fhWF1JtXZmH++CF4AZ8r58csTIfNTIwpDssovpSYOf1G4Xik5aUql6XfQwA6+4YQMr5rNQ4mAlc5ut9StmcDMwmF04qraIyZyVXyQ6ozqEHnp6E9TW" ] }, "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_1837cc90-2efd-4a73-9403-8067935dff2a\",\"name\":\"TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a\",\"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_1b3f54b9-9c23-4885-ab08-3692300c6db3?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3?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": [ "1698" ], + "x-ms-client-request-id": [ "825e3368-eefc-4650-aeae-7698d6ae0865" ], + "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": [ "e4f05c36-deae-4b82-9bd7-d877920a3858" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14041" ], + "x-ms-request-id": [ "e4f05c36-deae-4b82-9bd7-d877920a3858" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:e4f05c36-deae-4b82-9bd7-d877920a3858" ], "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": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveCuRXvt7qbulvv32i8G8GGvWu+Xbkkk875jWNMx5tLVJgO/RjyuhkED8XLD3/Jaw/dbWuzfXzeXalylTaEmJgf3GeTWpZdNQp8V1uXII4E9o2ZfUe03avKr2ELqkwjEv2oLhxJEiYjaMNxKbcj4y" ] }, "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_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"name\":\"TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"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_1da01b70-953d-4e8c-91eb-e91b742fbe9b?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b?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": [ "1699" ], + "x-ms-client-request-id": [ "12d8325c-efa8-4580-b48f-89f75ea2d4a9" ], + "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": [ "e215c40d-0b3b-4ffb-bfb0-296ba8695fe1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14040" ], + "x-ms-request-id": [ "e215c40d-0b3b-4ffb-bfb0-296ba8695fe1" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:e215c40d-0b3b-4ffb-bfb0-296ba8695fe1" ], "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": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjTiCfHT9PkWI3srXSv/C6mCSnqFqIAxD1a6IZlDeTAY08aLGoPxPMkHvIV1+xqmWhJay1Bb6gHqbHPlBOFAh96IKqfnEz1AGD3nH34Jd5iS3MbtYohYU3GaRUIkgi4UGi5QH/BunPzZ5kMWzMROw" ] }, "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_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"name\":\"TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c?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": [ "1700" ], + "x-ms-client-request-id": [ "d3368113-3d80-4df2-8ece-64347d2f414a" ], + "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,39 +1238,5999 @@ "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": [ "a2385a23-0eed-4fbc-aa61-ac8c49c9e45f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14039" ], + "x-ms-request-id": [ "a2385a23-0eed-4fbc-aa61-ac8c49c9e45f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:a2385a23-0eed-4fbc-aa61-ac8c49c9e45f" ], "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": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNIezUE/AmLyPx51PoTb1GeaQcj4muvoH7CoHXsXXC5fFBrRoMxbApUnhwa1v+3/0Kb6f/Eej0YAvdGBhbGicptc2HdtTzQ4E7Ysz5yPIbFHfa580Ax8DA/VbYGaqSoUhezhWKe64ssxB+cG6cwNA" ] }, "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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"name\":\"TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"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_20ca0054-0d9d-48af-86cc-33f2f86485fe?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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1701" ], + "x-ms-client-request-id": [ "6b35a4aa-0d52-4246-81ec-5a89521b6c78" ], + "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": [ "4fd95061-3671-422b-b309-503dbb3d485a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14038" ], + "x-ms-request-id": [ "4fd95061-3671-422b-b309-503dbb3d485a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181543Z:4fd95061-3671-422b-b309-503dbb3d485a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv78VWpgUoEhbxVi5bs3M22aaOtLjE8DBVjIwC/tVdu/Jbzd3+UpbDk0LGyHcOj25qVA2mTqZqbb83x8qD2ZDE/GbbTdGF1bQ/3i6MVoeT0noVAHNuMC5BR6nWvlhfFuTIxaZ9Zi5O5/4qtuQNFHbT" ] + }, + "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_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"name\":\"TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"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_220c9d89-f22d-4b6f-9ddb-888fa227c389?api-version=2021-01-01+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1702" ], + "x-ms-client-request-id": [ "e22e695d-c58b-4196-b7dd-92149aa81014" ], + "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": [ "c854b7bd-aee0-49f0-8a05-ed5781eb4ef9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14037" ], + "x-ms-request-id": [ "c854b7bd-aee0-49f0-8a05-ed5781eb4ef9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181543Z:c854b7bd-aee0-49f0-8a05-ed5781eb4ef9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxbcFJFLloo+pQ1st05wP0nY3y9bO9TZjsKqpmPjRRJGM3EUX3BJKi4p33N3+qQu617d/sCH5qLVemQ+Jj2cbObW5+uypuB5VgU/OfctNAk2QFxftLThIUApjE//enE+OTzgOqLJns0Q5ae2i64q8" ] + }, + "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_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"name\":\"TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"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_2272ee6c-97d4-446c-a80b-1da594c9e783?api-version=2021-01-01+30": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1703" ], + "x-ms-client-request-id": [ "384a2cf6-93bb-4147-8962-2f06a91b55f6" ], + "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": [ "c5f1ac60-7b76-46ab-8d8c-2507bf1f101b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14036" ], + "x-ms-request-id": [ "c5f1ac60-7b76-46ab-8d8c-2507bf1f101b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181543Z:c5f1ac60-7b76-46ab-8d8c-2507bf1f101b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIVqef0seOjq439LfU78l26lM+JLE/iiDZ+xBlG9cOS127g5iwXBJkVRNcQQV3jLJXUu9+DEur8Xj9e+K7a3cvwvJiXrxAuMFoKXh9UXfO42h2s0KSyh3nzpWvu2FwUZ3b0mvj+w8TkmWUmb6VcRB" ] + }, + "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_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"name\":\"TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"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_23ce0d46-1ed0-40ba-9b73-7a33d6846677?api-version=2021-01-01+31": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1704" ], + "x-ms-client-request-id": [ "73f6304c-56e4-4e69-8e78-e33c24a1bd7c" ], + "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": [ "0eb9acb2-0d30-4e71-8ed9-776ebc60e677" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14035" ], + "x-ms-request-id": [ "0eb9acb2-0d30-4e71-8ed9-776ebc60e677" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181543Z:0eb9acb2-0d30-4e71-8ed9-776ebc60e677" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvO/zvaa8hCZeEZII207mpLrVk9qMyDVLe/+VZYaxRp+mZeaFatkaOmpaOfu2lJdF6vzlz599e04JUazu5McG6stw04X1JLzj5GblPjsA207DzYXCGv/4OgOdfqTgvAc5RoOs5a3kTCMrxTv2rmhw6" ] + }, + "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_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"name\":\"TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"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_241c777d-cea3-421f-8f87-10fad501471c?api-version=2021-01-01+32": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1705" ], + "x-ms-client-request-id": [ "bb08d6f0-8eac-44a2-a05d-6647a799e597" ], + "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": [ "0f471e2c-3acf-4c1b-8745-d0715846dfde" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14034" ], + "x-ms-request-id": [ "0f471e2c-3acf-4c1b-8745-d0715846dfde" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181544Z:0f471e2c-3acf-4c1b-8745-d0715846dfde" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvRqMC4NeRcEMkN9kKK9wUy7vlAn6ZwBOE/e8cvC8P51ZsNJwyYV08c9MtIeeQQp4vKBSb0m6d1xIqqKD4wAxBu9wXSqJ2c5HZfrfujwvUsySQ2rCEk1avzet2s6KbJn+klj3jPC+Vp6w8QDxw5HM" ] + }, + "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_241c777d-cea3-421f-8f87-10fad501471c\",\"name\":\"TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c\",\"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_24ad96f8-2e56-4ce6-b657-c615f53e49cc?api-version=2021-01-01+33": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1706" ], + "x-ms-client-request-id": [ "e0f65050-b11b-4223-b592-63fd86982324" ], + "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": [ "0cc7bbd6-1c49-4090-bda9-ef16e3c52a8e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14033" ], + "x-ms-request-id": [ "0cc7bbd6-1c49-4090-bda9-ef16e3c52a8e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181545Z:0cc7bbd6-1c49-4090-bda9-ef16e3c52a8e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEG3sDaWDy4NarGHldtgjDoOekQjcY51eDegAYwYOeDvegxIte3aaXVci7V5jksZbOfEsxnytVn9E02/1dcuMROz7hDohLXtklVu8BB7DIARmXC2p/HteB/n0bFO7jXyOXGPuQHqwz3AcFNZl+T0Y" ] + }, + "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_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"name\":\"TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"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_271a6140-49ea-42bd-ba20-f7bcdf4036e8?api-version=2021-01-01+34": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1707" ], + "x-ms-client-request-id": [ "590a2d2f-fbbe-455e-b8e3-cab1cabd85a6" ], + "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": [ "0c5cae0c-3f42-4f94-9a67-2f5bcab63a44" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14032" ], + "x-ms-request-id": [ "0c5cae0c-3f42-4f94-9a67-2f5bcab63a44" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181545Z:0c5cae0c-3f42-4f94-9a67-2f5bcab63a44" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzsZM/76WD1x/s2Jzr7jdUq8ZnUw54Ki0jpLvdGyZU7Q4p4oGJ43HZg0XoxBzGk9nUBYiMOqY/1Im9y1etRjIYQGiP3URHaUGc3sHf0ZD/4G0qKGQ7XKUlXkCDCvrIVpKzT/R/la8CJwqRzDMa2+q" ] + }, + "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_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"name\":\"TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"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_2724109d-2850-4287-aa4a-2fee87856796?api-version=2021-01-01+35": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1708" ], + "x-ms-client-request-id": [ "b6965eb4-9438-415c-93b2-c3a791b7e778" ], + "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": [ "2df0cb87-dd97-4dee-be22-a36d596569af" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14031" ], + "x-ms-request-id": [ "2df0cb87-dd97-4dee-be22-a36d596569af" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181545Z:2df0cb87-dd97-4dee-be22-a36d596569af" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Df2NvfTfbw5xUWs+IQKW7I7VZRz631zU/Glq/l+iHp6/BkDEvk7Agn2q6Os47VCUpPYHkGdcbyvrh1Wn6Lr77sgl9Wz7y/ja84TnAsbc7sa3XLg2Sg+7D90CD67efRzpZq8RxC+lUP2qHyWZNfs" ] + }, + "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_2724109d-2850-4287-aa4a-2fee87856796\",\"name\":\"TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796\",\"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_2a4653c3-fd47-4be1-886e-03fa8a908cd6?api-version=2021-01-01+36": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1709" ], + "x-ms-client-request-id": [ "93cd74b8-7175-429a-8022-7512940c9614" ], + "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": [ "7c301e78-ab45-4002-86f4-517c5d544c93" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14030" ], + "x-ms-request-id": [ "7c301e78-ab45-4002-86f4-517c5d544c93" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181545Z:7c301e78-ab45-4002-86f4-517c5d544c93" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUnFCQRdI0QRa9AYhcgFADG7AP7mPa0ix5enzx9ILSH7GC5WubRbjA37L/3vBuLmNm6Bz/Zm1n2eD/fmhkrqCneGz+tpvC1tek9Js/zVXFWMfdLRjtVTQ3dSGy1biumGIf3FekcVEqVMoOYhJPiri" ] + }, + "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_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"name\":\"TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"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_2ad03a15-d45b-4f3d-91d9-24714832d99c?api-version=2021-01-01+37": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1710" ], + "x-ms-client-request-id": [ "0267b1c4-bb2b-4bd8-a334-98ba9a1ccbe0" ], + "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": [ "90b7a0e0-0401-4904-b950-d60ffb2862d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14029" ], + "x-ms-request-id": [ "90b7a0e0-0401-4904-b950-d60ffb2862d7" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:90b7a0e0-0401-4904-b950-d60ffb2862d7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdcR4y9dEcabeUEivLK63onxMrhDJ1ZjDFOOhY4sF0HISQh7TAfX+1yXOxpAvbZYWRTQ/RSq2m+sZIVqsw/XnNQyweNJ+1R2Xbu2Nq+XSWpaAYPifoia2iAOfDB7/Wer8EngDiwR1t615qFJ23A3m" ] + }, + "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_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"name\":\"TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"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_2bfa0d93-6210-4930-957f-004bc4776cc6?api-version=2021-01-01+38": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1711" ], + "x-ms-client-request-id": [ "909fdd4b-3d7b-4668-9b17-de29e1976dc8" ], + "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": [ "82e8c644-5d22-431a-a22b-4bf84898e80c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14028" ], + "x-ms-request-id": [ "82e8c644-5d22-431a-a22b-4bf84898e80c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:82e8c644-5d22-431a-a22b-4bf84898e80c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbm7CASUObqtQUSMtTLZ6kOMBkpuMwSFZik+Doqo9hI/JcSK9pPQVqJ5T1/rhOGMirlk175cw1lUpWVe8+1QJHNu4gkl/Z/n+fqoBv8/A58rVDqPSDudnbBwWreg3v0y79gWZgdSG2WBT2WdyXuap" ] + }, + "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_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"name\":\"TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c?api-version=2021-01-01+39": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1712" ], + "x-ms-client-request-id": [ "513e7796-e043-413d-844e-98ecf6583ce9" ], + "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": [ "979cea44-69ae-455f-ac04-054311bf579d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14027" ], + "x-ms-request-id": [ "979cea44-69ae-455f-ac04-054311bf579d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:979cea44-69ae-455f-ac04-054311bf579d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJxsz+sTVPfHjJNI+DKk9KETY0iYvTUdJxyStmh6GjW4qo0rs+Lz5duezm4O9guNc0zGkPGFvC3rFrfh9YzrR9omSbwVfgqMjEfeS5mexhbPgismuErtYhZB82G60izF4j6sxz91LvmWD9BVMfrzy" ] + }, + "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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"name\":\"TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef?api-version=2021-01-01+40": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1713" ], + "x-ms-client-request-id": [ "a841d478-22ec-4703-98a7-4e9d78d7afff" ], + "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": [ "b6596456-0d09-4893-a433-9c722106b7df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14026" ], + "x-ms-request-id": [ "b6596456-0d09-4893-a433-9c722106b7df" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:b6596456-0d09-4893-a433-9c722106b7df" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDhqLXzZGqeJ9asZv8yD/GPpfDklOXwyInCOeKSkR67G3qt8iWGsvZrmIzpfsgZ/kIWNwGv//knM+eWaCSICBfj7Kyx6GjNImd8gxEQjKssGDhMV5bcGNh3Fz7sbHgYySrkBfiIkJElSCdxZeZMSd" ] + }, + "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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"name\":\"TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa?api-version=2021-01-01+41": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1714" ], + "x-ms-client-request-id": [ "22efb691-f138-4111-916e-6a400be63006" ], + "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": [ "4e11290c-d4f6-4462-9bfe-ad077ba4f72e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14025" ], + "x-ms-request-id": [ "4e11290c-d4f6-4462-9bfe-ad077ba4f72e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:4e11290c-d4f6-4462-9bfe-ad077ba4f72e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv59xkSis7gsKwW2CBYnBRGaUIDuotfDgDhoTCYkG+NK/VKgtSvb/GAgeTWyLuiBO/YFFX9U3SYoCdLIKVFmoM3GZVOFXFmwN5XalqANILr4fCEkaQPQD0AfgqblVaVJla3VIWpN1QRo1Qj1B9urSy" ] + }, + "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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"name\":\"TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"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_315e9ea0-41a2-425a-89ad-035934330030?api-version=2021-01-01+42": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1715" ], + "x-ms-client-request-id": [ "7d28314c-ab89-4a24-8fe0-4902c58e4221" ], + "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": [ "15696521-047b-4bde-a5eb-a3a6324fd235" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14024" ], + "x-ms-request-id": [ "15696521-047b-4bde-a5eb-a3a6324fd235" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:15696521-047b-4bde-a5eb-a3a6324fd235" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvO3uS5nyNsLnlYLgPMMAG68NUWZIZNMIQK/BvDJJaD/HoxTu2/xPQCDld77t0R52Gf7JSv/SJOZzz9xsy4lApEs+uSBCCq0DvW3x5fDwcGMTcXHuN1w0C6z/HHn5SmAthsJzhWhBiy3AEXR/5Awat" ] + }, + "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_315e9ea0-41a2-425a-89ad-035934330030\",\"name\":\"TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030\",\"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_35640a91-26b9-4752-a80f-c2ccb1200362?api-version=2021-01-01+43": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1716" ], + "x-ms-client-request-id": [ "2e6f39e7-09a1-4c4e-9af9-e4188eb69fee" ], + "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": [ "c27ad7c7-449e-4664-882c-afed681561a5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14023" ], + "x-ms-request-id": [ "c27ad7c7-449e-4664-882c-afed681561a5" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:c27ad7c7-449e-4664-882c-afed681561a5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH9PdBAf1iMjjUtUjhSChQVK9nKbmTwQc+famNshrpCn9MDIO8j/eNnzHLeGqAtp+yTsKjNjWa1QU1MqlWmDvT1hKwd8RT7ZYrhPRYcKeuuz1n1gW/BzXCuirp/OG560gywWZCpWJOXawEywNsDHP" ] + }, + "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_35640a91-26b9-4752-a80f-c2ccb1200362\",\"name\":\"TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362\",\"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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5?api-version=2021-01-01+44": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1717" ], + "x-ms-client-request-id": [ "bbe06e4a-b23a-4a35-8c1a-9f8e5774d7c6" ], + "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": [ "913a7654-d891-4587-b8f9-e8e5e2006a61" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14022" ], + "x-ms-request-id": [ "913a7654-d891-4587-b8f9-e8e5e2006a61" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:913a7654-d891-4587-b8f9-e8e5e2006a61" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9NPb8p8Q2kOArIC6tSzKpmqVtf5STy/uCFx18Cs8U6+xHWuok/XrzssTJQqbAnPzWQ/Q8nPMPUF7SgpI7YL8nHI3Az2RdLk/Sv9QMOSx2p+z97fyOh6tqZRdGu0VXPK1/U4eQatRl5Q1T0UYN1Ct" ] + }, + "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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"name\":\"TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"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_36e9193c-7137-44f1-a0c0-505a1aa9164c?api-version=2021-01-01+45": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1718" ], + "x-ms-client-request-id": [ "37481700-fcd6-4411-8da9-d0463673694a" ], + "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": [ "c8f1ab64-803e-4b6a-b21e-e7f3dd69653a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14021" ], + "x-ms-request-id": [ "c8f1ab64-803e-4b6a-b21e-e7f3dd69653a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:c8f1ab64-803e-4b6a-b21e-e7f3dd69653a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhiI1rW2v2almCoAkdpgotBFTYh/x3IMf3bEl9fdah7BKk9vb/dWiwWdz/6l/Ub5h2sOt0M9b7MwW4RkpIN30wSVsaJ1CU4hcXRVT+gx47zH7w8VWXLoxCTmmJUN2GLRGo/jFfTgbbwPoCLK1kNN7" ] + }, + "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_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"name\":\"TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"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_380ef479-4324-4189-b01d-4ac06415dff4?api-version=2021-01-01+46": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1719" ], + "x-ms-client-request-id": [ "b0b07e36-ed29-4046-8820-695e2c95910e" ], + "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": [ "ef2da082-2a85-490d-929c-87ad0f2db862" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14020" ], + "x-ms-request-id": [ "ef2da082-2a85-490d-929c-87ad0f2db862" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:ef2da082-2a85-490d-929c-87ad0f2db862" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMPMen8VWGaOLQQF59mwf7G8IdXg/SaCU0DbDI4ZEYbZFNJB9fAcBB8+S3gyI6Z+vjHbtXKC0fWsXj+HBz6SL+1A6FRB77CayT9lbJG2HC/qcRtUkJGol4UeYj5IVImWREwK3RcyRIdGc0bcEo/0e" ] + }, + "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_380ef479-4324-4189-b01d-4ac06415dff4\",\"name\":\"TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4\",\"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_38c55638-39f7-4a11-8fd6-dffe0cb594a8?api-version=2021-01-01+47": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1720" ], + "x-ms-client-request-id": [ "099fe73d-40d0-4690-8128-a4612c989cfc" ], + "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": [ "14f3ef60-1c5f-4e98-92ad-7f5321fab76e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14019" ], + "x-ms-request-id": [ "14f3ef60-1c5f-4e98-92ad-7f5321fab76e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:14f3ef60-1c5f-4e98-92ad-7f5321fab76e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv23+T0vSKKkLdYAXLGcfh51mNgxhxH21911f+TbzymH35WpUC8D37kxacNd16oxETlFBPfHo2T3vKBjT4wyh3e/GBVCCB3MWtbhOGwDO58TFTZNgy3JpCAyExA3p2BZPRlUdB4voqQQx9XZJV9sq5" ] + }, + "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_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"name\":\"TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"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_3c45ca77-35bd-48ab-a66f-b7e774363a20?api-version=2021-01-01+48": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1721" ], + "x-ms-client-request-id": [ "49e8d6cd-692e-4f32-a2b3-d9817d272f1f" ], + "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": [ "e038351e-26bd-4b8e-86cf-2c13bf96c74a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14018" ], + "x-ms-request-id": [ "e038351e-26bd-4b8e-86cf-2c13bf96c74a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:e038351e-26bd-4b8e-86cf-2c13bf96c74a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMsWrR6qop7VVwi27vaz7vuEZSgty8NbSUAZHYFCNsOXkgIdoZHaPmB0TboEY/QPK0JgcaZh/xVaRy0smf+DUEWP/rq9fyi82d7HV2TFW8k9a14+N797DBXzvccnsIjK3eCCNIQAHZ6+4o/KFPhU/" ] + }, + "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_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"name\":\"TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"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_3cd96c63-f55c-4c55-87dc-5c3827b45243?api-version=2021-01-01+49": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1722" ], + "x-ms-client-request-id": [ "ccee93e0-14a4-4ec0-86c1-1bb33340db1a" ], + "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": [ "888e610b-4765-4325-9d54-e44f7a8989e2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14017" ], + "x-ms-request-id": [ "888e610b-4765-4325-9d54-e44f7a8989e2" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:888e610b-4765-4325-9d54-e44f7a8989e2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWW/37j2fZkpQ1NW1c3FQdyt0kLnbhXSd16Gn8bRLRMBzpwhPjsU2B3b7buR1QtbQXeY/qikIQqmqs1hYzx7kRPCgU0+UabXsuCkVz2CT9Co8reE9EejEPNKaMYpFcHrpqBOxXCyFSkch5pg5uNR9" ] + }, + "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_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"name\":\"TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc?api-version=2021-01-01+50": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1723" ], + "x-ms-client-request-id": [ "72112c55-238f-4661-8f58-6b34d9e56bae" ], + "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": [ "d28e434a-03a9-43dd-83e0-66aee59a36dd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14016" ], + "x-ms-request-id": [ "d28e434a-03a9-43dd-83e0-66aee59a36dd" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:d28e434a-03a9-43dd-83e0-66aee59a36dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRSDHnCGsNerm0dEH9oCZCBHaCJ+KneN16LQU8kY+8RLZ9K3k8ZGuOwljlJG2jyuOZrZeQp+FoxcPszlR6Cj/exzI6njWiSeOW8iW8dyb8CGNZKn7z74nJfHFdMgA1N5o7LNMcLwuYnEK+ycayz+T" ] + }, + "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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"name\":\"TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69?api-version=2021-01-01+51": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1724" ], + "x-ms-client-request-id": [ "6394793a-e812-45a1-836b-cd8585cbf695" ], + "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": [ "9a69e814-4032-457a-bc2f-1e3d91d57694" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14015" ], + "x-ms-request-id": [ "9a69e814-4032-457a-bc2f-1e3d91d57694" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:9a69e814-4032-457a-bc2f-1e3d91d57694" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHQ0EbCb+dZP8xXFe2z5tAcDHquydBUktGoNrPv7fVCRbRPexqO8iS3kXYf0uF5eerMpPOTfzSJND46ezdKxZJtqzxGleQtFwgGNUIGOb4zaeGTXT8Yxsh5X2VaTIu5YCmqw/n2BC4pYv7D51Lidb" ] + }, + "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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"name\":\"TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"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_40a56c01-a2d1-4532-8b31-c55667920160?api-version=2021-01-01+52": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1725" ], + "x-ms-client-request-id": [ "8349878f-3a3e-426d-b845-9eb3cbe2171a" ], + "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": [ "8ebb4161-f817-4976-a2d1-6b1d5fae0250" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14014" ], + "x-ms-request-id": [ "8ebb4161-f817-4976-a2d1-6b1d5fae0250" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:8ebb4161-f817-4976-a2d1-6b1d5fae0250" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoD4qXxBvgY09ITKaPDCjB0odLO5Sflf+GFvc1Tr6cPPv3NXSdgjLE+csUJAJj1D7LlrL6hxE+k82WYbrjV7oWYRchZIXT5pC2mZf2WpDX6B+S0PH0tjAinsABJ5pE4QO5Zws3KkVzUM48AQbPZp2" ] + }, + "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_40a56c01-a2d1-4532-8b31-c55667920160\",\"name\":\"TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160\",\"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_4456bc12-f4b9-468c-b445-debf990183ff?api-version=2021-01-01+53": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1726" ], + "x-ms-client-request-id": [ "3db8a3c6-4361-4aa0-8a19-b8c46d4ac4f6" ], + "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": [ "3b35f148-90ff-4911-b71c-f54177cd7cd9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14013" ], + "x-ms-request-id": [ "3b35f148-90ff-4911-b71c-f54177cd7cd9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:3b35f148-90ff-4911-b71c-f54177cd7cd9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGWDRE6jW+tEVb2uvqg5CA5nlTq10azAcuj0SyNNLwo6n8T7jB3uTMeZh0eVDG2wtRxEs61WRIl1vF+/7rugi1Y7uz0MLAGEzP0WrKrsGbedE/km7e+unWh9eF9kHDYNwDeBMEa4EAGZ63gwctcYO" ] + }, + "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_4456bc12-f4b9-468c-b445-debf990183ff\",\"name\":\"TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff\",\"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_464d9e8b-1621-49f8-b47b-2d899ac49bd6?api-version=2021-01-01+54": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1727" ], + "x-ms-client-request-id": [ "4a4b0986-48f7-4c41-b0f8-1e62f1bebcf5" ], + "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": [ "05adf622-97b9-40cd-95e6-56cf87a43dd7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14012" ], + "x-ms-request-id": [ "05adf622-97b9-40cd-95e6-56cf87a43dd7" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:05adf622-97b9-40cd-95e6-56cf87a43dd7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvy5ZCLMN6E4EJkpFEM9vf3MKVKK2n/BlgfwjPV8pxR/lSfK2CylD8HocDTLAeOOkptVNHhVExZ6MvIzvXdk0XdSbhdk2SmrVNzCZpzfrTUoH7WMXNZHXKrV90V5rFAl/vJ0SPQTiznWfLqpCHvy2e" ] + }, + "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_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"name\":\"TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"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_46db30e9-0725-471d-96e2-5f99dac411f6?api-version=2021-01-01+55": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1728" ], + "x-ms-client-request-id": [ "0e2675e8-0b4c-4196-828e-43289de1a683" ], + "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": [ "e07a9736-d327-420d-97f3-a6464d24d82a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14011" ], + "x-ms-request-id": [ "e07a9736-d327-420d-97f3-a6464d24d82a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:e07a9736-d327-420d-97f3-a6464d24d82a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfICd3Vf9HE/9g7ejDcen28l/c+PpwmLyvS2o0762PRM5zJaGMTm3PVjIxcVe8fYVbbFS+EcluGKAHRNYj7YQc3FsxaLpeGf/8C0CfxgUYyQ71amnsYdzQcudJ6WMLbUvAWvIN87YH/5MnzECSsBL" ] + }, + "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_46db30e9-0725-471d-96e2-5f99dac411f6\",\"name\":\"TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6\",\"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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7?api-version=2021-01-01+56": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1729" ], + "x-ms-client-request-id": [ "655fd14d-5a7d-494d-892d-fd3f20e74977" ], + "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": [ "0a7f1351-f108-448c-a6e9-7bbd75b11b81" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14010" ], + "x-ms-request-id": [ "0a7f1351-f108-448c-a6e9-7bbd75b11b81" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:0a7f1351-f108-448c-a6e9-7bbd75b11b81" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjbtYS4alK/otk47FMtH9+rJJZHPhPX2JhB4MGQV0heBE5VQ0J9kEwZJknJWfOczNlUkEGALkS8dPECsy2VGmNcxKe8DzO927BQ2zzNLpJg0VlM+glMDlPa667GPeYIrfhpMrkq4Rz2CZg2ayiVOZ" ] + }, + "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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"name\":\"TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935?api-version=2021-01-01+57": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1730" ], + "x-ms-client-request-id": [ "2d3741d3-38bd-4fc1-8bc7-5f3912ef46a4" ], + "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": [ "42b69db2-e692-4c6f-aead-4f2a192ac364" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14009" ], + "x-ms-request-id": [ "42b69db2-e692-4c6f-aead-4f2a192ac364" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:42b69db2-e692-4c6f-aead-4f2a192ac364" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvN2IRkYPj7ZOhooaPinrchD2Pcq7Sijns8u1lzaHaBJ8gzA4Bs+qLSbscsZCHRTrEppfGgZXxXH79y6fiuwCEcHx/gS+8MejFsjBUPtmNHcOaqEv8snbzBZwFn5xxteCKGR2euhlw5YTSMrxutiR3" ] + }, + "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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"name\":\"TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"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_47ee4c19-0eb5-48db-bb5a-4d9d94436582?api-version=2021-01-01+58": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1731" ], + "x-ms-client-request-id": [ "897083d5-20b5-484e-8225-352360b94242" ], + "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": [ "fd51d1f9-b916-48f9-8af8-c3d4dc29ed07" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14008" ], + "x-ms-request-id": [ "fd51d1f9-b916-48f9-8af8-c3d4dc29ed07" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:fd51d1f9-b916-48f9-8af8-c3d4dc29ed07" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYA0DVhMEHsvn33YLrOTOiW/NQ9qvRJtwhdX3vaoEDYtoEqhvEfvEbMPEYN9v+NPrwR070VVcqwr3w5bimCmnhgygIPyZPtarFoipPtdBzttcrDb8RAdp1pV5CrOwBy7RVAmryuDUOzV8+jjL1qWz" ] + }, + "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_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"name\":\"TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a?api-version=2021-01-01+59": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1732" ], + "x-ms-client-request-id": [ "1217188e-1ed1-4f4c-89ec-548afdb7d8b8" ], + "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": [ "7b22be95-0e53-499e-bfeb-33f4c5a1977d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14007" ], + "x-ms-request-id": [ "7b22be95-0e53-499e-bfeb-33f4c5a1977d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:7b22be95-0e53-499e-bfeb-33f4c5a1977d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6Cacj4JX4Pr5YB3LDqQ4IHhWSsDRzI4WSQb8LrFQadikw+3xzhJ6FCka18kKGZWiJO1QZaZt35IQNhNeUosp25Yi8+TlswOsewCOWAftnQ/bTL/PTSz5z+O3zdoCCsSoDTq1Y+TsrdprdO7KbsZR" ] + }, + "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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"name\":\"TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"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_4a8e3933-4820-48e4-8d33-319cdb998edb?api-version=2021-01-01+60": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1733" ], + "x-ms-client-request-id": [ "5e844cf5-5f18-46ae-a61b-3d12bbfa3c2f" ], + "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": [ "673d54a3-d936-42de-8476-1411d1cf95a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14006" ], + "x-ms-request-id": [ "673d54a3-d936-42de-8476-1411d1cf95a1" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:673d54a3-d936-42de-8476-1411d1cf95a1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBozRzX+t9iP2tY2g5lBkiwkAFZtG3rzMXhk81+u4Vxm97FHMbZ/BcrlPVLf3ZScgcQZT9E8ryyrH9LPedOYaY0wF7k/MiwN809RkD8jR4pTOFR7QsFA3aCyer0ER9JbfcT+w2qWuJJP7O7hOco3M" ] + }, + "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_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"name\":\"TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"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_4affb4ae-2533-4b91-9669-178a72c28c05?api-version=2021-01-01+61": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1734" ], + "x-ms-client-request-id": [ "b11cd354-f5b0-4621-b316-6b83c2ce2912" ], + "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": [ "70454aad-c5d6-4c11-9ec2-51bb5d92f140" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14005" ], + "x-ms-request-id": [ "70454aad-c5d6-4c11-9ec2-51bb5d92f140" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:70454aad-c5d6-4c11-9ec2-51bb5d92f140" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8ZePaFVaICcw6wTpTNlkjTRDHNlxVMivFj0Lw7cU0N7kKcXtwWFlIqvGqI6XO/NqNOaRBd8EC3fXi+IFuiIXOIE6Wy7fOmX5LQBK4ocZAb/ZsvA4+GrhsV1SBtvNJRIZ7pe+f3o8Jm1JuzVrbBfc" ] + }, + "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_4affb4ae-2533-4b91-9669-178a72c28c05\",\"name\":\"TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05\",\"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_4d8e8c00-bb31-450a-b148-82d6bf9d0211?api-version=2021-01-01+62": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1735" ], + "x-ms-client-request-id": [ "f59ac61c-a341-4623-8d4e-f3c51221234e" ], + "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": [ "6c2456ec-3f99-4f22-a8d5-dda1b4403b2b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14004" ], + "x-ms-request-id": [ "6c2456ec-3f99-4f22-a8d5-dda1b4403b2b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:6c2456ec-3f99-4f22-a8d5-dda1b4403b2b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhzdMXJ5hvKlUgnAhDjX0rZ+xcV1GkjeKAs7Mdp4J3YHLT2sC/THEVUgkznnwJwQ0PqI6jYG2uMjpkVmiIPBN0G6hsuKln6qJTNGs1tIPWhGB60kapG8P7d85L8NIanFklcbDIWqJk+xjP//wGiK4" ] + }, + "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_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"name\":\"TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"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_50210271-dd89-479e-b2ef-a705d6d5136e?api-version=2021-01-01+63": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1736" ], + "x-ms-client-request-id": [ "f4246889-f325-4acc-bc79-d1cf4fdbca5a" ], + "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": [ "6daf6e2b-55aa-4de9-9646-ae7e6081bf06" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14003" ], + "x-ms-request-id": [ "6daf6e2b-55aa-4de9-9646-ae7e6081bf06" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:6daf6e2b-55aa-4de9-9646-ae7e6081bf06" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNheo1ycTGM5H8r92dEnwWGI1DAT0DZniXQurkcLSnV8zjcPFVbBrKLnaLTLuB6/EajcWsHnnEaMCFPnQ9VQS7jVAbRawkKoGAxRzMyNOPO5Qlnj1j+uDl4eBKRW+glLcIefMvEr5RrP+EFfYc5pM" ] + }, + "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_50210271-dd89-479e-b2ef-a705d6d5136e\",\"name\":\"TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e\",\"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_531120d4-b389-4576-a76a-ddaefbc7d099?api-version=2021-01-01+64": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1737" ], + "x-ms-client-request-id": [ "3e6d09fe-8e73-43ee-b105-62a5bf1edb99" ], + "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": [ "253d4059-d32f-4530-a48e-5318f109268f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14002" ], + "x-ms-request-id": [ "253d4059-d32f-4530-a48e-5318f109268f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:253d4059-d32f-4530-a48e-5318f109268f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBY68sLcxsvFa7bcDZd1vcS8Ai4MXCkfTgeUliDzd971cWOsAmuzH7F5IDpoZhbDIBLEw+z34YT96R05nDiAqs/JRLCiOczio2rOo+2AyQEPLXfY5Me9x43ZuGdqY+NlL7dcgFlV0nt6NlBJ8aGOO" ] + }, + "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_531120d4-b389-4576-a76a-ddaefbc7d099\",\"name\":\"TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099\",\"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_5351849c-c628-4716-bd44-d0e596aba50d?api-version=2021-01-01+65": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1738" ], + "x-ms-client-request-id": [ "295e7881-6dcc-4048-93b0-6cb92081bbdd" ], + "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": [ "fa8ab875-0ef8-462e-9c5a-a7f17390bd58" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14001" ], + "x-ms-request-id": [ "fa8ab875-0ef8-462e-9c5a-a7f17390bd58" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:fa8ab875-0ef8-462e-9c5a-a7f17390bd58" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQmGdE/egs0kYU+40PvnR6AnbfwlHty5FKHaYw6DPxajVQGpoOLq674VOzW8zyq76+zsNS60oEIDcPT/q6LksWnYsWNDRhSWXYnt0Bp+qTnL1PN823mjAokLvON383eU8dQWKDjszuN3RqkP/8IuV" ] + }, + "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_5351849c-c628-4716-bd44-d0e596aba50d\",\"name\":\"TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d\",\"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_5367a7df-297e-466f-bd25-70e916a864ef?api-version=2021-01-01+66": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1739" ], + "x-ms-client-request-id": [ "b7975912-435e-494b-845f-28a242a219a4" ], + "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": [ "4d944ada-a0b6-410c-863f-64b06f3b9bcd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14000" ], + "x-ms-request-id": [ "4d944ada-a0b6-410c-863f-64b06f3b9bcd" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:4d944ada-a0b6-410c-863f-64b06f3b9bcd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF4R63z68DDVwBXugeSR8gptglo8Fc/tZmYWraIVki/VQ1Xgjrqr5H9j4f+7pykM2JcqoBFSyZYpvbmbz1bgnhhGY5P90Go6efXty8S5qFFpA22RhDUCxJu82EOwNGe9Ux4ll72GGFNgClgF3SAGM" ] + }, + "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_5367a7df-297e-466f-bd25-70e916a864ef\",\"name\":\"TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef\",\"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_54867ae7-cb9f-46de-bd58-1e46393ff1eb?api-version=2021-01-01+67": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1740" ], + "x-ms-client-request-id": [ "c99888ee-f63c-4f07-84e0-63b1a5bec38f" ], + "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": [ "6f0941b6-8568-4402-9ea5-f5be6e636693" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13999" ], + "x-ms-request-id": [ "6f0941b6-8568-4402-9ea5-f5be6e636693" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:6f0941b6-8568-4402-9ea5-f5be6e636693" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcGbIOGuxT4WL9LYGizqPy9VUubasso2G39yUGHP7GmBkOvIeFFf6y3KZTHBLZ67upJMaQ2VTtnaHfqyw8/+AWlWvh4RXUqw5p4qsp4JayXo5dAXNP9n9knxNq5w6vlva2Qw4uKgLcGW85iThvIHr" ] + }, + "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_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"name\":\"TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"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_54f82435-055e-42d7-9da5-57d99e4f75bb?api-version=2021-01-01+68": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1741" ], + "x-ms-client-request-id": [ "add7b031-4d8c-4c0e-9a6c-92dcf6fb0db3" ], + "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": [ "1aa9a7cd-93d5-4d1c-8a05-2df14ef1558f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13998" ], + "x-ms-request-id": [ "1aa9a7cd-93d5-4d1c-8a05-2df14ef1558f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:1aa9a7cd-93d5-4d1c-8a05-2df14ef1558f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviJ/aOVTP37Cuo8ja0Gw5Ieqxdg1v+lCR3PnervIUKfJ/RRyPtX7hcpAa1ZGLC11bsB8llt6UyWZ6rB5tLVTaS0ThKYk315yCNsCQTKDZ9sClWzXvuxo0XORyFuyrF1U1aPxRPBhtKVFo1JMTqNQ7" ] + }, + "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_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"name\":\"TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"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_5b6a9a8b-3fde-4917-9455-963fbb771e2e?api-version=2021-01-01+69": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1742" ], + "x-ms-client-request-id": [ "1b1b920b-1fd8-4575-be5d-10349fff347c" ], + "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": [ "3cab078c-6e19-4304-9941-b2b39874ad49" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13997" ], + "x-ms-request-id": [ "3cab078c-6e19-4304-9941-b2b39874ad49" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:3cab078c-6e19-4304-9941-b2b39874ad49" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIzzJaXnFBxQOrVWgbFGbxd3OXCmDeQARF02hZTe0DMb4hmOAA003kZzLXG/SpBQokwFBGsGkuOHnK6990IKDAqapj7SeA9NgCfZ3XM4QVFGFLaqia2oKs5wg4cIaf837EAuVwPYN6scabszepsf9" ] + }, + "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_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"name\":\"TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f?api-version=2021-01-01+70": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1743" ], + "x-ms-client-request-id": [ "22a88b13-3735-4842-ad57-25a2445410aa" ], + "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": [ "7e14a3c6-387e-426e-a9f6-2be8392176f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13996" ], + "x-ms-request-id": [ "7e14a3c6-387e-426e-a9f6-2be8392176f6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:7e14a3c6-387e-426e-a9f6-2be8392176f6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGTKD0DWuYrKvTgNxDNdygt5ooxG2pJrA1mN25/lX8fQ0OP1HHpjhVGPmDvdSoSG2tU72GcCAU0jhYBKhKTuQOsAVFZdZ0H9/kTbiY6jymsajWb7EyWIM/fHdfGjLb/2m6KIKvPDhD6iDjfaPaKoQ" ] + }, + "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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"name\":\"TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"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_5e42ae42-19e7-4173-9637-a2151db79696?api-version=2021-01-01+71": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1744" ], + "x-ms-client-request-id": [ "b568e367-022a-4fd6-8494-b71bde65d627" ], + "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": [ "d0880efb-c69c-4433-a655-27b5073caa28" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13995" ], + "x-ms-request-id": [ "d0880efb-c69c-4433-a655-27b5073caa28" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:d0880efb-c69c-4433-a655-27b5073caa28" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZ8zTuJ7YNLFdwB25rCxZNpsSjQWg4jSMOwASqhrBVxJfSTcXh4mIE+tbsOa0lrsjIXNdISMkWczpbg1toS/ILTebFh84w5/kh+pcGpLIhQ/txr3zjgFdAD+Ni5k5w2/uyUadZbSmr/2eqsJMvWwY" ] + }, + "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_5e42ae42-19e7-4173-9637-a2151db79696\",\"name\":\"TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696\",\"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_5f0b1184-4467-41d3-95d2-912a324591c8?api-version=2021-01-01+72": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1745" ], + "x-ms-client-request-id": [ "88c8cfed-547e-4187-9a91-f014c4996987" ], + "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": [ "3b093f4f-c6d7-40b0-be30-974bc0576630" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13994" ], + "x-ms-request-id": [ "3b093f4f-c6d7-40b0-be30-974bc0576630" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:3b093f4f-c6d7-40b0-be30-974bc0576630" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAqP7f/GURC6BxKJ5uzLZwB9nAGW8OETfEdbMRBylDFQfTYc+SLYQMN5m+yHbSpOQsRHym14srAU0d0Oi+vQinY6a2Fk117DmuqB1jzjvJv2/Q/CZ6wrd9J1BxowhtsaJbxpmgMxzYfhDDwmH94+x" ] + }, + "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_5f0b1184-4467-41d3-95d2-912a324591c8\",\"name\":\"TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8\",\"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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a?api-version=2021-01-01+73": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1746" ], + "x-ms-client-request-id": [ "82f7938a-0201-471a-b955-e2d45b0e2a4c" ], + "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": [ "a85dd078-b134-4942-9e57-a9a1c942be7b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13993" ], + "x-ms-request-id": [ "a85dd078-b134-4942-9e57-a9a1c942be7b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:a85dd078-b134-4942-9e57-a9a1c942be7b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG4E6yOnWE/ngosh+9mh6cAbJePKfQRJCvUpYAaD6ByOY4jhytEarZ5F4My4c/rL6u9Y1ZSgF+OZNuzMtjgF1RndNVTmNcLn/QztbbZxsyccz8eMVPcPDyAAQr6DylEntZ3KBIvRpJEkvJc/TjO7k" ] + }, + "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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"name\":\"TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"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_62f98c1d-6944-4881-9340-88f3518ab36a?api-version=2021-01-01+74": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1747" ], + "x-ms-client-request-id": [ "627417b9-3d03-4bcb-94c6-55851f12f78d" ], + "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": [ "5e7d78b6-8f7a-4a2a-a4bd-85daa164595e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13992" ], + "x-ms-request-id": [ "5e7d78b6-8f7a-4a2a-a4bd-85daa164595e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:5e7d78b6-8f7a-4a2a-a4bd-85daa164595e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVG8BASjF5ANAp3nm/F8wB5e2CskR+d23i5oPLyFnPXY7wJCiGHrVZv9Fr+iTsRA6O2lxnibhrByZrgChhpz2DNlTkObh/FSafgS+IMsWG545V6a7oHEHAar0Nvh2S/EoHfv93m4JHXbCx995ZbhC" ] + }, + "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_62f98c1d-6944-4881-9340-88f3518ab36a\",\"name\":\"TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a\",\"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_6459e246-995e-454b-8e2d-2b8ae9c78229?api-version=2021-01-01+75": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1748" ], + "x-ms-client-request-id": [ "6484c362-e46e-4edf-8bed-616f7a194d3a" ], + "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": [ "41676d18-1edd-42c8-9156-1d27e4acbfdf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13991" ], + "x-ms-request-id": [ "41676d18-1edd-42c8-9156-1d27e4acbfdf" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:41676d18-1edd-42c8-9156-1d27e4acbfdf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvb/sqCmNQqspGhOzE0DHB5YXvoClTeiH4KW8yMpkzIneorUT+0AwVjA/4B7T5fugJ4sF50lFIs5G9VnYfdJ5Hqpc4FL83tAv8KlzWhwCKsL6WTl1NaoUR7orJ9ZA/xvXvx8eb94Heo8DovooHHylg" ] + }, + "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_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"name\":\"TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"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_6515844c-b7b1-460b-97ee-eb1eb2d34609?api-version=2021-01-01+76": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1749" ], + "x-ms-client-request-id": [ "5cafc891-9603-49f5-b0af-31f535cc9b59" ], + "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": [ "0247de01-10df-4f97-97e9-66063e32a428" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13990" ], + "x-ms-request-id": [ "0247de01-10df-4f97-97e9-66063e32a428" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:0247de01-10df-4f97-97e9-66063e32a428" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtYars/+ZB+3XVMr64od6R4djHiZkYa9GuR3ck9xa/Sgq8L6z4rlQO4bvm+fs3JZEMpG7gQHuKjM0eGzpCtAWodNqKvEGIovzHp7hbwEajP6d/d0OHHEgasuTPJxlcjSlaUHCiZ1K8MGp9yOBDE/D" ] + }, + "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_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"name\":\"TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"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_68f87362-b5d6-49f8-a1c2-56211a903d15?api-version=2021-01-01+77": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1750" ], + "x-ms-client-request-id": [ "56158556-ab4b-4e08-98a7-15303302db8c" ], + "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": [ "a970f1bd-eb96-4acd-b075-e580a307e409" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13989" ], + "x-ms-request-id": [ "a970f1bd-eb96-4acd-b075-e580a307e409" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:a970f1bd-eb96-4acd-b075-e580a307e409" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDfr4+McMYhs+rxgtsZPe9zUsbXvnnbIJu4c+Bv3jqAJvrG7kaG/3MsN/TxQkM/P3QQAsePMDsvy9m/IPb7ZSry/txfkOO/6CfJo8Kgha5Ln4E3LXukQZ+/SZuNhU7ZZ1v8kUveI4ZVAEWiPH2QHB" ] + }, + "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_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"name\":\"TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052?api-version=2021-01-01+78": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1751" ], + "x-ms-client-request-id": [ "20559d8c-a517-485a-846a-fa05e851262e" ], + "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": [ "be815e96-aa14-4b13-923a-59f02304f5be" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13988" ], + "x-ms-request-id": [ "be815e96-aa14-4b13-923a-59f02304f5be" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:be815e96-aa14-4b13-923a-59f02304f5be" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvm73o8xuSGO2UD5/um2MGaPI1mcIAnXIZeA32kGH6Bf4w9xI9l9246p/pAmYYaJxmM3Ym8c88tzi17hD/2HuyVA8yaPiRT6UIcYIpbiEpr0G7exllENZUnlpX68PsghU9/oJO7F0RhohbYT2lL+oK" ] + }, + "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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"name\":\"TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"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_6c9e22d3-2c45-4672-948f-f47eb09f9912?api-version=2021-01-01+79": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1752" ], + "x-ms-client-request-id": [ "0b85a32e-80fa-4ed4-acaa-705f229201a9" ], + "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": [ "40033b51-b2ec-4bc2-a15b-a05f8bc8a852" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13987" ], + "x-ms-request-id": [ "40033b51-b2ec-4bc2-a15b-a05f8bc8a852" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:40033b51-b2ec-4bc2-a15b-a05f8bc8a852" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOETF7dUcNKFHHNzfETr7EH3vxdGfkOO2DqL27BZaInL/Uppm9IUfPAwgdLW49vmt52K58qjApDREPXUZPod+Wu6WtrZo8HP2qyc5apEuEn9f+ej19ZvJauIlk0Wk9MOfTfb9As5ACmUZ6oOiWkvv" ] + }, + "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_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"name\":\"TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9?api-version=2021-01-01+80": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1753" ], + "x-ms-client-request-id": [ "484ea326-4896-41bc-9cbe-b9d54becc2b1" ], + "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": [ "978b5881-bdc8-4c77-8849-7978621323c5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13986" ], + "x-ms-request-id": [ "978b5881-bdc8-4c77-8849-7978621323c5" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:978b5881-bdc8-4c77-8849-7978621323c5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwMroJb/U+WynyYZ4LnvYOP17z+bVDhpRkBxLBUh7pO8KMha+zAeeFpVT+3dRD4x5RqpbJE4aIAUgXff0Ailc7s2i3mFJZxi00Gi4/+XDLyexctYo+7S6mnezdpQ00ri15PZkWpPV4WHAzsL7raxQ" ] + }, + "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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"name\":\"TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"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_6cbf1844-9133-4d24-96d8-5951e2b22e11?api-version=2021-01-01+81": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1754" ], + "x-ms-client-request-id": [ "0de294fb-ccd7-473c-80e7-0d3fbfa5705b" ], + "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": [ "3db33d9e-f33c-41c8-b37e-72e976d3ddb3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13985" ], + "x-ms-request-id": [ "3db33d9e-f33c-41c8-b37e-72e976d3ddb3" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:3db33d9e-f33c-41c8-b37e-72e976d3ddb3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvujau/HvSn+6M//Sl5J8fAEwy4nI48qLcjLq24vK4V2q9zR8u0XJ9VPAl8gBP+S2ZZFUAdrfk/qlUBLokxPA6wa9vm/hx3Zx7JKK/1vVu0QZ18jYRagrxuPiwsGQKG0IGK6PEFX/u5ydOC+zZR8Zp" ] + }, + "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_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"name\":\"TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"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_6d5f01fb-abc0-436b-8f04-3c8b70697945?api-version=2021-01-01+82": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1755" ], + "x-ms-client-request-id": [ "a3684758-ff99-4469-a475-9d0cbbe59f69" ], + "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": [ "fd0b64de-c0d3-40db-bd9d-0cec76af911d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13984" ], + "x-ms-request-id": [ "fd0b64de-c0d3-40db-bd9d-0cec76af911d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:fd0b64de-c0d3-40db-bd9d-0cec76af911d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrcC8hoCEIHsNqdO4M6JyN25MESXtlOuMEQ+oaLUzFFNaFb9jIdSq6nxXH++tCrAgHUvtkZAdtYENOVUz43c2E9IXeFf92yRsJMAUt0kWSX8IsLxbdLQmfxtbkno+xV8HxT/AdSa9ueuaAM8eHosA" ] + }, + "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_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"name\":\"TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"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_718a092c-627e-44c9-8b85-afa051604d51?api-version=2021-01-01+83": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1756" ], + "x-ms-client-request-id": [ "160298c1-2c5c-4ae6-b5b0-9df088bde65f" ], + "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": [ "a68f3f18-945b-40fb-a2f9-a45369b5c89e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13983" ], + "x-ms-request-id": [ "a68f3f18-945b-40fb-a2f9-a45369b5c89e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:a68f3f18-945b-40fb-a2f9-a45369b5c89e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTOWKsGaiXeekDB8LuGvQdXfX2ISGmQRpUqxlFN3YJsAeAC44KA0wQak0G959auNKpsTCepdYXPlrxqVGzSuVoHYiTyYHcQpuAJbI6e60h2cBKSFe4++qy6+ciQmeerV/1MnRDXCRV4CFMKGSB41M" ] + }, + "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_718a092c-627e-44c9-8b85-afa051604d51\",\"name\":\"TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51\",\"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_7243a72d-a5aa-473a-908e-dde40123ffa2?api-version=2021-01-01+84": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1757" ], + "x-ms-client-request-id": [ "a5107920-bab8-4a11-a636-a22d22bff3fc" ], + "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": [ "84083e29-7954-4be4-bdef-82fb9f4bafd6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13982" ], + "x-ms-request-id": [ "84083e29-7954-4be4-bdef-82fb9f4bafd6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:84083e29-7954-4be4-bdef-82fb9f4bafd6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6aO4cWgTXTbZD2JlOr/R2lpStqSsp3NV/jJE9h2h8qbpkvWLJVSIC4dWTpyzxYc/u8+Un6VfO3Yjfk9TZ9G7mSgY0/Wwg3VJSI0tNBOzXWHWDoZeUPZehEzFyOKDO2QZviY5dk/f8EGjAcBikdbv" ] + }, + "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_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"name\":\"TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"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_74b7ce15-3896-4604-aa77-dd938948d44e?api-version=2021-01-01+85": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1758" ], + "x-ms-client-request-id": [ "d739cd51-0820-4a34-a87a-f9f20e199e7e" ], + "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": [ "5da110b6-e77e-4ea9-9fb9-908ef5b49e44" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13981" ], + "x-ms-request-id": [ "5da110b6-e77e-4ea9-9fb9-908ef5b49e44" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181555Z:5da110b6-e77e-4ea9-9fb9-908ef5b49e44" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRXSHfJg+jihG6yvwcVP37azBymRX0juISpbS7OIWXPDjEh5KMHM/fNGvWaOTmLj+2YKxJ6+yY0oyAAty6z2Fl5rd/uqvY01hs+urxQHgJIyakHzmGhL7MVVwhHSLP1bv5T/ZWb7nIN1L7q4bVXqW" ] + }, + "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_74b7ce15-3896-4604-aa77-dd938948d44e\",\"name\":\"TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e\",\"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_753d15bf-1be6-4c74-bbf4-cce40527c9da?api-version=2021-01-01+86": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1759" ], + "x-ms-client-request-id": [ "55235820-0928-460f-a259-742eecd62df5" ], + "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": [ "c13996c3-a095-449a-9404-8a3a41f58d39" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13980" ], + "x-ms-request-id": [ "c13996c3-a095-449a-9404-8a3a41f58d39" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181555Z:c13996c3-a095-449a-9404-8a3a41f58d39" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxzt51cF64ov3Q4zf4PiGrE5wdrdbf8CyJj7Ec33L7Ek6UPjqDrjQbIG1vISqcm/pQSr6DOJ/CFlg0+S9uhneNxiNKEgSB/1mGl25oAdW5Dx8kp/OIuwhsUVTvmsM8fKAIig0VjFfQlwQH4Cv1Q6S" ] + }, + "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_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"name\":\"TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"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_75570a55-9a85-4ab6-b307-1729dea80220?api-version=2021-01-01+87": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1760" ], + "x-ms-client-request-id": [ "80b4a697-dda6-473f-b29e-0ce69f5a45ac" ], + "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": [ "7a20c616-2bcd-4b1e-9ae8-d6c81c77f6b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13979" ], + "x-ms-request-id": [ "7a20c616-2bcd-4b1e-9ae8-d6c81c77f6b9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181555Z:7a20c616-2bcd-4b1e-9ae8-d6c81c77f6b9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbpkq0dsD8DquWlYJxbSLR7CRJIP1mH97Zu7eCaC1oJzs9a7vv+6DlKwuhMRjCzDXa9+MzhiYnjhR+y8BSvsvXSR3yoyyF8svr136e0bNygqJuTKeBWN2O+I1EojBRaiZNC74QxNss72lintGizK5" ] + }, + "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_75570a55-9a85-4ab6-b307-1729dea80220\",\"name\":\"TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220\",\"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_75bc06a6-a5c2-4f25-bea9-63d517a528e7?api-version=2021-01-01+88": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1761" ], + "x-ms-client-request-id": [ "020544bf-da02-4f81-99bf-c8b1eb3c9e8a" ], + "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": [ "27a6fe66-df7f-4c0c-9720-6a936d20bd4b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13978" ], + "x-ms-request-id": [ "27a6fe66-df7f-4c0c-9720-6a936d20bd4b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181555Z:27a6fe66-df7f-4c0c-9720-6a936d20bd4b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJNgZ39IdjcaF1LCwn6/gCKy8vtK/CQwWKvuZkUzi7Xv5xb58UNVo7BJYCPMkKjzK4ROMnqhq5PKLUKHrNsWD6F5nri6tdoPV7x6PbegZzoZJ0mSde/a+Ot8+9ko5njJHTyo3TizPN9gO6PFqJqwO" ] + }, + "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_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"name\":\"TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6?api-version=2021-01-01+89": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1762" ], + "x-ms-client-request-id": [ "c6385da5-3c0d-463b-b25c-78eb84f29ef9" ], + "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": [ "7fba77b6-4c68-4f06-98f8-b82cbe17218b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13977" ], + "x-ms-request-id": [ "7fba77b6-4c68-4f06-98f8-b82cbe17218b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:7fba77b6-4c68-4f06-98f8-b82cbe17218b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvW08Nk8nzpg7ss4NrG0Yhc2BkZ3l/mReashsq5TF4cX8S+CMy/ZLQOvOAFourj3wCyR80VENSVLZ6w5Tg/42fUtg0QH9oz2BPVXlKEGyXxFIjycL5zkQanajIg/e75o26543TDQ3i2MJzRwoqqRS5" ] + }, + "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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"name\":\"TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"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_7893266b-c7de-45c9-8afd-ca21cf7a5be8?api-version=2021-01-01+90": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1763" ], + "x-ms-client-request-id": [ "a29e0d42-8123-4592-bcbc-9fa1f7d91fb0" ], + "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": [ "d7957921-ec39-42d3-bba5-a40374a9a5e4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13976" ], + "x-ms-request-id": [ "d7957921-ec39-42d3-bba5-a40374a9a5e4" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:d7957921-ec39-42d3-bba5-a40374a9a5e4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOOE7i5gi5bL/GdAXKJPT+v0XiOCxq4YETAkNd8VxA5fY3utn3csw2s0WzBadrx8mRMyNDC9uDk9/MnLUWriwzyAUx/kq2Tt/kAke0qbZ5mqWTQC1OHm2zx2jqDbWUN7hjQzWQFfy/6TxfKXwpjAq" ] + }, + "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_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"name\":\"TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"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_7d75bbf0-22e8-40a3-8665-38afcb699905?api-version=2021-01-01+91": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1764" ], + "x-ms-client-request-id": [ "b88b3f78-5e8a-42d9-91b6-3cbc27578a28" ], + "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": [ "a918e1e5-4590-44c3-af74-b735dda3a2c6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13975" ], + "x-ms-request-id": [ "a918e1e5-4590-44c3-af74-b735dda3a2c6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:a918e1e5-4590-44c3-af74-b735dda3a2c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvra7arNZk4nUCNZ0o4QUw66mEeDJ00P6HIiCjhoW3UVlt9Sg4sD2yECeWj1gxju3p8H+fSXiNY/aL/PnKo/uxSYnnlCT+A2oO/5p6TMyaLhIEwyhp70Ww5X4Mqdalnu2AIT+XWOHa3wKl4UkcboBi" ] + }, + "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_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"name\":\"TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006?api-version=2021-01-01+92": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1765" ], + "x-ms-client-request-id": [ "4610e485-0a1d-43f9-b059-d4718bdf8b29" ], + "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": [ "c2ede6b5-e48e-4a34-a0c0-6700f8f092a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13974" ], + "x-ms-request-id": [ "c2ede6b5-e48e-4a34-a0c0-6700f8f092a9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:c2ede6b5-e48e-4a34-a0c0-6700f8f092a9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrCYwce9mpQMSSEc1llqmnVEXEGznVDmVvxMBqdQSggZzvV5ioUKzecaWMkGbgaqmYVEf+pj9Utvc6Vhp2yS+v7GCQK7YBmn6Bf0KfAqKJiW5Zhb+QzWAXJSV2/JMJCh7YyWriYtDxV7EwDOsr5X7" ] + }, + "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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"name\":\"TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35?api-version=2021-01-01+93": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1766" ], + "x-ms-client-request-id": [ "6349e844-d27d-49d1-beb0-4dbbbc165875" ], + "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": [ "8817bbf8-3a54-4af4-929a-ccc512bbf967" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13973" ], + "x-ms-request-id": [ "8817bbf8-3a54-4af4-929a-ccc512bbf967" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:8817bbf8-3a54-4af4-929a-ccc512bbf967" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmIE/YDdViPYfQ1G5saWVqva2yLhNvcQCvRVWcqPv2Yce7nYQUNlwDT7I7Wva2CuQfg/9WDGUWMAOZL5ZdxsawdJXPYptrBJtAtVV/n+cbehOZsOBgNUwlyX1afto/d2mbucxw152WBIfvl4bFVuC" ] + }, + "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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"name\":\"TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"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_82af7a96-167d-4157-a651-526cf2f1b0c7?api-version=2021-01-01+94": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1767" ], + "x-ms-client-request-id": [ "3e7114a3-cdd3-43a8-84ca-7d3b22242435" ], + "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": [ "fcebd4f2-2ec9-4861-a671-9d1a10129448" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13972" ], + "x-ms-request-id": [ "fcebd4f2-2ec9-4861-a671-9d1a10129448" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:fcebd4f2-2ec9-4861-a671-9d1a10129448" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPDXMm1ENX0rXWXG4mbsbNhD+VwMs1HXUApnDZa8w4ytox1yQzlv+oaU2i8vt6ky7SKfLxR04hmgeZlsNfNvcs1nYfXtUKrbQ3ISjQg81L0T1l5O7aTMh0yYmAy3VF8rwLkhVxoN0pTToRETsb1VP" ] + }, + "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_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"name\":\"TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"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_834ccfc2-c570-486f-9f82-606958969a8f?api-version=2021-01-01+95": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1768" ], + "x-ms-client-request-id": [ "00891502-ee99-4d89-bdf5-b1ca2237ce09" ], + "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": [ "73e0a39c-fc2c-4dc9-a291-dbc6ce7ade42" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13971" ], + "x-ms-request-id": [ "73e0a39c-fc2c-4dc9-a291-dbc6ce7ade42" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:73e0a39c-fc2c-4dc9-a291-dbc6ce7ade42" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLaDt5IKG1LjizHG2phFa7JA6w9L+kRLxlQelxH3x6mWRvOa4J8H9Rxx5bD0yzuw4kufS8vqeaxxfPg1By+MWWo5WAeY02mRN30A6UYCUXh8X9hkdf6kXh4bUTJOBsK9x4PeiOSGBZA6wiPl697sJ" ] + }, + "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_834ccfc2-c570-486f-9f82-606958969a8f\",\"name\":\"TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f\",\"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_843ea88a-f1ce-420d-bf63-c0e8f79e1997?api-version=2021-01-01+96": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1769" ], + "x-ms-client-request-id": [ "ac8fd9f0-699b-4f37-b4cd-f6ea13f82c3c" ], + "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": [ "0691984b-26b9-41bb-9f1e-bb1949d3cbcc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13970" ], + "x-ms-request-id": [ "0691984b-26b9-41bb-9f1e-bb1949d3cbcc" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:0691984b-26b9-41bb-9f1e-bb1949d3cbcc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviOSmBoJZKYtzfdQK7SBMtQqWpq7iXWc8Tj9d3vdc9L1fdJObOgSh4QDVifvlNLNQQQuAqPF4jSm/THyIL8zC3DogpCf+/q1gb3t5nevNBpKFYTcoAh0IFguSa10Nt8B7dgdz2ctJGEWE6H5BDLqd" ] + }, + "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_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"name\":\"TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"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_8568b95a-9722-4f9b-82ef-52cc8398febf?api-version=2021-01-01+97": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1770" ], + "x-ms-client-request-id": [ "2970e9f6-2abf-4011-b773-b6851d42f3be" ], + "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": [ "13b9636b-143b-45c1-9807-0ca554d5ba22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13969" ], + "x-ms-request-id": [ "13b9636b-143b-45c1-9807-0ca554d5ba22" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:13b9636b-143b-45c1-9807-0ca554d5ba22" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv05X3YGLiLp3fejrB03+D0kJh22Rf4c3lNkpOAk/K7nTf3IDNIf0RoH5V2SOh98X3Mxz0hAHgaKI9VxSofp03uSzuqQXh95ojzPqcaCLab0ele7SIukfjKPOSD+8AsC3PptbSfAQATV3wzIaTwV9P" ] + }, + "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_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"name\":\"TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18?api-version=2021-01-01+98": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1771" ], + "x-ms-client-request-id": [ "74d014e1-2063-4fdd-830d-a153c326e99f" ], + "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": [ "88852da5-4525-404d-bc98-a79088fa9084" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13968" ], + "x-ms-request-id": [ "88852da5-4525-404d-bc98-a79088fa9084" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:88852da5-4525-404d-bc98-a79088fa9084" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0gqDB4YKOgnDEi4HHtXF6yfgGLDeoe84E2iQIVmPkmhCPnnx1FtXcqigZLmIEEjG7nYcba11JeOutQATtt2RZjcjSILiHrGB54rdOQfbY9k4DpeIfnsFViIYHjzVksQZ/jdBk/qGNDSmg6pN0zog" ] + }, + "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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"name\":\"TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"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_8855d8ef-d217-4949-844b-424daaace267?api-version=2021-01-01+99": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1772" ], + "x-ms-client-request-id": [ "2c85a328-1b22-407d-a637-b63917381973" ], + "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": [ "a7ddab71-be9a-4e63-86ae-fd24790df39e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13967" ], + "x-ms-request-id": [ "a7ddab71-be9a-4e63-86ae-fd24790df39e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:a7ddab71-be9a-4e63-86ae-fd24790df39e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXbJyFwO4F5KQS5LSOfZSmGNEZd8Wt/KJVn4VdRrnL6jQU8qp3uMvP52BSY2+eRHTEl9hzXZef3cQRb3SEKeAA2XZsZ5lmFDF+o/A2+NTynb5IeDG9lpKb1/LG3viTr0R5ehIVcN4JLGBX4IQyd3f" ] + }, + "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_8855d8ef-d217-4949-844b-424daaace267\",\"name\":\"TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267\",\"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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7?api-version=2021-01-01+100": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1773" ], + "x-ms-client-request-id": [ "b86f68be-e7e3-4d07-8581-5fd6a65d02ce" ], + "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": [ "663d5529-4017-4329-b632-02c22e837b46" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13966" ], + "x-ms-request-id": [ "663d5529-4017-4329-b632-02c22e837b46" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:663d5529-4017-4329-b632-02c22e837b46" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTC+mnLhBdlq9/KrpGZW7ujCDcMx4ZhNvspP4w4w9u6wtbPKd9XPQMWkKtsZuuNaOv5B8d9lELnyOngi57NTPPJIzXPhEIVP1ckTk9CZ5rtpykW/tzp4gIysJPa2WbT0lS44+1FlTmZ7oavZLyCOc" ] + }, + "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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"name\":\"TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3?api-version=2021-01-01+101": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1774" ], + "x-ms-client-request-id": [ "735ac9ee-80e0-4eac-9d96-39b2d309172a" ], + "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": [ "70e365f8-6b5c-4e83-bbfb-281cc6dff815" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13965" ], + "x-ms-request-id": [ "70e365f8-6b5c-4e83-bbfb-281cc6dff815" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:70e365f8-6b5c-4e83-bbfb-281cc6dff815" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMGIX32R8S/gnoynaHghq/1xaQo5IWXO8Guiz+iySUC7GJUhYV0xoWYDCUf5MA0IpEDLoKLnvYos48qJNGfAkaTcIMHryQVIFQY+6/gUBC6wL9HbSqBdXfs9GDLDNIgnkIKafI3nZSUC4XqODpxce" ] + }, + "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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"name\":\"TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46?api-version=2021-01-01+102": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1775" ], + "x-ms-client-request-id": [ "01237fc6-c303-4e40-a29a-0cd960da7c61" ], + "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": [ "7cecb37c-280e-4835-865b-bc861761096c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13964" ], + "x-ms-request-id": [ "7cecb37c-280e-4835-865b-bc861761096c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:7cecb37c-280e-4835-865b-bc861761096c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrf0izlieALrRvUNicLNkwQ36To5aVU5auxWJjt+cU0xIRWZ+Y3sro832eoAi470GPoy39GtzoiD1fJGlnEay/1Ov6Ti0lkLpo4VzSv0XqN8VcSdEo11YwQAOgxDnv7lvPvrqJ2CXQk4fhhuN8wQA" ] + }, + "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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"name\":\"TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1?api-version=2021-01-01+103": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1776" ], + "x-ms-client-request-id": [ "40038763-333f-4c8c-9021-a4bd67a553af" ], + "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": [ "28800105-b5f0-4386-a894-7405a3e2fd18" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13963" ], + "x-ms-request-id": [ "28800105-b5f0-4386-a894-7405a3e2fd18" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:28800105-b5f0-4386-a894-7405a3e2fd18" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8NbBtq8OIWx+nzwTDzaTqcA+p3Syqa019lDo5iqKmjHlVuinz1XDAA4LyLxiig5SX8J+pxckZOfu7JE1Ypl2JnP+O5fdz1VPz2bipLSkSxAH5U/B/Bs/HXVz9yFZ6qR/tuqhr8QCeYED+X56Fknb" ] + }, + "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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"name\":\"TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe?api-version=2021-01-01+104": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1777" ], + "x-ms-client-request-id": [ "783a53c6-4243-4f36-8a0e-1f6ff88cd448" ], + "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": [ "84d81ab5-4d5d-4c0b-ae38-4f38a7284546" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13962" ], + "x-ms-request-id": [ "84d81ab5-4d5d-4c0b-ae38-4f38a7284546" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181559Z:84d81ab5-4d5d-4c0b-ae38-4f38a7284546" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGkQvjuhiKSuMwJdmplgVtkPINjz/qe0BjVVuJc6kqJYZdtz6mDJMAe3bGSgOUbfM6fbHodt4YSkkdbg5SsdQAyUbK5k8ybSBuoTFFUuv1pEPddLJJyYDsGKvbae3SzSMLNFMXbuwyULH0QF/ekYN" ] + }, + "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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"name\":\"TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"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_8ef96b18-f937-4c49-9f4b-888634f1065d?api-version=2021-01-01+105": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1778" ], + "x-ms-client-request-id": [ "16b06677-ddd6-4ffe-b5cb-2a3e2c3a2754" ], + "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": [ "44fe08f8-dfa5-4da4-ad31-e8dac7e72adb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13961" ], + "x-ms-request-id": [ "44fe08f8-dfa5-4da4-ad31-e8dac7e72adb" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181559Z:44fe08f8-dfa5-4da4-ad31-e8dac7e72adb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:59 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyI7A8yrkS4F0uigx/OL/eI3OjuG/CPZXDH/qEEnLw96vRZ1k1/A32ZfxfjeDyRpPj0DkdPH79ZLzztgiQQDtW+B+hCzM1AhSLsKw7WzVVJsaKaYmkGRuRnGeI5lspMbQ4xxLlaCyzpKm1No/JwK1" ] + }, + "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_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"name\":\"TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12?api-version=2021-01-01+106": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1779" ], + "x-ms-client-request-id": [ "ecf021ef-3adf-44f1-b8ad-b1d0fa3886a2" ], + "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": [ "c968b4b4-641f-44d3-a113-7e39b3d6e417" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13960" ], + "x-ms-request-id": [ "c968b4b4-641f-44d3-a113-7e39b3d6e417" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181559Z:c968b4b4-641f-44d3-a113-7e39b3d6e417" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:59 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+Y8baUD0WHWLSvxOqfuFGWcS6gIc46AQv3n49Q6cOVlxxhbdgz8J4PPLTiVK5eoIge2tmP0cFilozaTDVYsPA5Z4KSufwEZrUtUalsh96aa/wY4uKqizY1MJT6B94snadQU0wU1kCanYgfN1mI7g" ] + }, + "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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"name\":\"TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"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_9474e1c3-914e-430a-85e5-b2c25ee211a6?api-version=2021-01-01+107": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1780" ], + "x-ms-client-request-id": [ "1aadf4dd-dcce-414b-aa83-cf283211038f" ], + "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": [ "7f8386aa-d2cc-420b-9fbf-018971a0b1ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13959" ], + "x-ms-request-id": [ "7f8386aa-d2cc-420b-9fbf-018971a0b1ea" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181559Z:7f8386aa-d2cc-420b-9fbf-018971a0b1ea" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:59 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvftDpHjxK57yEL0lYxrhrP7UrizaEx8CgIctfbQjaPxfPQdhkeXTvI/WxgcwzqDzB7qitO0hHVVXef29lqzawTBgijdTpbjtz9bKSnwUp313U4S/gt21OU0hxVKA2QQKxBRzMXd4jtsS4Zoiu2+tt" ] + }, + "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_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"name\":\"TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5?api-version=2021-01-01+108": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1781" ], + "x-ms-client-request-id": [ "591a2ccf-c2f2-4357-bd2a-68d9b3c58ec4" ], + "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": [ "128cfcba-0230-4141-a08d-5ea8bd3e9994" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13958" ], + "x-ms-request-id": [ "128cfcba-0230-4141-a08d-5ea8bd3e9994" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:128cfcba-0230-4141-a08d-5ea8bd3e9994" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:15:59 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/LtnRCZbzG+vzn798WkUTMYXbOEdDEWmrsngxsg7VCm1qKFtoaNBQVj9R9PHcxY/pNXPvMT8vN2mzZMmj5/HDkMwzNmrNGFEn+OdH8kQRTFWS/AI4BQx4FlyVxk7JH0080M34B62jBsopiH2rAEM" ] + }, + "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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"name\":\"TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"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_99b3f92d-8fca-4e9d-b304-66ccfacfb533?api-version=2021-01-01+109": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1782" ], + "x-ms-client-request-id": [ "cb237f57-f08a-4fab-b871-9e9bc7266b9f" ], + "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": [ "69a51d29-fd62-4a4c-a95b-08d8c9781a4e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13957" ], + "x-ms-request-id": [ "69a51d29-fd62-4a4c-a95b-08d8c9781a4e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:69a51d29-fd62-4a4c-a95b-08d8c9781a4e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF60xGS29p8oEamhViEZ6NpLlpyNEbrfrND/D4k8/lTiXNJJkw1YohZrUqdfab+McFCEGJ0PcfHlxj6D5DyfPiFAtbgcxhCaW2nrbwMho8A0UvN5m1EgiuhmX9GgMrHusmeg8YKTwVo3AYae0uk3o" ] + }, + "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_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"name\":\"TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"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_9b850701-8c60-4271-8a63-4d6bfa55fe7c?api-version=2021-01-01+110": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1783" ], + "x-ms-client-request-id": [ "bab437e2-86e0-42d7-bcbd-d727f63c0602" ], + "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": [ "f51d63e1-f4d4-4c2b-b028-5ab4176e41ee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13956" ], + "x-ms-request-id": [ "f51d63e1-f4d4-4c2b-b028-5ab4176e41ee" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:f51d63e1-f4d4-4c2b-b028-5ab4176e41ee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+Fp1icAJbl0E8Rw8Dw2wdN9lOf1cr/Pbex+uX3v9raj3IlFp+pSbK8ZUoK8gCg/49XmjxPRGggsZBdRO670zKge1kpVACWGBFHGa1eBkRwlGZCDusdYxhHks4cBZbkjGeJfs6qinDHbTfkR4MKJb" ] + }, + "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_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"name\":\"TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"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_9b9eafbf-c19b-4a02-b041-966e6619145a?api-version=2021-01-01+111": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1784" ], + "x-ms-client-request-id": [ "9fe146e1-4219-4174-afdb-c400d01e8c4a" ], + "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": [ "87af7ef9-e93c-4a4b-9f85-5f29c31d59ad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13955" ], + "x-ms-request-id": [ "87af7ef9-e93c-4a4b-9f85-5f29c31d59ad" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:87af7ef9-e93c-4a4b-9f85-5f29c31d59ad" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVytaT0OEUVnQOqmHrBDs4mP0sNP80mDkmUQVZuhgUbWRYVfGSWWbhXOLAzlPlhUfgNelM+pe8y/yWI4xYVWM+Xc7Qefl94zyyUiEWQeKdjUmDRSSUmvp0EoAirYzZnI0RmYqmjeJcjx9EujS72MK" ] + }, + "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_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"name\":\"TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"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_9deecb38-96da-4cc0-9782-75a7b0d7f08c?api-version=2021-01-01+112": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1785" ], + "x-ms-client-request-id": [ "0cdd81bc-0464-4aa8-91d7-e23994138bf2" ], + "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": [ "bff999a2-aace-455f-8bc0-76b1a981f11a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13954" ], + "x-ms-request-id": [ "bff999a2-aace-455f-8bc0-76b1a981f11a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:bff999a2-aace-455f-8bc0-76b1a981f11a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5Dj1IDIIHbus9b9BrwxDhm5+E69okU0JH8oK34megLMpNS0VL9oft+VmR0C8nh2oOJx/HDMC7hYc50htXuYiHO0tcRw2jUVQ3zUNObNODb3X4bbmHTl8gSO9lI5cg9S2OhUxv6LmILAkIuWKJB2G" ] + }, + "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_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"name\":\"TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148?api-version=2021-01-01+113": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1786" ], + "x-ms-client-request-id": [ "6d4cafff-2485-4061-9027-aa7cf8be074b" ], + "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": [ "6cf3eec3-1f73-466a-9c25-137cf698948a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13953" ], + "x-ms-request-id": [ "6cf3eec3-1f73-466a-9c25-137cf698948a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:6cf3eec3-1f73-466a-9c25-137cf698948a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi2HhvsnC1CYWlFcbB/0SC6rdW/i8w/t7jQomjTy9T6aVd+mLqn7v0JOluHVMsmowjHba6sQGArCQOuJ5hMKPkCa0SL3EIe87FlcD6nDNOKGLw1La4l8A7u47j0QuduQqgK7cT+48n7Fxtr72JdS9" ] + }, + "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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"name\":\"TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"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_a36efee4-1cfa-478a-ba08-f39cfe5987d8?api-version=2021-01-01+114": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1787" ], + "x-ms-client-request-id": [ "d21624a3-5da2-4d3a-883f-d9c057d850fc" ], + "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": [ "621128a0-8272-43e8-96a2-fac16a0b0724" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13952" ], + "x-ms-request-id": [ "621128a0-8272-43e8-96a2-fac16a0b0724" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:621128a0-8272-43e8-96a2-fac16a0b0724" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVUWuOdrxNRE/Rc3tH1PIW+Co/AOIzOcXSAmRTcWkM2+IIunTWvHNRjNZprMgPUZRfaS9FvG5DYUykwv4qSrgwyf6NVJI7UlRi7oAC7avPLhqmbIybdl/FYbrL3e8Q9finYAQDAmQXi8olHRZ3uKM" ] + }, + "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_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"name\":\"TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"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_a393cbac-d1ce-4d33-8b84-6342e259a972?api-version=2021-01-01+115": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1788" ], + "x-ms-client-request-id": [ "20498944-aedf-489d-ab53-4b83fa9ba72f" ], + "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": [ "db908492-4224-42e7-afce-37e759378800" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13951" ], + "x-ms-request-id": [ "db908492-4224-42e7-afce-37e759378800" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:db908492-4224-42e7-afce-37e759378800" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCNRK3aaP35bEn3pOHSkY/nUULLAySxMRyM+GKnCttPhNi50PBszrQg1bHkw6poss/5eSLN0uiTrOXkHUP2N/AZEHAx8Fp8dTZ1dJPm/alKAdBUcEzQZRA9d7lxmDxF5ESBsO39c4fn6PHH3D9tTa" ] + }, + "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_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"name\":\"TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"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_a4565f32-c3b6-460e-9012-056dd1f85bbd?api-version=2021-01-01+116": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1789" ], + "x-ms-client-request-id": [ "8693ae4a-7e05-4cae-a707-4c1f1e8e70f6" ], + "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": [ "88cee2f4-088f-4de2-9776-7ff0c6cd8b09" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13950" ], + "x-ms-request-id": [ "88cee2f4-088f-4de2-9776-7ff0c6cd8b09" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:88cee2f4-088f-4de2-9776-7ff0c6cd8b09" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvK4jbJMBNDx96CnvvPj2VAjP0nHrBjT3DvGektxKvKE8pjWC24/TxZQ0KJHO1Wp5chs/W5Z8wT4gC323J7+jWP81umytvbNYl1XXEz4BYTLP9VlnzN1jov6HW6gMtBgq48flPahwlY9Wn5kbajr3C" ] + }, + "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_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"name\":\"TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29?api-version=2021-01-01+117": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1790" ], + "x-ms-client-request-id": [ "74dd481a-a245-445d-b075-092ffbd5e17c" ], + "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": [ "f19b81ab-56d1-4bd3-87aa-f63708e6f889" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13949" ], + "x-ms-request-id": [ "f19b81ab-56d1-4bd3-87aa-f63708e6f889" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:f19b81ab-56d1-4bd3-87aa-f63708e6f889" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmDqN/Ad5KRjcNnQI8IOr7QRYhzbKjcR6SBTcLcrn+cFWxchGeptwdvn7hk/6A300W5z3500Ul/o0oetGnyeXNpux/J9HsIBFCSDMeVoJsLFry3hD0jaFC+QIjfIB3A3Y8EXXQX8TOvWSuDAwsZJj" ] + }, + "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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"name\":\"TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"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_a598a917-dc53-42c1-a40c-a3fde1d36313?api-version=2021-01-01+118": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1791" ], + "x-ms-client-request-id": [ "4cdbec0b-6ea1-4ab3-a342-8e2bdcea0da8" ], + "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": [ "0dca2493-5428-4483-b2d3-079b3d7bda59" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13948" ], + "x-ms-request-id": [ "0dca2493-5428-4483-b2d3-079b3d7bda59" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181602Z:0dca2493-5428-4483-b2d3-079b3d7bda59" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEUpvhl4Z4n7sAh2zcdYjFJZ2cxrz79AUPWjL6GP+MsPVmGkT0PmlnD4B5j3LarMXDbxkIIAT1GXTVkV9SW56jI+F7xLEd/b6kA89oSOWzYhJrAdwrEJ2yoZc1L+mkuqSn0833qHaE7aFqcPiu4ql" ] + }, + "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_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"name\":\"TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a?api-version=2021-01-01+119": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1792" ], + "x-ms-client-request-id": [ "f34e53f2-9ccf-4e9d-89be-6c978dd4b057" ], + "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": [ "cc67bf3a-52ae-486d-b6ac-f7a6256bbc13" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13947" ], + "x-ms-request-id": [ "cc67bf3a-52ae-486d-b6ac-f7a6256bbc13" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181602Z:cc67bf3a-52ae-486d-b6ac-f7a6256bbc13" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHL4KTJ3uGCMHQgiQwhSkfjVTuwPzQLf+WaKiG3jXQa7EFOXKPBG2YmuldZSeYkHkiUGy3EdKo9Q8FiC4YXKBj8OdUj571kMGGKUdtGF56XUD/6/LHiRnkJahXhVYA5LcDW1NhRc/xv7GGotz5duy" ] + }, + "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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"name\":\"TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"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_ac446333-375f-4fc0-a5a5-21fbee00ff09?api-version=2021-01-01+120": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1793" ], + "x-ms-client-request-id": [ "16df9e74-0f46-4a60-a2cc-7bd61ab2bc37" ], + "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": [ "48074fb9-bd9b-43b9-abe8-6d1e9b0274ec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13946" ], + "x-ms-request-id": [ "48074fb9-bd9b-43b9-abe8-6d1e9b0274ec" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181602Z:48074fb9-bd9b-43b9-abe8-6d1e9b0274ec" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2jymBGUCmUZ9SYPvavJoiUw4JsMR72AdOum08HYhi9rxRZbdcYS3rodK1/q/yEqjcnLkVdW0Ea2EqoVrwznH61hP1mt4UBjoPiXLsDUqxHDrmFT4nXcQJHKBswMnWasRvg5xC1uy+Q1UVTjBiTu9" ] + }, + "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_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"name\":\"TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"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_ad1dd320-7248-4c0a-87f9-0de9b879fac0?api-version=2021-01-01+121": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1794" ], + "x-ms-client-request-id": [ "b57f1fd6-357b-4cb2-8fa7-84d88f241afa" ], + "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": [ "ca0e6062-e801-41cc-bc0e-d2bb707fcb9d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13945" ], + "x-ms-request-id": [ "ca0e6062-e801-41cc-bc0e-d2bb707fcb9d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181602Z:ca0e6062-e801-41cc-bc0e-d2bb707fcb9d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEPyv5OhtKxpeMyHzmTnKQptn0GYZAfDuhg6nch1TRPgaTd7ormnlMHn4iuma2MPdL781S25id/Hzuac42ExOPOvJYFawNad4wnqYiV+Px4QCmVEzDrK/ZctbRyZdIb1yKc0FfmpgSyYHV9sYGLZv" ] + }, + "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_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"name\":\"TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"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_ad49115c-d0a6-424d-ac42-b6a465c2495e?api-version=2021-01-01+122": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1795" ], + "x-ms-client-request-id": [ "38242316-3b01-4eb4-952b-fb611c11b28d" ], + "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": [ "f26415f8-b7b2-4697-9c71-e24f2e60df89" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13944" ], + "x-ms-request-id": [ "f26415f8-b7b2-4697-9c71-e24f2e60df89" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181603Z:f26415f8-b7b2-4697-9c71-e24f2e60df89" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjOxv6gjrou3N5esuJDifzhN7HZA72jBjcKhVJHu/g46M+FrmG/OHaqvIfliKFoy0HcD2Z+g4oXC4hPOD/6ct5ofjDL6C0BP73z8jMIWCk/f6lRwKOuhuycNS84aaTx3AcUwnlJU+xAprmT3zl/DV" ] + }, + "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_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"name\":\"TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8?api-version=2021-01-01+123": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1796" ], + "x-ms-client-request-id": [ "87d0d886-fe7b-4aaf-8283-22d951fa8912" ], + "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": [ "e497867d-244b-4834-9cae-44cec61cd322" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13943" ], + "x-ms-request-id": [ "e497867d-244b-4834-9cae-44cec61cd322" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181603Z:e497867d-244b-4834-9cae-44cec61cd322" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvX7Bj3N25D7yWNaG5BL556L0pd1aKdEwdV0nif1grZN3cWrf1neB7bAVpCNlu0XrgSs/JTcUlz802SPDrssNL+KI0O+OPCLvuKlSSg/fHMYOjOvsS4SNv2iSd0wgxbUSy1u5pQ2esiBK4WrVtV4Ia" ] + }, + "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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"name\":\"TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"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_ae945d10-38ec-4406-8d63-8e841e0a871d?api-version=2021-01-01+124": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1797" ], + "x-ms-client-request-id": [ "2b4eb873-1194-467e-ae57-8bbf1d512e3e" ], + "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": [ "6d61b9b3-35f6-40b1-be3c-604b95d9c1a6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13942" ], + "x-ms-request-id": [ "6d61b9b3-35f6-40b1-be3c-604b95d9c1a6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181603Z:6d61b9b3-35f6-40b1-be3c-604b95d9c1a6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2Mu9ZAxMrQy+vLV6J1qN7Jq0iKo5l3+FBeRslXPFsPymxhx5ZbchaVc4I/SPeAdm33lGAqA4QmMVaFE3XunJ0DPJaF99HbD7YGdPZ7xXoTWao97VQwRpoalJNZGPA3OT0FBFNK9zkT5wByHQ3+Y0" ] + }, + "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_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"name\":\"TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd?api-version=2021-01-01+125": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1798" ], + "x-ms-client-request-id": [ "f52195ac-4150-4ad4-887c-a7ed26154242" ], + "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": [ "22147d19-378a-49f1-ba4d-e5944ff2b0e6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13941" ], + "x-ms-request-id": [ "22147d19-378a-49f1-ba4d-e5944ff2b0e6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181603Z:22147d19-378a-49f1-ba4d-e5944ff2b0e6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9tdLNykS6v7Bh9gFDnY2lnjNhmmJFyHlDkOoGr0xFrsHlSohz2gQDbQyauHTnKz1MJMtbBl8HGTX3me8plp2evznJT8Gz0pNU3fZf7fwDA/I+vJlTP8Z9gSSrNCrf6MTot9SIFRcajHJfNE+k4Ba" ] + }, + "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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"name\":\"TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94?api-version=2021-01-01+126": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1799" ], + "x-ms-client-request-id": [ "ed03ad2f-b051-4296-8f42-fcf78f654f18" ], + "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": [ "784492d6-ab36-44b6-b70b-056cffb4a2dd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13940" ], + "x-ms-request-id": [ "784492d6-ab36-44b6-b70b-056cffb4a2dd" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:784492d6-ab36-44b6-b70b-056cffb4a2dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvN/520NICu++0RzfmAw1eqJdrXU2xgvpR4CWsxixn9jwWqfHMYzWftxFkZKq0dw7tjdrkzNoEmfw3XM3pwHW2JAAM41CkhX/zIXPGXTV7dOcKK+mXaFjJ/ynCOdNIc5uqelfAdOQwMqio/Kc1tWhU" ] + }, + "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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"name\":\"TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2?api-version=2021-01-01+127": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1800" ], + "x-ms-client-request-id": [ "d346d99b-8191-4027-90b1-76bd5268cc4c" ], + "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": [ "398748ef-f8a3-434d-8b04-6c0c77e8b23a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13939" ], + "x-ms-request-id": [ "398748ef-f8a3-434d-8b04-6c0c77e8b23a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:398748ef-f8a3-434d-8b04-6c0c77e8b23a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Vvk/Lt5fnRIvS6M5i87VB/f8Dgf0PqsNckn2GAI0R1KDoBrHW9F5c/cLqB/YPNKPm7AdNHjokTUbWOJHpALcFmX/2pUAKwnLAeBDM3odk3+I7uy3d3RgKe3rJyzZNCgJSqozyflzEYkK8XfyCC+" ] + }, + "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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"name\":\"TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"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_b6acf4fe-af99-4dfd-a806-a126bf05eff1?api-version=2021-01-01+128": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1801" ], + "x-ms-client-request-id": [ "6e457213-a792-4617-84c2-bec65c632656" ], + "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": [ "0659e688-d8da-4d1a-899b-7881f18c8d12" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13938" ], + "x-ms-request-id": [ "0659e688-d8da-4d1a-899b-7881f18c8d12" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:0659e688-d8da-4d1a-899b-7881f18c8d12" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH/t0pp8rcAQLmwPPXa/dGFu8xNUUWxTuXDNLfSPQoHiVNjTLxjK+62i4O476di5BQ3aFSoBsXQq6nCm4Phz3gZ+79wqIqjky4dT4ovotSlHh2PPy2TjgroVL+pe1HU6VCPCDUQui9ISkgua5zj9d" ] + }, + "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_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"name\":\"TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"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_b7eb4031-7521-44be-81ee-d28af22c04a6?api-version=2021-01-01+129": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1802" ], + "x-ms-client-request-id": [ "dc7db9f1-26c8-4331-850e-3658a79dad06" ], + "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": [ "897806bb-b167-483b-bd87-7d7ca7f98d16" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13937" ], + "x-ms-request-id": [ "897806bb-b167-483b-bd87-7d7ca7f98d16" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:897806bb-b167-483b-bd87-7d7ca7f98d16" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxYg4DnytM5kjhBYhyZFD8AdlXGYLYdB8NFnew9UJTMxbHIWEKyw9S+cC32O+tquVJ+mEAaQbRxQZRP17QBGRkfSzQebJODoOXHMfS0C8gbu4ZzBiy/t3p9DNHFK6VlmISKMKKRHjNxNBTexXlfQ+" ] + }, + "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_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"name\":\"TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"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_bc07765f-c3f5-403d-8852-a26378a74da1?api-version=2021-01-01+130": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1803" ], + "x-ms-client-request-id": [ "09278bf9-9c09-4f96-95ca-98443017b07e" ], + "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": [ "9a5d99fe-d0a6-4962-a1ab-8e673a829d91" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13936" ], + "x-ms-request-id": [ "9a5d99fe-d0a6-4962-a1ab-8e673a829d91" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:9a5d99fe-d0a6-4962-a1ab-8e673a829d91" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQukzeOGRO53yhISznilM4sXYC98N8JszngSJwPAXeUyBNUmWdH9LkcOcR5gHHtjJv8t/EIQmv7qX1jvJdNxJJAo1YdVrBNklxoKlGqxoTLTOzbx7Fw7NPC0EtPpBiNvA9LmIW6KBrU6KyXBfyGoE" ] + }, + "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_bc07765f-c3f5-403d-8852-a26378a74da1\",\"name\":\"TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1\",\"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_bdcc1b78-2d6d-46a2-94a0-be114c75a872?api-version=2021-01-01+131": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1804" ], + "x-ms-client-request-id": [ "d3c8cc35-eb3e-4fb9-afd7-8f0f9a607c7e" ], + "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": [ "0ba6f3cc-859a-44ed-8d67-6856abc67da7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13935" ], + "x-ms-request-id": [ "0ba6f3cc-859a-44ed-8d67-6856abc67da7" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:0ba6f3cc-859a-44ed-8d67-6856abc67da7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsCWh4T47mUdSf9yh9eRmhK/5oj3O2RBbB1fS83Xogj7OjbEoojYJEKIQQ1kC2yNzHhXqTwxl9b/4DF5ru1py6sOlyEK+4nsdxYawclnaEIL9XV+BNOdCCaCOu78W78nAy1mr3N5bqZ0Y/VLbq30k" ] + }, + "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_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"name\":\"TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"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_be5ee740-2d22-43c6-ac91-f1dae52d9725?api-version=2021-01-01+132": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1805" ], + "x-ms-client-request-id": [ "6dbbe04c-9bd6-4b93-b6b5-f9bc7dd944c1" ], + "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": [ "0eb1ae86-5905-42da-9345-2bc85a7c8922" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13934" ], + "x-ms-request-id": [ "0eb1ae86-5905-42da-9345-2bc85a7c8922" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:0eb1ae86-5905-42da-9345-2bc85a7c8922" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvucQ417ZnFr3+1os27AEx4uelxEr/chCf88i+dfwivtdXvbfKXck9yeR2jcSrVm9jKP469WGPcbtfWpJjLVz2DWGZpOWYpjgrSeZLr6o36YAdaHlOPZAY2Jqdtjvu2OXYEVDjEnif40uwxHz2O0ss" ] + }, + "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_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"name\":\"TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"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_c165e2db-eda5-4d07-8cea-881bf962ae20?api-version=2021-01-01+133": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1806" ], + "x-ms-client-request-id": [ "5e4478f0-a37d-4176-ad7e-d83cf2df087a" ], + "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": [ "1b1d0fda-5180-46cd-8b22-d330fcf0980e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13933" ], + "x-ms-request-id": [ "1b1d0fda-5180-46cd-8b22-d330fcf0980e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:1b1d0fda-5180-46cd-8b22-d330fcf0980e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPHZQD/XcY0iKAq3aq8kaOf5fiXkiSmvb6glpOYC5bwBlplsD9cj2SFqiPOP80rOIfLnd9JjgJqFymXKa1IySzKJ8FjHYRFwj6XeNvyghbAMKQ5vFTKtV2n/Qs1M/6CtrzwMLYyPnPXLShMtEIduD" ] + }, + "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_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"name\":\"TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451?api-version=2021-01-01+134": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1807" ], + "x-ms-client-request-id": [ "656c5875-dede-4085-9a94-16cc1a778828" ], + "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": [ "539be1b2-1207-4754-a6fe-64519e3fbbf2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13932" ], + "x-ms-request-id": [ "539be1b2-1207-4754-a6fe-64519e3fbbf2" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:539be1b2-1207-4754-a6fe-64519e3fbbf2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYk5F97fjbPIrNc3Kx930PdlALt/aQepSaRY0Eoy2AFjX6qg+wAQzMMU1qYQu8RfGFhkiAO8Dr1XHOpq8m109JAWYHKGABA7M1OYRXy2PPBqDtscI5Okr3ZrodwC/LB2uKOSr8uct6hBcJWVMrsN2" ] + }, + "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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"name\":\"TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d?api-version=2021-01-01+135": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1808" ], + "x-ms-client-request-id": [ "1cdbc59e-2a40-4b9b-97cb-d90b0caedd76" ], + "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": [ "5c55a66d-4c48-4e61-925d-ae8b85a33ce6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13931" ], + "x-ms-request-id": [ "5c55a66d-4c48-4e61-925d-ae8b85a33ce6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:5c55a66d-4c48-4e61-925d-ae8b85a33ce6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5UDHRAPelxll+3fPReOwlRp43g40x83gsR57htVP8L5teIWCSrDYLAtxuOgre2eG2ARkgOPDv16Rid8Mh2izN6sQyeesb9M7DtwjHjOMvMq04Bi8l9hCBEKdPhZX0WA1UZOz8rnqq0T51l/3xDRT" ] + }, + "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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"name\":\"TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"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_c3962496-e060-45e6-b892-428bd15fba06?api-version=2021-01-01+136": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1809" ], + "x-ms-client-request-id": [ "600528c2-1441-4583-8f9f-ef7126bcb621" ], + "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": [ "79fc33bc-bdc6-4794-9c21-a89788197cc0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13930" ], + "x-ms-request-id": [ "79fc33bc-bdc6-4794-9c21-a89788197cc0" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:79fc33bc-bdc6-4794-9c21-a89788197cc0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvldbvZXt1L/3HVnAJbW03P4OYshtH4QMylybdAuSaPur9VmfZpnaWY5cuDLUNcTCClEhVIdMM0cx/sf8B8dAdq6sO1YMnUKyI1B2Hm/pd1MpnLG4oDPlRsjqUoZKNfZKIzUFGB3S71E3VxVwdXqCZ" ] + }, + "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_c3962496-e060-45e6-b892-428bd15fba06\",\"name\":\"TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06\",\"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_c4c284fc-2457-47e4-9274-9a1d15b27849?api-version=2021-01-01+137": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1810" ], + "x-ms-client-request-id": [ "09db6efe-527b-45b9-a8ea-6885048275cc" ], + "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": [ "629d3e8b-8a20-42c6-82c1-58dadeb139d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13929" ], + "x-ms-request-id": [ "629d3e8b-8a20-42c6-82c1-58dadeb139d5" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:629d3e8b-8a20-42c6-82c1-58dadeb139d5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1B33BE0BIXzY63avwdpIuIfh7+5EKhgfGnPJB3letFjEvlxuQUl6+Jlkz3bLmZXH/Ev51hChXQdbHVfKmZzDDhhuGUYOpmqU4ba+Aff+HBH1yRfVVgfkfuHwON3o6f9dFATX0slge7qfeKw4QXKk" ] + }, + "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_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"name\":\"TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"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_c5117940-85df-4e95-8295-08b129c4230a?api-version=2021-01-01+138": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1811" ], + "x-ms-client-request-id": [ "4338d7aa-f871-4343-8c6c-c85148f33e0f" ], + "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": [ "05447433-eec5-4e17-b502-1045ad92928e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13928" ], + "x-ms-request-id": [ "05447433-eec5-4e17-b502-1045ad92928e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:05447433-eec5-4e17-b502-1045ad92928e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcOuprxPVh70ahquOkyGWqCMX46rigEa5BWmCOVoNlSYqEpPjiVnvLg0IXlD5uWPi77UMA4an9UKXJx7TmcIABCGP8oiagR97dv0udCx0VY5mgnXZ97cIu14FXjQp69oxmZc19zyHPjUKpqn7NA9C" ] + }, + "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_c5117940-85df-4e95-8295-08b129c4230a\",\"name\":\"TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a\",\"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_cb03095f-8f9d-4551-b722-3dfb7f705df3?api-version=2021-01-01+139": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1812" ], + "x-ms-client-request-id": [ "9ba283be-d61c-40c9-ac58-17b527a3f607" ], + "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": [ "fc45ffd8-6e99-475f-bf79-e6b6b9f5e0a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13927" ], + "x-ms-request-id": [ "fc45ffd8-6e99-475f-bf79-e6b6b9f5e0a9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:fc45ffd8-6e99-475f-bf79-e6b6b9f5e0a9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/GjDii+ZWGagUB0bYoWGkpOcKZfriOqMQbyWDXyQdUGA2MsK8lXAVDnZrwPJ1Q+fMLMzBLwD9TIa3bcs9PBOuxVf6vkwPvU1pEPn7RarSbkLc1XYTp8rRzhTPqH7Tx3FteGjmhA7+EAP3ef/zWAQ" ] + }, + "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_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"name\":\"TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"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_cc53a3f4-8de9-4044-9217-0ce511b400e8?api-version=2021-01-01+140": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1813" ], + "x-ms-client-request-id": [ "45de546a-7b8e-4628-8a40-50c9c280c79c" ], + "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": [ "cb0743f5-efb2-4297-9900-121baef5a119" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13926" ], + "x-ms-request-id": [ "cb0743f5-efb2-4297-9900-121baef5a119" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:cb0743f5-efb2-4297-9900-121baef5a119" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtp6H4MUaqniLKcGz5v40+dyJuSfldvJa0NiKXbdQ061u0o11lvFEsfke37q/Ul4wB2D9r5m1AURQsqaq3F3zxZiRtppdBRCP4fN9J0Uc9PEBSwylCLt2J+CfzJ6api6RvPYrxWICZ/wUd4IDCyv5" ] + }, + "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_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"name\":\"TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"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_ce5efde0-630e-4b5f-b412-efb5f919b668?api-version=2021-01-01+141": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1814" ], + "x-ms-client-request-id": [ "4c82d5ae-b01f-4a2e-bbfb-5701d1d96bbf" ], + "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": [ "a6ae7d14-ecce-49d2-b281-a2b4046018b7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13925" ], + "x-ms-request-id": [ "a6ae7d14-ecce-49d2-b281-a2b4046018b7" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181607Z:a6ae7d14-ecce-49d2-b281-a2b4046018b7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4NIyKMn3n1eOZYcPH/nrfDVaD38xMnYgJoQgN+WWnuCSCJPmsPCpj6ee9R1n1IB0hckZcTxUAsS8tNXW2PYHKygCHgi8QAHVQ8k4CMHgdhyyZdwx4jMwnzSDHPqLzmlDvpefalxOvXscYIBg3Irf" ] + }, + "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_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"name\":\"TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5?api-version=2021-01-01+142": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1815" ], + "x-ms-client-request-id": [ "e35f40c9-3cdb-4722-a652-e6134ac8f191" ], + "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": [ "1a5b0980-0f76-45a7-9f09-8c9e94c547ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13924" ], + "x-ms-request-id": [ "1a5b0980-0f76-45a7-9f09-8c9e94c547ef" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181607Z:1a5b0980-0f76-45a7-9f09-8c9e94c547ef" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8dAFD0zan9FOHoz0FtogNqKEZueONPPrBmlTUQIQo2TwKCPw1wpdQLp0ExytSxpiYgMIrAHYDDvIQYkcFsvdQbcd+w2/kPVwnCQHU83CuuIrUb+92ThRO2jzAt2uxkXW5bor+KT7NdyLuWraPlgd" ] + }, + "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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"name\":\"TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"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_d2067eb1-4c75-403c-bddf-ea1bd69ec838?api-version=2021-01-01+143": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1816" ], + "x-ms-client-request-id": [ "4ea514e9-b2f7-404b-8a3f-402510f2ae50" ], + "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": [ "7c921ce2-978d-4f45-b1e5-315273847d47" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13923" ], + "x-ms-request-id": [ "7c921ce2-978d-4f45-b1e5-315273847d47" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181607Z:7c921ce2-978d-4f45-b1e5-315273847d47" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKDCRVfIj4f+o53/uL5CtMTDsVzNH7E2frDp6q1fWmwL6iGf/gg2AsPeeaz1oYmBGQdCy/yc9LSETd6/81tQbqNZPy6nYopKctEhGuEgO1USZvli1HRkI1bRRIN3pd1ikF9M+2uE5d3oy5YEO1E0N" ] + }, + "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_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"name\":\"TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c?api-version=2021-01-01+144": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1817" ], + "x-ms-client-request-id": [ "2229ee20-f3b2-47fe-8c50-a1466fae8311" ], + "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": [ "60ee5271-42c8-42bd-ae3a-f34269049750" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13922" ], + "x-ms-request-id": [ "60ee5271-42c8-42bd-ae3a-f34269049750" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181607Z:60ee5271-42c8-42bd-ae3a-f34269049750" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnK9IglBDY8fPJZ6/dJIdzmIpM3cpWaVDv5/WNGlqy3npxE3wzCM9iy2UzBbxl0v2K8iTzPcwUIYZ2npmmrOHDEDAkh4ZRpZrjupdcoySFFdYTkN6XslqLnZQjTYtF+ha/GFQu+f5wqCm5mjivyiy" ] + }, + "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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"name\":\"TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"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_d31939a3-dd47-4d7c-8238-8d82796cd765?api-version=2021-01-01+145": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1818" ], + "x-ms-client-request-id": [ "6f1fe36e-1e59-4b87-a52a-54021703517c" ], + "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": [ "8d0469e9-a9bc-4426-8ac3-17ad6a15cc20" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13921" ], + "x-ms-request-id": [ "8d0469e9-a9bc-4426-8ac3-17ad6a15cc20" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:8d0469e9-a9bc-4426-8ac3-17ad6a15cc20" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJWlo9jaaSgNoy3eHc++2Z2r7ytB/RcmAw7GcrfrYknRPobgJcpFjvC3HNnYq0c/RWFWY/FtZ+Tm8zrgWBETWrklKJlylNNVXn30SSmCozQyP5G65KloouE2Par5lmnaO4iVUJ2V4mg54gPRzzpwb" ] + }, + "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_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"name\":\"TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"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_d47b3132-f356-4b72-a8e9-f915289d622f?api-version=2021-01-01+146": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1819" ], + "x-ms-client-request-id": [ "4f823276-1aeb-42f2-b08b-2bbaa20b03af" ], + "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": [ "b0feecac-729d-4666-a3f2-94b333e33076" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13920" ], + "x-ms-request-id": [ "b0feecac-729d-4666-a3f2-94b333e33076" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:b0feecac-729d-4666-a3f2-94b333e33076" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi6No21qUmqQAA8cirds/NL/gFoMYPqoOR7Y2Sf07kgjVoMmUb+GgaulHc0fLtInl5NECPNgMghE6GdMUzZewVJZ1ycIfdGxBP0RhwY9AZpSaz55m9pziUgRPSopKAJfSbal2ItUqBdgSxNLYq6NJ" ] + }, + "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_d47b3132-f356-4b72-a8e9-f915289d622f\",\"name\":\"TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f\",\"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_d531b176-7bcc-4f7f-8188-07d44ac1c557?api-version=2021-01-01+147": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1820" ], + "x-ms-client-request-id": [ "956b2d8f-2782-4c0b-9266-054d96bd5f82" ], + "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": [ "6f4f39c2-464e-47e6-8537-d90fe0f703e9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13919" ], + "x-ms-request-id": [ "6f4f39c2-464e-47e6-8537-d90fe0f703e9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:6f4f39c2-464e-47e6-8537-d90fe0f703e9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvILHrXVZtxnr90hCDCpXm3f6O/yvqWT3nTvXvUjlRyA/VBp2l515+uUwEKnYmq2SDE8/16QgTnWuQ+5STHUygaKL40DLffjWYi1AlNYR0G/7UXZ07BgdAgopPBUqt2GNMp7Hum6P02E1wMj/jda69" ] + }, + "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_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"name\":\"TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"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_d6a38e0a-d969-4557-ae43-e65e667f66ed?api-version=2021-01-01+148": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1821" ], + "x-ms-client-request-id": [ "e021d5df-6328-4717-83e1-2dabe353d69b" ], + "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": [ "9abcc40c-0f56-4b6e-a7f7-a3d01da3f9f0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13918" ], + "x-ms-request-id": [ "9abcc40c-0f56-4b6e-a7f7-a3d01da3f9f0" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:9abcc40c-0f56-4b6e-a7f7-a3d01da3f9f0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvl67cgF58KSHwze7TU7+EEBz3BnS0m/81N/jqtKnjNUrO71iOEN+YK6JImVfje9O6zd75KCmdeLEI69mUZGFAweWxyyZ59xaUmiczRtwwXeF3S8jgX0Uw2EaLUEHB718xw2iqkaIcW6BP7EN8NJL3" ] + }, + "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_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"name\":\"TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"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_da03fa8e-7441-4644-9f24-afe801c60e0b?api-version=2021-01-01+149": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1822" ], + "x-ms-client-request-id": [ "26089dc4-aafd-45ba-a1ea-d3c81307b221" ], + "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": [ "a16ded33-33eb-4a09-b762-f9ac6a424959" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13917" ], + "x-ms-request-id": [ "a16ded33-33eb-4a09-b762-f9ac6a424959" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:a16ded33-33eb-4a09-b762-f9ac6a424959" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgeXAIHLI9bXYCs+dbRYFnauTf9sck4xePUuPhDKDae05OrpGOfF8teP5Ul9/84z/+CndmrBYGWIGQ9i+7GCTo8Q9zVNntfQyZKQNdAJ1Iu2nBKqTFXLot9x1jiWq8NMGH/UacUOZtCkTLUZEv3+o" ] + }, + "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_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"name\":\"TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"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_de07e417-8c58-4079-8494-7f903c93fb3b?api-version=2021-01-01+150": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1823" ], + "x-ms-client-request-id": [ "8e2888a1-bf78-4c07-b1c0-6a66dee5c984" ], + "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": [ "21298880-c8da-4e1f-957f-5f06a8856c0b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13916" ], + "x-ms-request-id": [ "21298880-c8da-4e1f-957f-5f06a8856c0b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181609Z:21298880-c8da-4e1f-957f-5f06a8856c0b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk7Wwd9nvK35LMHL11MAY8EpaW8YYDLRV8Qrs0+1VcEuu8E6JlyvHtFijAgX0+sSZoo0lw9No1JLNtYsCdgMKhixWd7A1uGnk0M5vu9z2RAr3Zcl0/Uu/Yr0BKA0HhSoMyPrrNjan/MtImXZiEk9s" ] + }, + "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_de07e417-8c58-4079-8494-7f903c93fb3b\",\"name\":\"TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b\",\"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_df78adb7-1839-4e19-aaca-ea67878453da?api-version=2021-01-01+151": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1824" ], + "x-ms-client-request-id": [ "3280804d-0d75-444e-821c-ec8022b9ae23" ], + "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": [ "1423fd24-31c4-48c7-b078-38a17dbe9420" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13915" ], + "x-ms-request-id": [ "1423fd24-31c4-48c7-b078-38a17dbe9420" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181609Z:1423fd24-31c4-48c7-b078-38a17dbe9420" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQOEO0ZtWRy/WgjELclxt8Gi0z81KGlvZ5l1BkMcl7Yix297IBPWEsbtR+IJ287Dp1CWKiCvKednEPI82OuoPq2XypDrLafIGwLzpa/p7wGIWjeI5SaWT1GJuGoRErLSXUGCBh8vqKHvCnwFbYarP" ] + }, + "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_df78adb7-1839-4e19-aaca-ea67878453da\",\"name\":\"TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da\",\"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_e0f19d84-0ff5-4b3f-9273-b77638180d99?api-version=2021-01-01+152": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1825" ], + "x-ms-client-request-id": [ "cc9181c7-fa3b-4310-a8e9-a4cd63a52ea3" ], + "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": [ "7504a487-f192-4774-893c-5d655789b186" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13914" ], + "x-ms-request-id": [ "7504a487-f192-4774-893c-5d655789b186" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181609Z:7504a487-f192-4774-893c-5d655789b186" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpiriMk/iVAvFDIugTkaaW5cCXQ+gWtgwVBBhxu0nQKaXRlQLiHyLx+2LNuUvJZEHG+oH1XBKQj+xV0+ehJiZw+eNXuRIuIUGIkeWiqh8iqcsNFJgqS3w5WH6MqK7x8NERT6gJDOhSY6xDJsC2bry" ] + }, + "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_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"name\":\"TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"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_e4cda532-e0cd-4861-af55-643fcfbc0f56?api-version=2021-01-01+153": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1826" ], + "x-ms-client-request-id": [ "b6696afc-12b1-436b-8196-d921822a3e91" ], + "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": [ "56757562-2d91-41ed-a61d-c5c14a20c915" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13913" ], + "x-ms-request-id": [ "56757562-2d91-41ed-a61d-c5c14a20c915" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181609Z:56757562-2d91-41ed-a61d-c5c14a20c915" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsCec7rx+WI/4iqv/nVkrWQigcjSUg3Bi+a+Wl0YHyZqzBznpDxZPUSolZSf2aC+tSGtOGUWjfvtJvGyTfAwco1wOCHdGx4IiNrUEojnG6twYGdyMf6x1Z3M4fweBv+UfGWUpjt7HNP+Z08VaUx90" ] + }, + "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_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"name\":\"TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"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_e6d6189e-ead1-4145-ade0-f8fc53493caa?api-version=2021-01-01+154": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1827" ], + "x-ms-client-request-id": [ "21f2ae98-f593-403a-a135-36a714df8327" ], + "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": [ "5504f41d-d8c9-4301-b7e5-40aaa6e3dd1a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13912" ], + "x-ms-request-id": [ "5504f41d-d8c9-4301-b7e5-40aaa6e3dd1a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:5504f41d-d8c9-4301-b7e5-40aaa6e3dd1a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/1yqwngI0/vyXh5xFv69cC4G4tkjUSQ39Y2wG9mb7PfwCsuvgF5bQj+WTl0LNK6lqc4YVeU1GSCszAhGSnciY5n/gIYxmfGhlXnsiQ/tegIcVVIPMp6IyQER6ktYbtNFBxHGWk4GURMXl4lGmv+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_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"name\":\"TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"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_e7148f69-198c-4061-9145-883d70ae5011?api-version=2021-01-01+155": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1828" ], + "x-ms-client-request-id": [ "b14e2508-3073-43e9-962b-5166b495f5e1" ], + "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": [ "b5683fff-8b62-4ec3-becf-ce0063585c6c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13911" ], + "x-ms-request-id": [ "b5683fff-8b62-4ec3-becf-ce0063585c6c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:b5683fff-8b62-4ec3-becf-ce0063585c6c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveVAjPZnHVgfwiEuGiB2Srfng3f/SON0OhUFQHxAA3Bb6t1tG5SdFC2uitNlYGtHIBjx2jPZhzCwVSpelZ/aNQ/jq91x15X08ck2MBMsHkt6ebSM0jZbb9WgjCXMV06mqqGfwugCRXd0/Lv1FPvlj" ] + }, + "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_e7148f69-198c-4061-9145-883d70ae5011\",\"name\":\"TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011\",\"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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5?api-version=2021-01-01+156": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1829" ], + "x-ms-client-request-id": [ "60918b7a-a9e9-4982-a9b2-bb4f393fd58e" ], + "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": [ "58b619d8-fa5d-4705-af12-851e23d38575" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13910" ], + "x-ms-request-id": [ "58b619d8-fa5d-4705-af12-851e23d38575" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:58b619d8-fa5d-4705-af12-851e23d38575" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdtbDWha9ZEnVoJkvjJsZ+e9w0htAT0o+VldmG+8etG/gfkIGOkVQQmV7PBSCNRsH4z4Tt0Ld6Z4xztUHPG0GZKzbykVYxwIW2b15YWe9czi9CbIV8roVvUAeWvN3ovRtLGmeKj0KCneyXVmTDtwN" ] + }, + "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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"name\":\"TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8?api-version=2021-01-01+157": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1830" ], + "x-ms-client-request-id": [ "8beb0337-0961-4f10-9812-818f56721702" ], + "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": [ "76a637f4-1db2-4f65-aea3-41e174661129" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13909" ], + "x-ms-request-id": [ "76a637f4-1db2-4f65-aea3-41e174661129" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:76a637f4-1db2-4f65-aea3-41e174661129" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCczrf0fVGLXT2oj4AEX8RwCKgd64ZaGpWGJUz/Y9jPljnYKQaxt03p7qacmtuFxukuYAkT0/XescS08IHBysNhF9v3/k5IXYobFnrubTRqYTns4Z3Wrtw4fqF5R5PbxMd7w+0tw4KEZDkZDxDBPK" ] + }, + "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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"name\":\"TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"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_e9c57286-08e8-4292-9050-d79ca8e7b865?api-version=2021-01-01+158": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1831" ], + "x-ms-client-request-id": [ "e54c6d1d-de1d-421c-beac-aec2bac43ed4" ], + "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": [ "2f6f05d6-0bdf-42de-b55a-3d8bd37abc61" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13908" ], + "x-ms-request-id": [ "2f6f05d6-0bdf-42de-b55a-3d8bd37abc61" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:2f6f05d6-0bdf-42de-b55a-3d8bd37abc61" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvr/IPweHWjeaWytrQELmSv4DanyOe00tXGOS6Y1LE1l4YeaO1xvv7fVYOvK6K03tnDMRxjrT6U66G7IpN2T7Jkj15BHOdL33Yu9BTcRqulHbWiIVnEuZnOdj1KAK8MQHfyc9Y3sMj92TUoS4cfkBA" ] + }, + "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_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"name\":\"TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"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_ea4c0f99-0d62-48e0-a317-d283da344fa4?api-version=2021-01-01+159": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1832" ], + "x-ms-client-request-id": [ "c7bb4bf2-8106-4304-8966-6c125df4fcca" ], + "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": [ "2bda5c6c-e74d-4b5c-b788-364ef1f7c792" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13907" ], + "x-ms-request-id": [ "2bda5c6c-e74d-4b5c-b788-364ef1f7c792" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:2bda5c6c-e74d-4b5c-b788-364ef1f7c792" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3WFlFEnkI3ulZ1JzttzZN7PTzG9OB/08yOcg0NvpbojE41GvHOQUNSnVjM57pvfzif6c95hyanx6OTm0haBF/p8lWtf7fvvElp7vGR8pU/pgQcSn+fk+Ebh2X4JEGY8hCbx33PlC+8kvdXsByDBZ" ] + }, + "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_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"name\":\"TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1?api-version=2021-01-01+160": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1833" ], + "x-ms-client-request-id": [ "4a7b6e24-84b2-4b80-96d9-4e17242adda1" ], + "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": [ "a66dbb6f-7ee8-4ed0-b817-e244bbb4e818" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13906" ], + "x-ms-request-id": [ "a66dbb6f-7ee8-4ed0-b817-e244bbb4e818" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:a66dbb6f-7ee8-4ed0-b817-e244bbb4e818" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhEHI8vaK7eYPg4Qdg1Xl4aUdNTtLmCEhk0gQIosxEv9P7lxsOP7cn6MLh+SomA2yE44/0ZLGDOufqImQz4mZMt79p05wPKlFYVvYK5VlnfJF1K1xSv7qwvWW/MvIGcREFPFCZFeAEUbK2uSE6qzM" ] + }, + "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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"name\":\"TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"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_f155d2bc-e9bd-49d2-a465-1da9fb320ede?api-version=2021-01-01+161": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1834" ], + "x-ms-client-request-id": [ "6f1a95a0-4b88-4f4d-b823-cc89e0d1cc66" ], + "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": [ "442322f3-5720-40a2-889e-8072e4bb865b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13905" ], + "x-ms-request-id": [ "442322f3-5720-40a2-889e-8072e4bb865b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:442322f3-5720-40a2-889e-8072e4bb865b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGtcw2J5qZ/nngkYSUtQc105Q19xqE5/4b0qWFU6qCQavHo6cVNnQMwma4W4C902QBoEGbZ0NEuboXjdaC7IPLkd3X1hfvg3c2vqqKstUo4JDKrAscCu71xI5OnDGgAHafdMHsl8u0qFrUDtnyMli" ] + }, + "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_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"name\":\"TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"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_f59a09e9-0228-4c09-980b-bd95ac5b3cde?api-version=2021-01-01+162": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1835" ], + "x-ms-client-request-id": [ "4238a894-a382-41aa-8008-9ce56f2b3f42" ], + "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": [ "db9ac67b-3c5e-4f55-a62e-b4e1637d8035" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13904" ], + "x-ms-request-id": [ "db9ac67b-3c5e-4f55-a62e-b4e1637d8035" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:db9ac67b-3c5e-4f55-a62e-b4e1637d8035" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCM3RHgyU7zmf9wZyIX+iQMu1h9p1DjBrII7Vm8omKyskUQMgetWTDKIO2+MBmL6UtdQk+uwzQ9AwrF2y2Mlgi59b4jcVMQ83XiljkRy0Fc3Okp4yy5IBgyCGUdW8w/7rqDza80THl1Z+X1++xnKs" ] + }, + "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_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"name\":\"TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7?api-version=2021-01-01+163": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1836" ], + "x-ms-client-request-id": [ "8508146c-01f1-4be9-b4ef-b09e57c207ec" ], + "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": [ "a1387077-e49a-4444-9870-ce40af2bb260" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13903" ], + "x-ms-request-id": [ "a1387077-e49a-4444-9870-ce40af2bb260" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:a1387077-e49a-4444-9870-ce40af2bb260" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyxmRmCwJ+Lw8civxrHN8mrRYIacA7Vh+XzXBM9dld+JZpZakzXa+d8o/6a5uFAtuooShOVtd0vVkpPzDA4j7z3IHSeJOWZmywMFX+XVmQxKOqNmZK8F8fNaQ9uCWgm1DCp8PTjd3I9g0hZpBz5Y/" ] + }, + "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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"name\":\"TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60?api-version=2021-01-01+164": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1837" ], + "x-ms-client-request-id": [ "1c2ad2d7-b0a1-4d98-9b3a-d43d0ca627a5" ], + "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": [ "08020031-1fa0-4eb2-9ad4-224838f7d5a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13902" ], + "x-ms-request-id": [ "08020031-1fa0-4eb2-9ad4-224838f7d5a1" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:08020031-1fa0-4eb2-9ad4-224838f7d5a1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyH0xkf8n9jZNyO2q6e8XeEuZUd4Siu+/FlNc5eXJTxzx2FdeEdCZS2fkxUC7GfzFVMcxa3XIoifkBc1UbXF6SabzudJPmnD4m3APYO7qj2Q/d7iL5gHFrN6fXoJNnccNcb6A86agPGYRex5ZJfod" ] + }, + "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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"name\":\"TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"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_faed7c92-6e9c-429b-bbbd-e7920e850090?api-version=2021-01-01+165": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1838" ], + "x-ms-client-request-id": [ "4e0cf012-6b7e-48ea-ab36-b8378f112494" ], + "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": [ "7710af4f-3f4e-4609-a668-fd070aa8b551" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13901" ], + "x-ms-request-id": [ "7710af4f-3f4e-4609-a668-fd070aa8b551" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:7710af4f-3f4e-4609-a668-fd070aa8b551" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwHCXtHcKfcjNxcX6htOcrJ7dfnSABlWGaZFTAFLpkWiPGRZsw7Z3Y/A3KnmDn8taRV5NVnRG9Ty9u3sJOJTf6s/1tqzxdQ+YkKv957XULjcUpI50SNR0ZjF9NiFgnzA9ee434ksUSEkbDOuqVaB1" ] + }, + "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_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"name\":\"TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"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_fb17ff30-a9e7-4182-9597-79b8c0fcd515?api-version=2021-01-01+166": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1839" ], + "x-ms-client-request-id": [ "36090f02-d6e9-4598-9303-ebc557572ce8" ], + "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": [ "2b159d57-4cc0-4ad3-9168-335e2487d969" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13900" ], + "x-ms-request-id": [ "2b159d57-4cc0-4ad3-9168-335e2487d969" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:2b159d57-4cc0-4ad3-9168-335e2487d969" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7Z4sFyfDs2ODx3Io40y2TDB0pK9N6xuO9M4/R3PPgDQMKjNiQ5TIfCuRQwW4ToFiVA49iGeagxOs9jNUz7avIlm/5lie3DzfElBhHcxjRqKCMg/VuLeHxEJqZwT/hhamFyZHt2pXjWQG9b8UgN/P" ] + }, + "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_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"name\":\"TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16?api-version=2021-01-01+167": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1840" ], + "x-ms-client-request-id": [ "4243adb3-805f-40ca-b5fc-4dff830e5db5" ], + "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": [ "859c692c-d207-41b8-a9a5-13303a42d7af" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13899" ], + "x-ms-request-id": [ "859c692c-d207-41b8-a9a5-13303a42d7af" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:859c692c-d207-41b8-a9a5-13303a42d7af" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpzKcWGiNF7XB2PNI5Ae9ZTL5vvrzJxew1Ts3ngi1RQfZT2ffsggxvg9Fsl/5suQgO5eOHLmFEF7c7alOreIP8RYSRgyWJq+m0DepatQxiVBC5S1BD3SLXbC9iRjri3nX4pPAlZaGyxv4gK5lfTUN" ] + }, + "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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"name\":\"TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99?api-version=2021-01-01+168": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99?api-version=2021-01-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1841" ], + "x-ms-client-request-id": [ "eb44465e-82d9-4504-8d1a-e812f32cd1b5" ], + "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": [ "252c81a1-1f91-4607-8c40-16213a852833" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13898" ], + "x-ms-request-id": [ "252c81a1-1f91-4607-8c40-16213a852833" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:252c81a1-1f91-4607-8c40-16213a852833" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/j0ECw9WQjCybnsU8XnVxHH18iAEDTF/4fTO6FKR8AHuMor8prUfUteIY3Rg+bWPxF7U16/ur0byUzEPVFepV5WNNxtbTfzI2IxpSzLhuzWVKltDCVrCP6agkYa9dTuVlbaD68X8LIefEqX4Wn9P" ] + }, + "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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"name\":\"TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"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_fef90e43-ace2-4282-ba88-18802cfbb0fb?api-version=2021-01-01+169": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb?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": [ "1842" ], + "x-ms-client-request-id": [ "27e0b171-87b4-4aaa-9064-c491fa7a520c" ], + "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": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "ac03e97b-0d98-426f-872e-9529bf588b6b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13897" ], + "x-ms-request-id": [ "ac03e97b-0d98-426f-872e-9529bf588b6b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181613Z:ac03e97b-0d98-426f-872e-9529bf588b6b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:13 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHaLZOvWIi7I3Vq2c21SSPLCr1tOgc6ydiJ5cbaZYCsbREbLnWcA9aUlWrulUdPJAfpZk+o3A3mdGxAdJD+K51iVqgR7lUEwctnNr3ZHHM49WYN2KYBmRGBX7ueeo9yotalTXrgAePj+AEYVTp1OI" ] + }, + "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_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"name\":\"TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"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" ] @@ -1230,39 +7239,34 @@ "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": [ "eec532e6-a8da-4bb4-aff0-f4b3424684a4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1118" ], + "x-ms-request-id": [ "eec532e6-a8da-4bb4-aff0-f4b3424684a4" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181613Z:eec532e6-a8da-4bb4-aff0-f4b3424684a4" ], "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": [ "Thu, 19 Aug 2021 18:16:13 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAaTxmBnG7rDLuJbhAVE/wY1Okc8cSQwuDgbVCDkXPwC3lJzGn8ZUMnb3NWXOHWDQgLZal5Rwi4wicCGDOI8XlI5YZ/+89CZYsEHUGH/PsI1i+m48vIaUyPqZglDvHDf7zzXJH/QT0bdVDk9SIwEE" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01+2": { + "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/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}", + "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": { - "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" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -1272,39 +7276,34 @@ "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": [ "d2f78603-d5d7-44c7-b005-a89a4bc55a6c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1117" ], + "x-ms-request-id": [ "d2f78603-d5d7-44c7-b005-a89a4bc55a6c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181614Z:d2f78603-d5d7-44c7-b005-a89a4bc55a6c" ], "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": [ "Thu, 19 Aug 2021 18:16:13 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBttD5WE9zmeTFyv2uu02lzBV9JaJurqut/b4pSkYIQU4Cd6bt5cuW2QipkopAsLmr6hgBGpWNIp+u4d6yTS2V+1B2myRq9eTEaYp+QAoTjcFh+e7QWGO8JswEgIVy93YokC9riPzd43/f80MPAyx" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01+3": { + "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/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}", + "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": { - "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" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -1314,39 +7313,34 @@ "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": [ "7ec91b2a-6d4a-4402-a4d2-dd74ae0538d8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1116" ], + "x-ms-request-id": [ "7ec91b2a-6d4a-4402-a4d2-dd74ae0538d8" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181614Z:7ec91b2a-6d4a-4402-a4d2-dd74ae0538d8" ], "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": [ "Thu, 19 Aug 2021 18:16:14 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcob8TICjIyEWhmn6rxWd6nZb1RzbNkJd1pjwPuGqFFQa/hCuHpTfG9LHQpT8/MD7d8fUHSjARFnWJ5o6vxqJUoZouMtlTzWTZWHma4MH9E8S0goEZ1ZPCYcLpKarE6947Hd0nHlccoAbeEYzzzwJ" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01+4": { + "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/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}", + "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": { - "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" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -1356,39 +7350,34 @@ "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": [ "22eca66a-bbc7-4efa-846e-21f3b6dc35dc" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1115" ], + "x-ms-request-id": [ "22eca66a-bbc7-4efa-846e-21f3b6dc35dc" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181615Z:22eca66a-bbc7-4efa-846e-21f3b6dc35dc" ], "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": [ "Thu, 19 Aug 2021 18:16:14 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhpLL0pEKYPpxgq+8Fmxwu/RNBgvcNIJw3K9he351VwGWrf5SJVNjLcqNbX9QVKHF5AqKQQpfbh6WwaHABz3mS4I1YE0C1e1Hbp/SmDLQbhbqX7TdDijOUfUbhVA1wW+GRQ+cSAOpdEHMoszdZubX" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01+5": { + "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/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}", + "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": { - "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" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { "Content-Type": [ "application/json" ], @@ -1398,39 +7387,34 @@ "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": [ "7f32f08a-ed2b-4a37-ab77-76f75aecd63c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1114" ], + "x-ms-request-id": [ "7f32f08a-ed2b-4a37-ab77-76f75aecd63c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181615Z:7f32f08a-ed2b-4a37-ab77-76f75aecd63c" ], "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": [ "Thu, 19 Aug 2021 18:16:15 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8r+8qDP7IYHbyfaWzJI2wFFDkpWA88DNiKehsa7dHbsozJKUJUG6m+cW2xBEwjoui/fmYlTfvRwKgbpSzcfcT9uBTUk/I9EOHu+oWFtYJqkx2nZ5+RfqR7YOYZayjEdtALlATE08GLEHIyvhfqla" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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]+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]+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/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}", + "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": [ "52" ], - "x-ms-client-request-id": [ "b1fa078b-39c7-4119-be26-4e1d56447c39" ], - "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" ], @@ -1440,39 +7424,34 @@ "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": [ "21c402a2-a96f-4219-be18-dbb6c946bbd5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1113" ], + "x-ms-request-id": [ "21c402a2-a96f-4219-be18-dbb6c946bbd5" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181615Z:21c402a2-a96f-4219-be18-dbb6c946bbd5" ], "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": [ "Thu, 19 Aug 2021 18:16:15 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnODf8QOrvoOs7B06G6VQfNfKMnoRCMnojBj/kFE4n8sGaG2PJg4rwbl5q43wrEoFm+B88Em5cFzz1wY8E6BZQIyDsIwaaAWyCMNsambtvxR9On5MhT4bOYed8xeJEzWL4WEaa4wtQ/8AeWw9dtx5" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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]+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]+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/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}", + "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": [ "54" ], - "x-ms-client-request-id": [ "d5d1894b-a389-49e1-b083-b459f269267c" ], - "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" ], @@ -1482,39 +7461,34 @@ "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": [ "ceb58df2-0775-4e35-94d8-277c157d624b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1112" ], + "x-ms-request-id": [ "ceb58df2-0775-4e35-94d8-277c157d624b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181616Z:ceb58df2-0775-4e35-94d8-277c157d624b" ], "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": [ "Thu, 19 Aug 2021 18:16:15 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUCq9OYa0TLgDm/WKvLq0r+9fVV867NieocknNIMlyP96QYFMXrO/sjl+cWPqRWjv3MlM2/pMhGAwHG23FmI9Es5uJhpGV0Xfjw4w/DL1vT4kjqWrT165XYItAuo9kYfTVHfvjhkOH3GVDrPnSn0P" ] }, "ContentHeaders": { - "Content-Length": [ "413" ], + "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/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/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]+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]+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/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}", + "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": [ "56" ], - "x-ms-client-request-id": [ "2824eb36-9436-4701-99b2-b47032ccbb20" ], - "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" ], @@ -1524,39 +7498,34 @@ "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": [ "0c4425f7-4265-41a2-9e0e-37b755f95785" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1111" ], + "x-ms-request-id": [ "0c4425f7-4265-41a2-9e0e-37b755f95785" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181616Z:0c4425f7-4265-41a2-9e0e-37b755f95785" ], "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": [ "Thu, 19 Aug 2021 18:16:16 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDgNtuuHG/VqtYo93egTB1J5S49bGub9aqZ594diu9UPdA4jRQcxEnpbqwwnqFM9fLgHKx5/o/oS5j/RGXfkhcmoUyMmjOJXAnwYLuW3BqAGXuvrjoG0fwTMlkiyG0LvQUBfNeZbJz3adynQkB3J5" ] }, "ContentHeaders": { - "Content-Length": [ "425" ], + "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/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/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]+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]+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/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}", + "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": [ "58" ], - "x-ms-client-request-id": [ "c330250a-9f06-4289-a2e3-d8b77ecf429a" ], - "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" ], @@ -1566,38 +7535,40 @@ "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": [ "2f1f7d58-ab81-42ce-904d-bc3a9d1e3113" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1110" ], + "x-ms-request-id": [ "2f1f7d58-ab81-42ce-904d-bc3a9d1e3113" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181617Z:2f1f7d58-ab81-42ce-904d-bc3a9d1e3113" ], "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": [ "Thu, 19 Aug 2021 18:16:16 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9IM5pvcu/ZB9rlwobUl125b+Hn+pUQokYmq3TYEMQVR13VWE5lm7aU04+XmvvyiQdI0YsNYFy3bornwnNlqygoCU+4O4ydbNtv/2IuWNfGdjKAkg0in9K8IyQLOq39dlXy60KNjdlcndPHrPePlu" ] }, "ContentHeaders": { - "Content-Length": [ "431" ], + "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/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/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]+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]+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://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota0?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "59" ], - "x-ms-client-request-id": [ "bda905b0-4d03-48ad-93ce-ff3d755e7173" ], + "x-ms-unique-id": [ "1861" ], + "x-ms-client-request-id": [ "a8339105-0f95-4a7e-bbb9-3c78c8017e2a" ], "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": { @@ -1606,37 +7577,39 @@ "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": [ "cd60fc35-21a1-4e41-824b-adb84daef11f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14931" ], + "x-ms-request-id": [ "cd60fc35-21a1-4e41-824b-adb84daef11f" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181617Z:cd60fc35-21a1-4e41-824b-adb84daef11f" ], "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": [ "Thu, 19 Aug 2021 18:16:16 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvztcatBeL+G9x1Bm3q+GbMXzmzo75eH+/qUF9Ut1jdyahXdTWPSk+RfyqvaTVHcd7hppv8JgjaeYkMgCP8O+sunD1cS8qPy9lD/ePiABsKvqtU3NhBkQYjYSKONQmXLA/H0J0FSh8lFWom48ZPIFV" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "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]+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://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota1?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "60" ], - "x-ms-client-request-id": [ "f733823c-7272-4be0-8934-1f67f9b888ae" ], + "x-ms-unique-id": [ "1862" ], + "x-ms-client-request-id": [ "097e4fc4-f279-406b-b4b9-9dad68853a62" ], "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": { @@ -1645,37 +7618,39 @@ "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": [ "86759985-8961-4748-802f-8369f0d34b44" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14930" ], + "x-ms-request-id": [ "86759985-8961-4748-802f-8369f0d34b44" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181617Z:86759985-8961-4748-802f-8369f0d34b44" ], "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": [ "Thu, 19 Aug 2021 18:16:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKowCB9p/YL3Y27aDYpwZb9l16wqvP0wtiwVPuf8n/3E/57JmbMs4llxFDXslA/m7/S69XdNFIq3fGSB2VDGKs0WBXGl23RE7isU/L74oKc8Fu9ZJZTj9Sqcn8MX6NX/XIrS0nHTpADcHiwnj+RfI" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "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]+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://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota2?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "61" ], - "x-ms-client-request-id": [ "d1f24ae2-92d2-4755-88e0-678efac4ba53" ], + "x-ms-unique-id": [ "1863" ], + "x-ms-client-request-id": [ "dbfc8573-064e-4557-ac85-6d56ff33448c" ], "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": { @@ -1684,37 +7659,39 @@ "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": [ "a9ea9e4c-04bc-4ac4-85ed-67a9787e356e" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14929" ], + "x-ms-request-id": [ "a9ea9e4c-04bc-4ac4-85ed-67a9787e356e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181618Z:a9ea9e4c-04bc-4ac4-85ed-67a9787e356e" ], "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": [ "Thu, 19 Aug 2021 18:16:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8Cl1pOAg5iugpBKJ+l9wCVzhKqXRN67R8v84WQZSjNU4xSoV7l1ABic86ySzylX5i8HKcHfi0fAaUxqZYPmFuGRHipsjzL5aEwc2fAa178E2NBhZShNBfX8MYQIOxDANj1CSl49rij4UYMuBRvez" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "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]+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://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota3?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "62" ], - "x-ms-client-request-id": [ "b636145c-6fd5-408a-8527-b9961a8a1bcd" ], + "x-ms-unique-id": [ "1864" ], + "x-ms-client-request-id": [ "e81f189f-c0b6-4e77-91cb-823bf4c12144" ], "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": { @@ -1723,37 +7700,39 @@ "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": [ "041455e9-9f75-417b-9dd9-3d0dcbcae7ed" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14928" ], + "x-ms-request-id": [ "041455e9-9f75-417b-9dd9-3d0dcbcae7ed" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181618Z:041455e9-9f75-417b-9dd9-3d0dcbcae7ed" ], "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": [ "Thu, 19 Aug 2021 18:16:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMozd9oD9nGTPx1ldkYXohBpYRpFSysq+TUhhs7YgNUoaFwq8W1cZfRVFH6zycgu6Llkx+zOlyWbev6v5vVseNmqMxEz5zC3tZ+dJxxllKYDJI6kxVKhWZCIVqHirmypdEpkkPHpy6gQ6H8RjT9qu" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "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]+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://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota4?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "63" ], - "x-ms-client-request-id": [ "f99d1332-25b9-43f7-bfad-9c3286c7b2ae" ], + "x-ms-unique-id": [ "1865" ], + "x-ms-client-request-id": [ "a79782b5-d550-4299-9121-a45160464fbb" ], "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": { @@ -1762,37 +7741,39 @@ "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": [ "1295fe65-6da2-4b60-91f8-bb8896ac7e65" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14927" ], + "x-ms-request-id": [ "1295fe65-6da2-4b60-91f8-bb8896ac7e65" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181618Z:1295fe65-6da2-4b60-91f8-bb8896ac7e65" ], "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": [ "Thu, 19 Aug 2021 18:16:17 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRX2yuF9LSFotOl2wK/mHGUkWLNDPZCMTi5nm/MJ7eXIJr6X8VQegtwYsZFNOYQErp4xga+0zMgYIYDBiBjjoqMVVMs8gCSeRqwJWQa1Qc5wexZMDhFM5Mr2+Dk45OEMgD1Vqm8ZjKm4KflqLnTYF" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "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]+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://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota5?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "64" ], - "x-ms-client-request-id": [ "e977b443-acb0-442e-8c47-a6393939628f" ], + "x-ms-unique-id": [ "1866" ], + "x-ms-client-request-id": [ "845b1b1e-8bd1-4159-9404-37cd6ededda7" ], "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": { @@ -1801,37 +7782,121 @@ "Response": { "StatusCode": 200, "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "17348384-2fe0-4982-9580-18ca53da0853" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14926" ], + "x-ms-request-id": [ "17348384-2fe0-4982-9580-18ca53da0853" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181618Z:17348384-2fe0-4982-9580-18ca53da0853" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7se7fyd9/qh3WuR5NKOlsSCoUWha/5b9BlbBAhBRd6XyTS/bHRyVSzSGoeOe1Pno9zYceTz0fj0dfVLOh1yfBGBV7b3uE4dG2MiaZ7+vUEQNqDlCZ1SxwBIdEF8U3/SZMZgBjyMww05Qava47fmp" ] + }, + "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-n25r0507.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": [ "1867" ], + "x-ms-client-request-id": [ "c5f0af75-76f5-49e8-b235-a709b7f9f5c6" ], + "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": [ "543e20e5-61a9-4d52-9cd6-d2e6d5f5937a" ], + "x-ms-correlation-request-id": [ "8373c11b-695a-46e8-a2f1-9ccaaf59aba9" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14925" ], + "x-ms-request-id": [ "8373c11b-695a-46e8-a2f1-9ccaaf59aba9" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181619Z:8373c11b-695a-46e8-a2f1-9ccaaf59aba9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:18 GMT" ], "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" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv872BytAhYBVIORe8gn675/T5PvqvcRvz5qEU4MgVbBD040X6q45hQu+4wIWiwLDRbJHDkPgH42fCTMcMB3ikTHnXc9ZsabNoh104o+m6394HiN6qzFfKCH9tSJhE2cMUQVD9o/8bRI8GMCj9O55O" ] + }, + "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-n25r0507.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": [ "1868" ], + "x-ms-client-request-id": [ "6a0951bd-4d00-4e22-9595-e9f516e295ff" ], + "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": [ "af89b4fb-7df4-40fd-9c81-f6b26555967e" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14924" ], + "x-ms-request-id": [ "af89b4fb-7df4-40fd-9c81-f6b26555967e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181619Z:af89b4fb-7df4-40fd-9c81-f6b26555967e" ], "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": [ "Thu, 19 Aug 2021 18:16:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOuXZ/hDN+aJh3pGaznpJDZBSYEqExeum5mIFGEX+dTU2vcEfZcMY9QY9tj2yUMml3acLf7owVRt146Tw5c5DSRYepltOdZ4kHtgn1OOpcNHcagPkRtyYleVeNliLUyGF7jzNCEZ2b/tvTW5+h9pa" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "0" ], + "Expires": [ "-1" ] }, - "Content": null + "Content": null, + "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]+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://management.azure.com/subscriptions/74c72bdc-d917-431c-a377-8ca80f4238a0/providers/Microsoft.Compute.Admin/locations/northwest/quotas/testQuota6?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "65" ], - "x-ms-client-request-id": [ "89627910-8cbf-4dda-b481-4ef295c0ab11" ], + "x-ms-unique-id": [ "1869" ], + "x-ms-client-request-id": [ "4ecbaa43-6f3f-40bf-a1a5-ecd6bb06f6c7" ], "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": { @@ -1840,278 +7905,372 @@ "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": [ "fcbd39b9-4cbb-4442-b583-2b99ef90abeb" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14923" ], + "x-ms-request-id": [ "fcbd39b9-4cbb-4442-b583-2b99ef90abeb" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181619Z:fcbd39b9-4cbb-4442-b583-2b99ef90abeb" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:18 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+ZOatJOHl3k5cZvwidgd8FnFj27aPW7C575ahZtNV3T8yPaeWXSG0ZrWd25EXB1KJk8cmummukkTr9/atDHOZggpalwHdhMVzr36kmZ8DgxcaDLhHIuDsRTWi3B15p921LXCjYYnTbxstk0IyWJR" ] + }, + "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": [ "51c03d59-5d84-412d-bc77-30cdf7b3d701" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1109" ], + "x-ms-request-id": [ "51c03d59-5d84-412d-bc77-30cdf7b3d701" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181620Z:51c03d59-5d84-412d-bc77-30cdf7b3d701" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJsx9CnkPor8mVwG8ZNfWnaPaNwKB953yhN2XIjhZDXe3J+CjNnw/jaUm9u/m5Io1sWsCKgsoRbkWN0bpa9nVZEGf8C3D80ToVZGwlm2oe4o90j54tfa7ZAi2ufV6BbhtiuVSxLJvJBVx9+nLW+Iv" ] + }, + "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": [ "8c3f7d4f-84e4-432e-a4af-430d1a045347" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1108" ], + "x-ms-request-id": [ "8c3f7d4f-84e4-432e-a4af-430d1a045347" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181620Z:8c3f7d4f-84e4-432e-a4af-430d1a045347" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 18:16:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnAibmrNTK0wZ4h+y5xiXLbZaQkArHVJ7wDGn4DJyPFZhMUrLSZ7LnbfO7+/svFhPszOfcZBqYUHwORh8Y61h/hj5iC9W77BOj9Lr/feK7CWnlxhXvzu5vnpahFdemokEGLnP3NggkRyHIi1JYukS" ] + }, + "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": [ "8170ae8e-411f-43bf-babf-117bfaa606f3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1107" ], + "x-ms-request-id": [ "8170ae8e-411f-43bf-babf-117bfaa606f3" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181620Z:8170ae8e-411f-43bf-babf-117bfaa606f3" ], "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": [ "Thu, 19 Aug 2021 18:16:19 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkvBhr8RYPEgCUuVWoLWFSFvIRPEMp9LM5H1zVkKWDwGGTpd29oWDwt71Nkq9bY98xAaDGEZr3Ngj1mXC/JNO7wW9xmWk1Ym1/DAS3d3atkWZL2NNwd/Cbd+IpIPSyWhzmolXVDOjQOPMazAiyLy6" ] }, "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/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+$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]+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": "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", - "Content": null, + "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": { - "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "f56a6702-dfe5-4bd7-b785-29def2e931df" ], - "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": 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": [ "f1486ea4-3469-44eb-b460-f4b19d2a3767" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1106" ], + "x-ms-request-id": [ "f1486ea4-3469-44eb-b460-f4b19d2a3767" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181621Z:f1486ea4-3469-44eb-b460-f4b19d2a3767" ], "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": [ "Thu, 19 Aug 2021 18:16:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8pwGx8d+qzLH5DmBRdTzCIUdJjwgM1R6IfPC+2ichoTByETSEuqSOLBV+iXlmgULlBmf70j1BPzwodZg80tqlgw/j1k8fU1rfl7FjCjJKWU9e1QJiEFBqyjJ+Eq1fgMWs0Jz3Fvvk0Dk8XHsvcMJ" ] }, "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/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+$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]+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": "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", - "Content": null, + "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": { - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "e003f71c-4c15-4eff-bc93-fbd2753a4a80" ], - "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": 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": [ "312b12b1-036c-48cd-af26-f3b278a72108" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1105" ], + "x-ms-request-id": [ "312b12b1-036c-48cd-af26-f3b278a72108" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181621Z:312b12b1-036c-48cd-af26-f3b278a72108" ], "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": [ "Thu, 19 Aug 2021 18:16:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwDr3jjkwf05Y6HmLOuo3R/S/GWSlg6JKqBwVY8utJuL+RYSdjUWMAYb0803ahMXBlEVtpiG0vx5W8TsqWHvq4StC60ToltJDs47+He4sx+20jqH7G0gDHi6F26wQ32TU+mlbsjm6BdYu9j+dE5An" ] }, "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": [ "31305841-7466-4709-88a6-fdc9361155c3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1104" ], + "x-ms-request-id": [ "31305841-7466-4709-88a6-fdc9361155c3" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181621Z:31305841-7466-4709-88a6-fdc9361155c3" ], "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": [ "Thu, 19 Aug 2021 18:16:21 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLrHtmtSMQvw4Q9x5ZSoSHLVm8RXqC/2UEgYBOGN/sS3aUwPUfTraCYfbT2U7Bywev4IPk2SympgKp+n6x0dEh7eDVIVqc7bn9GqO+M3fbRmXgLfmTauuctKP6Lo7kh7zXAGU3amhNWxE2TnQL60l" ] }, "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": [ "0a5b9344-222f-44a5-85ca-5bbbe3f3a8b7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1103" ], + "x-ms-request-id": [ "0a5b9344-222f-44a5-85ca-5bbbe3f3a8b7" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181622Z:0a5b9344-222f-44a5-85ca-5bbbe3f3a8b7" ], "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": [ "Thu, 19 Aug 2021 18:16:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/SsmaFxpYSov0J07xy/Cs3ZUEbtn0hr8FD7KN4qfQvuD7kU9K/11uiEFLcwVHFj+a38SZgittFK/xX0nLY2vnlXQJPby3CB4TSqj4eCYZdOkZPBhZvbM+tT6dc3XHaoWOu+mb/HlN4nX+P9HZcdE" ] }, "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": [ "da38521e-1967-4a59-b922-489f851a36a7" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1102" ], + "x-ms-request-id": [ "da38521e-1967-4a59-b922-489f851a36a7" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181622Z:da38521e-1967-4a59-b922-489f851a36a7" ], "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": [ "Thu, 19 Aug 2021 18:16:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvK3str+qKCpFuiMMoQLUhi4tsM7LT6UgJVWyJLyRgQNrDucQjRje56a6sL+VR0FVi26xQ4dOYKbZQS92MeAxGxByc1Y8aH7P+MoBXJoUoS/HczcBTAydUeFpfaFQlKKTpSTEEJ6A30ExF2sU0MAQz" ] }, "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": [ "316598e6-9828-4771-aff7-4c86768b391a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1101" ], + "x-ms-request-id": [ "316598e6-9828-4771-aff7-4c86768b391a" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181623Z:316598e6-9828-4771-aff7-4c86768b391a" ], "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": [ "Thu, 19 Aug 2021 18:16:22 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/c27zYvbLPfCixjgoWVj7sDy4lzEXvpi9Em1TbOv7gUncnf+N4RIHsCSFd7OPMcgobK96EjSSbgWfdE3An+wF6+YVpwPbN55PV+XkapW6FebRMckKnYPFMpBlhZzxr9OaJELR0wWMwDNpaPslOwJ" ] }, "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-n25r0507.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": [ "1888" ], + "x-ms-client-request-id": [ "e304d80d-3136-4df3-9218-860d9587f69d" ], + "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 +8279,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": [ "d3f3950f-3a47-4083-9e57-cd2384d7c926" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14922" ], + "x-ms-request-id": [ "d3f3950f-3a47-4083-9e57-cd2384d7c926" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181623Z:d3f3950f-3a47-4083-9e57-cd2384d7c926" ], "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": [ "Thu, 19 Aug 2021 18:16:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0xIZru7eJ7Yymasvqll80ruARyRIyKNoKtggXzcM5CzbRTaBNW6dn2F9s6y/U6Qp1hg6zaixmxZB5SBePph8Z/cAvaPYsSSL+0ge83/oEc2W/YqaHOmB+of2US+c1ATGY+2V+lGg8IMmKjiODXsV" ] }, "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-n25r0507.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": [ "1889" ], + "x-ms-client-request-id": [ "a94744d1-8d24-4f8b-a4b8-e74682ecab9d" ], + "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": [ "7e424d5b-3f11-49fb-8609-4ee35f0fa6fa" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14921" ], + "x-ms-request-id": [ "7e424d5b-3f11-49fb-8609-4ee35f0fa6fa" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181623Z:7e424d5b-3f11-49fb-8609-4ee35f0fa6fa" ], "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": [ "Thu, 19 Aug 2021 18:16:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvThdC2/mKR2rYRNTaZ17za91Ekvo4/HkZElqwQWNrkr48WlZ2A3PDwk21nVunNebyJnLe0UBnjzIlt9Q30QftiEIVa5wMx3jEppUvuPTtIqv4+Z2yZHP/+fuAylFuXkBVzm4yDdxDzmy+zFnj3ldR" ] }, "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-n25r0507.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": [ "1890" ], + "x-ms-client-request-id": [ "961b1433-8e5a-4b45-820e-53ba6db3254d" ], + "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 +8361,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": [ "4089d149-f3ab-42d2-b325-2b31b1feffaf" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14920" ], + "x-ms-request-id": [ "4089d149-f3ab-42d2-b325-2b31b1feffaf" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181624Z:4089d149-f3ab-42d2-b325-2b31b1feffaf" ], "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": [ "Thu, 19 Aug 2021 18:16:23 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPhYFJMNbyfYI0dKv7q/t1YqFdXMqFYIJZyrXKbknNXMI5sUmmtAyummGX/ex39PgCWhIh0XCSVRhP1eiVT1U+27WQKom7k/66slCQbPswyoqa8AF0Jd2thJaLemDfKX6Q1+pJn1kdVeEMFVtpX+x" ] }, "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-n25r0507.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": [ "1891" ], + "x-ms-client-request-id": [ "6fb4e142-8bee-4c8d-820d-6b7a776ee85c" ], + "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": [ "cf8226b4-5d58-4d65-af86-17af2c6f47e5" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14919" ], + "x-ms-request-id": [ "cf8226b4-5d58-4d65-af86-17af2c6f47e5" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181624Z:cf8226b4-5d58-4d65-af86-17af2c6f47e5" ], "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": [ "Thu, 19 Aug 2021 18:16:24 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv21NcoAETcPXtkaa3uYmWqKOVwuk/FLBLpMoh9jjziCmHUqwDExy7H6NMnnT/us4/Lp7JhTZedWEcGCHcHnCX5gI4X2DM4/sTvIiJ2rsSmj50aKRA6wyb7qShYgERrzjvOLf1PxTdIptK0FIYxG4D" ] }, "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-n25r0507.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": [ "1892" ], + "x-ms-client-request-id": [ "2da03c07-e60a-4743-93b5-addb868e1bdc" ], + "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 +8443,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": [ "a10b294a-7dff-4672-9614-6b85314bcc18" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14918" ], + "x-ms-request-id": [ "a10b294a-7dff-4672-9614-6b85314bcc18" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181624Z:a10b294a-7dff-4672-9614-6b85314bcc18" ], "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": [ "Thu, 19 Aug 2021 18:16:24 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgpotJ95Pj/+GFp5AxhMkAcDsXxeirTc5rmpwvQ+l5L8UkwKiy1CN4Ci76HtVoeZi/DnP/AxkhpkR6Ju2Cq61RWYKT60eizwJf907Xrb9v8lbFGX1wJnpPvWpbI0fRVuHvHGgCjHepTM/FhL9q2ng" ] }, "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-n25r0507.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": [ "1893" ], + "x-ms-client-request-id": [ "bad9b6a1-99da-40f8-9885-97f32765a2e9" ], + "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": [ "dad63052-e0bd-42d7-8519-f69bc9ac16a7" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14917" ], + "x-ms-request-id": [ "dad63052-e0bd-42d7-8519-f69bc9ac16a7" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181625Z:dad63052-e0bd-42d7-8519-f69bc9ac16a7" ], "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": [ "Thu, 19 Aug 2021 18:16:24 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvudrDFhoq+QYUYXh3uZ4+0//+8C0Qdo5ogNCkPyt55zvnML51LIqlm7PIOXOTB1nZwEXIc0tl23bgwI2NK9PwIfLHZcBdRmBzLr49WeyJFJq5TqnsbBCxP1sAn62afEXVhm741u/ew6b7Gs7tO7Qj" ] }, "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-n25r0507.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": [ "1894" ], + "x-ms-client-request-id": [ "f2220837-ea62-4ff8-943e-535592f82e43" ], "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 +8525,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": [ "2de0b441-a9aa-43ec-908e-d52003a11766" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14916" ], + "x-ms-request-id": [ "2de0b441-a9aa-43ec-908e-d52003a11766" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181625Z:2de0b441-a9aa-43ec-908e-d52003a11766" ], "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": [ "Thu, 19 Aug 2021 18:16:24 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvW7oZrUOftw2qTtZRjtQpLA3KYLvkBOxWXc+UmzqhG3xUfq9dpFu5X7Ee44DBm2A0UtaY+vfbEA7SvnT5PeZz1ovFovjEDZZqGxJdTem+PMNeONuUQjyIO7kEqMmJDE4HL2Y9bj3mUbKxWORvE9nb" ] }, "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-n25r0507.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": [ "1895" ], + "x-ms-client-request-id": [ "30cc5f34-40c7-4146-97b3-e15ad9e8bca4" ], "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 +8566,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": [ "37698fc5-a93f-416d-9f56-c86751c9e0c0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14915" ], + "x-ms-request-id": [ "37698fc5-a93f-416d-9f56-c86751c9e0c0" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181625Z:37698fc5-a93f-416d-9f56-c86751c9e0c0" ], "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": [ "Thu, 19 Aug 2021 18:16:25 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkwBGi7n7JGtt9uPEV9jwT5Nh9eoFbjNbRQnCj/pX8OtvM80/VWcw/kSsggnXfstjHn1x8daG55apc9eYNGzLB0i7Lcee1EcF/7c7zUENd679GZK9RVwvuvljqfNMxrsJ01rQ2CqTGdAPYhffaWvz" ] }, "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-n25r0507.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": [ "1896" ], + "x-ms-client-request-id": [ "88d8986d-9ca5-49b9-be4e-0463fc90b211" ], "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 +8607,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": [ "2300d820-31a1-425a-b8ae-4df013f9a4eb" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14914" ], + "x-ms-request-id": [ "2300d820-31a1-425a-b8ae-4df013f9a4eb" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181625Z:2300d820-31a1-425a-b8ae-4df013f9a4eb" ], "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": [ "Thu, 19 Aug 2021 18:16:25 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8W43CK0l6iddqsqMjgHdmwFxtgRK3i/3xXYNoPsnExSiLfrTXKFg/196QBfWnBi3LaxTb9QIxmYWSxNnufcyY10lzL9A/0bmed3AwXCiIrW2dKHBhQghTnEA55SH4ChmauuG2FAZYct04aLc4fHb" ] }, "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-n25r0507.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": [ "1910" ], + "x-ms-client-request-id": [ "63377bf3-d12d-48dc-8d63-26321615853e" ], + "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": [ "f01df268-fc4e-4f15-a67f-7ec27aff17ad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13865" ], + "x-ms-request-id": [ "f01df268-fc4e-4f15-a67f-7ec27aff17ad" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181628Z:f01df268-fc4e-4f15-a67f-7ec27aff17ad" ], "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": [ "Thu, 19 Aug 2021 18:16:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHwsXoxb+FTg4LpFY5ZmfxnJEjvc67jx39CvJ8tnUgjrpgZHnT16W5j7hjwrs1tHNY/vVpTzngzo/XWO/3lV0jSE0hY18g7JXOZgyV2O6B6LeBtg57c+daqQ2jl2rHIhEDiSXDqnhvVVAlIJIwy+E" ] }, "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": [ "bdfe0343-943d-45e1-8ba9-2f81d2805565" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1100" ], + "x-ms-request-id": [ "bdfe0343-943d-45e1-8ba9-2f81d2805565" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181628Z:bdfe0343-943d-45e1-8ba9-2f81d2805565" ], "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": [ "Thu, 19 Aug 2021 18:16:27 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfI8BZspO8TTnJT6j3Zmn7VEZsH3jxjL8exH8XdsWfdZt0F60Qabv9km6GgQrK0n3WR1YmMyp7h9qwvw136S42v77HJeIA2RLgOiKzMunBkubQRUbEMZ8kFYpzqhasjZiPQItUEbopgZlcwuYB0DR" ] }, "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": [ "0a503f94-6421-4610-bad3-71a3beb26a92" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1099" ], + "x-ms-request-id": [ "0a503f94-6421-4610-bad3-71a3beb26a92" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181628Z:0a503f94-6421-4610-bad3-71a3beb26a92" ], "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": [ "Thu, 19 Aug 2021 18:16:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGnJb7xkM6sU7OBJYV9RipngD/C2U5gX2Wop4C5MC9uAPy06cUI8KeRvPI2V1qcaAviUWDGjNLl+QcfKi3HOI6vBQWUfhUy5elFPoBHF+bS+UQnkSa44UeTV6zubd4Rpg6E5/Zhhqii+ZN3CGCAyF" ] }, "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-n25r0507.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": [ "1915" ], + "x-ms-client-request-id": [ "72ca4f90-2caf-44ec-8c11-8e0f8feca602" ], "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 +8764,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": [ "847c21a9-4a00-46c1-97b0-b8cd893dab75" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13862" ], + "x-ms-request-id": [ "847c21a9-4a00-46c1-97b0-b8cd893dab75" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181629Z:847c21a9-4a00-46c1-97b0-b8cd893dab75" ], "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": [ "Thu, 19 Aug 2021 18:16:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkMy7IWg07sxsEE2R1vmBDe4oVAq20XxGQpuhZ3AUz2UH40LBvziSGf0Rf7h33A1vtqLx5CRQbVix4zx0TQXZVHxI0s8KXB4cyG1BlfnerO7UfLbdf6i6dPcpw1IKKiAzo4qJzyZHk8TkOhF/zMYA" ] }, "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": [ "af04c050-83dd-4178-90bb-bc3cee1d3f50" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1098" ], + "x-ms-request-id": [ "af04c050-83dd-4178-90bb-bc3cee1d3f50" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181629Z:af04c050-83dd-4178-90bb-bc3cee1d3f50" ], "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": [ "Thu, 19 Aug 2021 18:16:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnRvyARvV40e1HVxvictfA2e54vzv95tBaa8UE+hdnGWzEjDe9xd4qvQX4rs+IfnGH2bPmHSRRSVm5BkISH5VimUn5hiC6OBDKXypgC/cCTjzs3A3XbGGqBdlTi9jmn21KTk3u1BAzHL7xAiIE0SG" ] }, "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-n25r0507.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": [ "1917" ], + "x-ms-client-request-id": [ "a1bf7c59-9187-492e-a47c-9beceff946e0" ], + "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 +8843,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": [ "b1d8fe60-87c5-44db-aece-acabbf2dfe44" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14913" ], + "x-ms-request-id": [ "b1d8fe60-87c5-44db-aece-acabbf2dfe44" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181629Z:b1d8fe60-87c5-44db-aece-acabbf2dfe44" ], "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": [ "Thu, 19 Aug 2021 18:16:28 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT3r6F5fCXyUE9XWg9kkjdE3Bo+UgeW+DyPGgNyQoi3Kl3nL8gGtDYDWju0XZL1Hhmyr+sSq2S8eXkc+u9v9PRAFkNK3llSlJDofJGC7xKi7B6G4lqnog5ovvmeCNeLUW6pvj2lf6t5GDII+Hb/dD" ] }, "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": [ "dbf222f0-90b4-497a-9a07-bfc3861641b6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1097" ], + "x-ms-request-id": [ "dbf222f0-90b4-497a-9a07-bfc3861641b6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181630Z:dbf222f0-90b4-497a-9a07-bfc3861641b6" ], "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": [ "Thu, 19 Aug 2021 18:16:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2+iH3vX27cM7pRNB2bD9lP4xNHKfYvEIijjMfPaaD5MXGzwRua3K2+UOV25BLVsb10r4aRgS43TWsSRgk0RIIbef0hYGRHC+o8Ak+NUCSfbCTs540hlyM6nffcIvKBigK23CrizjPHrKXNB841MZ" ] }, "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-n25r0507.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": [ "1920" ], + "x-ms-client-request-id": [ "6c424645-4725-4021-a3e1-aa1045aed7a6" ], "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 +8921,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": [ "dafb7fb7-fd0d-42b6-8d1c-86e97b90a741" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13860" ], + "x-ms-request-id": [ "dafb7fb7-fd0d-42b6-8d1c-86e97b90a741" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181630Z:dafb7fb7-fd0d-42b6-8d1c-86e97b90a741" ], "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": [ "Thu, 19 Aug 2021 18:16:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvsZOZpKY8V3FQbpSfQTYCT1tn5fjrDtwO9LBA4vtRUmnMIeLRmHnrtLaXwqgHbgTGA1dDr/yW+m1IaZ6Zc0ULfe7EJyFyQz+KV6SmrakYiGvbRiIOh8JBkq2pcb6ZcN0tjq5dlnmxIut0HekowkZ" ] }, "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": [ "51233257-acbb-4a4c-b643-037d55b050df" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1096" ], + "x-ms-request-id": [ "51233257-acbb-4a4c-b643-037d55b050df" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181630Z:51233257-acbb-4a4c-b643-037d55b050df" ], "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": [ "Thu, 19 Aug 2021 18:16:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvc+Nqg2gV57Az9tmMc2jxg3PqWvmgjGPJfOG1JTcKczskcGzMBv5CgLV1js7XXESq98tBIRz+uFmc9zqAZHxu9MobyuQHVm+1r2yYxDcdt7fKLfu5xbUkbyu8QBQ0WyzX4v2cCXA4LKqdXiuywBIH" ] }, "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-n25r0507.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": [ "1922" ], + "x-ms-client-request-id": [ "71c30a53-c5b1-4cce-b4d5-8087744657a9" ], "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 +9000,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": [ "5f8120ba-f211-40ab-a3be-4c9d8fca372c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14912" ], + "x-ms-request-id": [ "5f8120ba-f211-40ab-a3be-4c9d8fca372c" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181631Z:5f8120ba-f211-40ab-a3be-4c9d8fca372c" ], "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": [ "Thu, 19 Aug 2021 18:16:30 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzdeHcraQ5jAD3QTSvwRweSxxCDqH07djQRsenjdpHHe4n+2oawFUHw/hO2YY1mb2pXW+ho04vIoOynqIZkGajD/RHyERNDRIlFc3wDkWZH50NmyQHeGY9IaW8Ag8BUaEX3QQoYSDm/LQf5rstb+Z" ] }, "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-AzsDisk.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json index ce119421..9110db50 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json @@ -1,298 +1,45 @@ { - "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]+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-04-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-n25r0507.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-04-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "11" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], + "x-ms-unique-id": [ "1923" ], + "x-ms-client-request-id": [ "73a83527-bdfb-44c7-9f45-ac8b1173266e" ], + "CommandName": [ "Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "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": [ "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-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" ], - "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" ] - }, - "ContentHeaders": { - "Content-Length": [ "7881" ], - "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}" - } - }, - "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": { - "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", - "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" ], - "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-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?sharePath=\\\\SU1FileServer.azs-long02-int.selfhost.corp.microsoft.com\\SU1_ObjStore_4&api-version=2021-04-01+4": { - "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", - "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" ], - "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-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:01 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "3508" ], - "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}" - } - }, - "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": { - "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", - "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" ], - "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-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:01 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "896" ], - "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}" - } - }, - "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": { - "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", - "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" ], - "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-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:01 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]+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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "17" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, + "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": [ "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": [ "9e3cf7f7-bb71-4820-bb4b-e209cc84e6ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13859" ], + "x-ms-request-id": [ "9e3cf7f7-bb71-4820-bb4b-e209cc84e6ca" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181631Z:9e3cf7f7-bb71-4820-bb4b-e209cc84e6ca" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:02 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "801" ], - "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}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "18" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "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" ], + "Date": [ "Thu, 19 Aug 2021 18:16:31 GMT" ], "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-Content-Type-Options": [ "nosniff" ], - "Date": [ "Fri, 14 Feb 2020 17:46:02 GMT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBWLnOxO+4L9bvWrkoF+m9Vsv8Yw77aJe2hBUZHEv+dvflYs0xzurKxZz8dY0BEGZRdurmopgYCEDg6zcgfPFWF+L7ABK5KeYHQtQC2hij+vLMJPPINI27rAVw5YL5Bc1T3M0MsHAzQTArnaii1Ac" ] }, "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..195c87a0 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-04-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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-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": [ "1924" ], + "x-ms-client-request-id": [ "a8577f93-ef80-4031-9654-e62df2feb494" ], "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,145 +23,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": [ "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": [ "05556089-0419-4afc-909d-3c92314bd49e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13858" ], + "x-ms-request-id": [ "05556089-0419-4afc-909d-3c92314bd49e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T181631Z:05556089-0419-4afc-909d-3c92314bd49e" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 10:34:43 GMT" ], + "Date": [ "Thu, 19 Aug 2021 18:16:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRSSSEu0Xqs3v3NjrWx9HnzlUFS2N2gHAaf5GRmQirfB8QCAKqg1XkhiSlmgPBoFUb3hAHglaR10UOMMPfpCKtlLC4RofuWnSW2+yiPR+SzkE2xv1yPSGSIACp7tPqlQGoDmJ/UD2M3uGtB/gL2ng" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvB+fil6cQpDIbXivKu+0J1k7Hbj/z+lmc+T4yw037/3foWeN39WjH0eS0h1I1D0FM+Kzf3dtQZmTzwuegUZkIWTNi/t/kiHra5j75VHrXpJa0mtVB+47a0Zyu7nuFlMs284YBZLShUFDhx/JXLVOS" ] }, "ContentHeaders": { - "Content-Length": [ "5969" ], + "Content-Length": [ "19" ], "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}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "144" ], - "x-ms-client-request-id": [ "9f7fe7a4-ed2f-484b-9801-a335af8cec37" ], - "CommandName": [ "Get-AzsDiskMigrationJob" ], - "FullCommandName": [ "Get-AzsDiskMigrationJob_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "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-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 10:34:43 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXhz3NDKG1VZUuzIBx49DkILM7UtyPFLUrnhk/ZQ9EONWsc5B8Hkiw6tvaFhe0B00rjDEfZAlzHKaDfWeiNnqozWSKx34idSSNtywnYJUmuHGKkDwTw8hF2yKoNW7LuZlKSn5wkTKGeBpnjseP6W8" ] - }, - "ContentHeaders": { - "Content-Length": [ "5969" ], - "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}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "145" ], - "x-ms-client-request-id": [ "78eecb52-f88d-4f06-a1c2-2a53a5619472" ], - "CommandName": [ "Get-AzsDiskMigrationJob" ], - "FullCommandName": [ "Get-AzsDiskMigrationJob_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "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-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 10:34:43 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk5rHXaCvoKRFAr3lMLSE2CdRQJI3MrmWd1pvlGTmznlsKBY2NJ06Baeiq+TAX7ZChnHtk9tM0nZu2XV/pxO25CFuc2SCCNzx3gO5wAJcarcXoFTkSTJ1LOYyuZ394376tIC1CIq2YL/mIbbDDiZB" ] - }, - "ContentHeaders": { - "Content-Length": [ "1804" ], - "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}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "146" ], - "x-ms-client-request-id": [ "9f7498ce-b1f5-4356-a12b-79cf1ec468df" ], - "CommandName": [ "Get-AzsDiskMigrationJob" ], - "FullCommandName": [ "Get-AzsDiskMigrationJob_GetViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "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-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 10:34:43 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvymLnNdw6eYZGCixn852Jw2yLqVsKk5jGkLVilAun6JTJO589+lLccfm+lK7OgayLREVMA/TOiSbBFAzZg/e0jRQVlQCGgFOYSO2EQyrwPpoCeKgyLyJi5TzvMv6HfM5ZXtJRDFhokKGbKARY7l/v" ] - }, - "ContentHeaders": { - "Content-Length": [ "1804" ], - "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 \"value\": []\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..2df853d3 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-04-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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "166" ], - "x-ms-client-request-id": [ "25148df3-7099-49c9-9df4-9f5f49d8770f" ], + "x-ms-unique-id": [ "417" ], + "x-ms-client-request-id": [ "d928de48-3c3b-41bf-9d22-4ba76e277091" ], "CommandName": [ "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,65 +23,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": [ "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": [ "c2fc448b-5fdc-4a83-9047-16878922ff57" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14782" ], + "x-ms-request-id": [ "c2fc448b-5fdc-4a83-9047-16878922ff57" ], + "x-ms-routing-request-id": [ "REDMOND:20210809T213757Z:c2fc448b-5fdc-4a83-9047-16878922ff57" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:31:34 GMT" ], + "Date": [ "Mon, 09 Aug 2021 21:37:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4sYztVEYFmfYT2y0ekyHDovh4P0++XT2linHplRAAymoA8hXTSuqnpYWjKUQ2F3U6uPW8EcJ5yuGjGoK24pe3FCvm7YJC31oF4bGy6UkPeqPbsaOJ4zDoa+OUp9qHuslRQP5BJUPnPhksrjrxhTG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuE6cmgv9VmLxAaZY/tgOcxgGn1Shq5qGIZckGQgD8vvKsp34mqHWSQmsYnT9jgxn6zgqvEeMMDsFj3gdTRsBSxB5024oPUj+jRq4WcN3YBUfcM2BQ0UZfUE5tmnsHcb6PI7TxZhfHW70Obbgyrf3" ] }, "ContentHeaders": { - "Content-Length": [ "1655" ], + "Content-Length": [ "19" ], "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}" - } - }, - "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": { - "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]", - "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" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "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-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:31:34 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIvHdLZSRQPha4ee1t+r0mhyS85nICSRU3Ozdt9CKfjTKQviUPiANYEWfO+JYzuvjBb/QLJl8WJnu36MBLKq1PbGI0PUzbcag2QZBdLsjnK4mecSUhFt9ulj0C2l1whLw+1M+UagqKM2wIXrRQYUo" ] - }, - "ContentHeaders": { - "Content-Length": [ "1535" ], - "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 \"value\": []\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..91c5e010 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-04-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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", "Content": null, + "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "169" ], - "x-ms-client-request-id": [ "b4b841c9-2834-4ae5-9ae7-5f42cd34d039" ], + "x-ms-unique-id": [ "418" ], + "x-ms-client-request-id": [ "b553df32-180c-4879-9e4c-d437ac085b1e" ], "CommandName": [ "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,106 +23,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": [ "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": [ "f5b37dc8-4172-4332-b77b-930a0ec59057" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14781" ], + "x-ms-request-id": [ "f5b37dc8-4172-4332-b77b-930a0ec59057" ], + "x-ms-routing-request-id": [ "REDMOND:20210809T213758Z:f5b37dc8-4172-4332-b77b-930a0ec59057" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:38:05 GMT" ], + "Date": [ "Mon, 09 Aug 2021 21:37:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvn2wdYQQqt2zOO36A2UaHksnoMFUYFKAMld+xfQ7AeAHtoEVl5chcQZ4uGqLSFNivN5w9LHGzn40lMrJ+MiLfWdqulavLubL+aL7Fz8VOg4CBhQzSoCFoJp4sax0Zwb11EHnyDhkX5uV4jw8WfZO5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpmrJTizeww/m8xqIXMyEeqKH5hU2TKrRMRNqn0wbzAd9v5mV6zn2L4z3D5FVz1jnWxIMpAEdZUGe0y7EIs4loIrdX9qB/KIoJJep12aYPic/EUpKknftRA5gp1KcUCr8SCxY7BF3riN0UAUJPuln" ] }, "ContentHeaders": { - "Content-Length": [ "1655" ], + "Content-Length": [ "19" ], "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}" - } - }, - "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": { - "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]", - "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" ] - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "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-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:38:05 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbTmeJHbAuCI9VhRPIx/nSop9TKCYQUASK8eP2LYdBShWi+iMozPBCN5q+BdVjCxm0U6vwNCulxYKrZ/9A8zPFlXPlFS2lUFkcVM9Q+G8jaR63SBWsgenUAR+l1oc9vdzTawZtWJQ1Qh8vBxwDWKG" ] - }, - "ContentHeaders": { - "Content-Length": [ "1538" ], - "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}" - } - }, - "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": { - "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", - "Content": null, - "Headers": { - "x-ms-unique-id": [ "171" ], - "x-ms-client-request-id": [ "04aaee02-0d3d-445d-9198-2f70a3f39998" ], - "CommandName": [ "Stop-AzsDiskMigrationJob" ], - "FullCommandName": [ "Stop-AzsDiskMigrationJob_Cancel" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowerShell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "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-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 26 Feb 2020 11:38:06 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRIdAx0+xWFP2H0AWFjo3IB5yAelCTar6NPpHkvRpVCqKd1/d7hC56DpG8QHqGFHmlA5q7vAdc5ZAoZww77RgBEHTjAmDP79x0R1LTZsD+swIORRI9986j8cGQ8+YqD8SACSqjOCel5Ft4QJpn4Y+" ] - }, - "ContentHeaders": { - "Content-Length": [ "2121" ], - "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 \"value\": []\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..d33c7a49 --- /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-n25r0507.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": [ "3585" ], + "x-ms-client-request-id": [ "110ef6d1-7a2d-4af4-866a-1d8b994dbd5d" ], + "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": [ "8a5e76fd-7d84-4a98-ad04-e2d96d1864f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13914" ], + "x-ms-request-id": [ "8a5e76fd-7d84-4a98-ad04-e2d96d1864f6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192456Z:8a5e76fd-7d84-4a98-ad04-e2d96d1864f6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyO1W7ph2VtleqX4B3u3enV5J1I/Drwh+Xay4kAG7QCo7hbL6pTKQLul413xRfKTzDaTSb8Cjs3A57HjrdMPT5Q9/OFH1uvTBL/DgoBDej1HJ/B//Dv0sLrW9rRVpZuGqTW/DKQPWeQUmwiAv2TH8" ] + }, + "ContentHeaders": { + "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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": [ "20023b4d-c9ca-4737-bf82-1ccf4039438b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1170" ], + "x-ms-request-id": [ "20023b4d-c9ca-4737-bf82-1ccf4039438b" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:20023b4d-c9ca-4737-bf82-1ccf4039438b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNt3Ru2wIIftJESWmQLAYJaClP0B6qJPbfaB/3x768akieIyqzNsNsbXrkcCSVwQEBZkLKZM0/R2pmByPUbDmyPySClHe3i40XCLx/Mav0xpYEgB2LVLOFlPDtoDBjTtEg1AQrWYaUfOXW0vSIyhY" ] + }, + "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-n25r0507.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": [ "3587" ], + "x-ms-client-request-id": [ "c76af609-d7a3-4e36-b43f-96e53a1bf0a0" ], + "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": [ "1843a257-d6a5-4c21-8108-fe6045da642d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13913" ], + "x-ms-request-id": [ "1843a257-d6a5-4c21-8108-fe6045da642d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:1843a257-d6a5-4c21-8108-fe6045da642d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdhxHALp9rz4PcxaJmCX0b4oeYgOmUTTwXPYxFGPh675xpU2r5dnRYfK0/Ig7BpNAdEoYHVgH/sepU6XeTenSwV362jbzGdnPy6TUTpRqIBtJ073um4GkpQ98fUFjdqP6Ub0KXsphn7bWOEE271yg" ] + }, + "ContentHeaders": { + "Content-Length": [ "667" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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": [ "af3f00b3-e747-4ec7-8355-54dbffa229f6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1169" ], + "x-ms-request-id": [ "af3f00b3-e747-4ec7-8355-54dbffa229f6" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:af3f00b3-e747-4ec7-8355-54dbffa229f6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV3L8r/scDv2kKLSEcedPSGpuRjJ+3hn4WhcQomuQMeR28QcLKDVl3anXyQJLWCiRC0FbrzUcubGvMrYygdGBQFLyLTBiss1QKmVLJ2T+5vzrxpG0lJ47dM49HuoPbgQNZ8Cf2D6G1rqWkd4CJwu8" ] + }, + "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-n25r0507.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": [ "3589" ], + "x-ms-client-request-id": [ "14bf08ed-108c-400c-940a-fc3f6659657b" ], + "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": [ "dd2f62fe-36d6-4b04-b69c-272460d6f455" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13912" ], + "x-ms-request-id": [ "dd2f62fe-36d6-4b04-b69c-272460d6f455" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:dd2f62fe-36d6-4b04-b69c-272460d6f455" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLEBdRtUoajN7ppCNGaaWfboMntiqI0TdtboFwEyII+k4BOH03FCymm7qnVy3lymBJ5nQ2ZPow4gDOBli68N0s+1m0M7FRLD3YMxpTiZwLL3arMQeoEpXGmmuw6a8wzf6PldRuFnzWpXMqcEpBsRG" ] + }, + "ContentHeaders": { + "Content-Length": [ "666" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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": [ "660b112c-4afd-4925-a83a-6a9b2c10c7b1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], + "x-ms-request-id": [ "660b112c-4afd-4925-a83a-6a9b2c10c7b1" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:660b112c-4afd-4925-a83a-6a9b2c10c7b1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYwgrs1H3Hmt5KPhjvl+QNcZGIdHjZILF2cRN0B57Uf13vg9e6LxsYrNO85PveNTn5CEPDn2FDhPD+FROxagQj/JPAYS5D2kjUgTCmdWX/SEnmmrczG1fl7bjxBpkAKMApSC+ra6MwBsF1lDlS3/J" ] + }, + "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-n25r0507.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": [ "3591" ], + "x-ms-client-request-id": [ "d3867996-b1af-40ac-a71e-c8c873bf252f" ], + "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": [ "42ec75c7-e33b-4cf5-ba07-593402dbe02e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13911" ], + "x-ms-request-id": [ "42ec75c7-e33b-4cf5-ba07-593402dbe02e" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:42ec75c7-e33b-4cf5-ba07-593402dbe02e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV729ut6IzurcBuYIA4fg89SGntgjflUTmx3jaZkK2xfrwD9tA28Z7bivo9t0SpGsmkx0hcL4OPRoz1lcn0UmeNxtrgJ4smT8+H80x3UbjLaghaTK3Nxp5rxI8qJT1/9/P11WG3Sc/7NvZFGRauaL" ] + }, + "ContentHeaders": { + "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "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": [ "30c27e8b-f2b9-4abf-8b77-0e92b5fdc72d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], + "x-ms-request-id": [ "30c27e8b-f2b9-4abf-8b77-0e92b5fdc72d" ], + "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:30c27e8b-f2b9-4abf-8b77-0e92b5fdc72d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Thu, 19 Aug 2021 19:24:57 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCSXcIvAyz1htAKnK+FYgd8QCI5Kh9ulYD+7NOH0RjQTH+I9PUTjuGWCwb/l+mlkzxS7XMif/VoyUW2RCVwCkzjMrlHsHVp6FS3AkpwKmaWMHO0n4rKpr5asqS8x3Ohq2RIj/H1bXARs/2vsTatqu" ] + }, + "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 From b12eda355f40744ab540e570d12522bf3e1b1c17 Mon Sep 17 00:00:00 2001 From: Nestorm Date: Wed, 25 Aug 2021 03:49:37 +0800 Subject: [PATCH 03/34] new diskrp admin powershell sdk (#116) * new diskrp admin powershell sdk * Enabling Disk related Tests * update recording file * fix comma Co-authored-by: Shawn Sun Co-authored-by: bganapa --- src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 | 305 ++++++++++++++++++ src/Azs.Compute.Admin/readme.md | 6 + src/Azs.Compute.Admin/test/Common.ps1 | 9 +- .../test/Get-AzsDisk.Recording.json | 276 +++++++++++++++- .../Get-AzsDiskMigrationJob.Recording.json | 149 ++++++++- .../New-AzsDiskMigrationJob.Recording.json | 60 +++- .../Stop-AzsDiskMigrationJob.Recording.json | 103 +++++- 7 files changed, 860 insertions(+), 48 deletions(-) create mode 100644 src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 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..00717d38 --- /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.Api20210401.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.Api20210401.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/readme.md b/src/Azs.Compute.Admin/readme.md index 2653942c..1a2a626d 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -330,6 +330,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: diff --git a/src/Azs.Compute.Admin/test/Common.ps1 b/src/Azs.Compute.Admin/test/Common.ps1 index 5e4510c0..e77696e4 100644 --- a/src/Azs.Compute.Admin/test/Common.ps1 +++ b/src/Azs.Compute.Admin/test/Common.ps1 @@ -1,8 +1,3 @@ $global:SkippedTests = @( - "TestDeleteNonExistingQuota", - "TestListDisks", - "TestGetDisk", - "TestGetDiskMigrationJob", - "TestNewDiskMigrationJob", - "TestStopDiskMigrationJob" -) \ No newline at end of file + "TestDeleteNonExistingQuota" +) diff --git a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json index 9110db50..9948f794 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json @@ -1,4 +1,262 @@ { + "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-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "98" ], + "x-ms-client-request-id": [ "4d725649-0ef6-4acd-8de1-3a72f7f12ad1" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "3ff7e1e2-92a0-4d01-ba62-6c392e6619a3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14877" ], + "x-ms-request-id": [ "3ff7e1e2-92a0-4d01-ba62-6c392e6619a3" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T050901Z:3ff7e1e2-92a0-4d01-ba62-6c392e6619a3" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLf0o4uG4OcDouQJ7tT5oJPBIkfevWvv6/ng0EGCiFJxMw5ozgJp9B827k+lF9DJK7c+zq4ANrxV8lWHWzjN27pxNJXLqVX6unbIFvZQL5BfvDmYIEqZxjjg02y4nG7K042+fJNCEnxxlagkcc7C9" ] + }, + "ContentHeaders": { + "Content-Length": [ "816" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?userSubscriptionId=47b53730-e95d-4594-b843-d378bdff793a\u0026api-version=2021-04-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "99" ], + "x-ms-client-request-id": [ "cd89f83c-d29b-4cf0-88b6-3fc5f3ee0429" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "ece43879-75ca-4ec9-b338-ad90606a7b57" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14876" ], + "x-ms-request-id": [ "ece43879-75ca-4ec9-b338-ad90606a7b57" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T050901Z:ece43879-75ca-4ec9-b338-ad90606a7b57" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveBr2+q6pF5Cpc8vq/gYIGnIlnyY0AxigQ+qsYEpybtdMznMSbg4u8OGtiqiKobHVKGXS5TnBj5NjFT7neqHMF1EZd20pb8wT8KjW1JsceS8S/x0kSUS9fFd9Q6drQzV+n0szwmtap2ZUyOKlZsCY" ] + }, + "ContentHeaders": { + "Content-Length": [ "816" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=ActiveSAS\u0026api-version=2021-04-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=ActiveSAS\u0026api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "100" ], + "x-ms-client-request-id": [ "abf71911-7700-40ee-bcd3-a461d8a6a48b" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "d96079a1-387f-4e0e-99a0-25f28690d73d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14875" ], + "x-ms-request-id": [ "d96079a1-387f-4e0e-99a0-25f28690d73d" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T050901Z:d96079a1-387f-4e0e-99a0-25f28690d73d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQR0VocgL73WdyHRWhlbUShCSpOTcj9N64s+uVpn8imoAfbalx/B9IpN0nv9LS91eTgg4+TISQPoXBgTxkrlx7WdFqXCMlDzzWMep+H3prytoX62GqBEPKk4ku0scYql1mufhn0ErQK1dxFCyM+mA" ] + }, + "ContentHeaders": { + "Content-Length": [ "816" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "101" ], + "x-ms-client-request-id": [ "9f1f8ed5-39cb-406e-949b-1f5eadf25a81" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "13d2a2de-dd10-4b54-af12-8fcbc291345f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14874" ], + "x-ms-request-id": [ "13d2a2de-dd10-4b54-af12-8fcbc291345f" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T050901Z:13d2a2de-dd10-4b54-af12-8fcbc291345f" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV2moksK3eSnHJS2+EKEEt+1KSXkYDnAcF26AJ1qhI4QauSXqDHMdxDcOx4d2z4tEmJNTUAYA/1y0DNzLZmnDiVBYm9CSfZ7hXknF9GLy84e6s0yEPmJ3K/RawD++p4wK8ue6xTrQvvR2sM41jKdl" ] + }, + "ContentHeaders": { + "Content-Length": [ "816" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "102" ], + "x-ms-client-request-id": [ "c3daa227-0f73-49af-918f-36e1e7bfe5b6" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "6e05806c-5940-4077-a586-be4a000dcd22" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14873" ], + "x-ms-request-id": [ "6e05806c-5940-4077-a586-be4a000dcd22" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T050902Z:6e05806c-5940-4077-a586-be4a000dcd22" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxKWUZXaLU+Pqd5CBM3fexIp/tG/p1JskTyDDfmfHoIaSDj+I9Msh3eT85wasGmn99RUwjklcS3tgPmd/v2W44FNVt7DnA5u4ZvMjQEYUtthlUPs6C/WlIv6mTxN1GRWZJZpqtj6CUMEEzH5uVZFw" ] + }, + "ContentHeaders": { + "Content-Length": [ "816" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b?api-version=2021-04-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b?api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "103" ], + "x-ms-client-request-id": [ "4e9512ca-4c8a-4235-ba90-0d855a5034a0" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], + "FullCommandName": [ "Get-AzsDisk_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "62ae949f-6b67-40b4-8943-8e6d5d471a68" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14872" ], + "x-ms-request-id": [ "62ae949f-6b67-40b4-8943-8e6d5d471a68" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T050902Z:62ae949f-6b67-40b4-8943-8e6d5d471a68" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfrofbducY/Wzdnr3SBrV57rNdHjNrV30PhQpTrgufsz8sM0j7rKjbgaVBNW36eI0JMJr7dIzu00Fp155dg+WiQf26PlWvLtTl8+LbS22FD2Ls56X4S/yfZz1+dZL7sopKFZLgDSGC44JbCTLya9T" ] + }, + "ContentHeaders": { + "Content-Length": [ "723" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-04-01+1": { "Request": { "Method": "GET", @@ -6,9 +264,9 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1923" ], - "x-ms-client-request-id": [ "73a83527-bdfb-44c7-9f45-ac8b1173266e" ], - "CommandName": [ "Get-AzsDisk" ], + "x-ms-unique-id": [ "104" ], + "x-ms-client-request-id": [ "42acea7e-49b8-4a48-b314-7435c325d00a" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], "FullCommandName": [ "Get-AzsDisk_Get" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], @@ -23,15 +281,15 @@ "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": [ "9e3cf7f7-bb71-4820-bb4b-e209cc84e6ca" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13859" ], - "x-ms-request-id": [ "9e3cf7f7-bb71-4820-bb4b-e209cc84e6ca" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181631Z:9e3cf7f7-bb71-4820-bb4b-e209cc84e6ca" ], + "x-ms-correlation-request-id": [ "973aa4dd-2726-464a-8a05-658d04f60448" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14871" ], + "x-ms-request-id": [ "973aa4dd-2726-464a-8a05-658d04f60448" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T050902Z:973aa4dd-2726-464a-8a05-658d04f60448" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:31 GMT" ], + "Date": [ "Tue, 24 Aug 2021 05:09:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBWLnOxO+4L9bvWrkoF+m9Vsv8Yw77aJe2hBUZHEv+dvflYs0xzurKxZz8dY0BEGZRdurmopgYCEDg6zcgfPFWF+L7ABK5KeYHQtQC2hij+vLMJPPINI27rAVw5YL5Bc1T3M0MsHAzQTArnaii1Ac" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG0Cb7UNeAum/PfDZ2lck1mdPri6yd1eGKKVtPfU/IfCZaNfz43S4YNCfx2/Sw+D6zDARR0eTL2mf6pZr/VgD8qS85uruuPByxBzkBppqbKMxVyUtcrX2ldQkYSQV1fDTc5tJrzLuv/dIomczBgNu" ] }, "ContentHeaders": { "Content-Length": [ "115" ], diff --git a/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json index 195c87a0..596abe4c 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1924" ], - "x-ms-client-request-id": [ "a8577f93-ef80-4031-9654-e62df2feb494" ], + "x-ms-unique-id": [ "117" ], + "x-ms-client-request-id": [ "26f9c47a-bb53-43f9-96de-de99aa466a41" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,22 +23,151 @@ "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": [ "05556089-0419-4afc-909d-3c92314bd49e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13858" ], - "x-ms-request-id": [ "05556089-0419-4afc-909d-3c92314bd49e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181631Z:05556089-0419-4afc-909d-3c92314bd49e" ], + "x-ms-correlation-request-id": [ "3bee0727-dd66-423d-8c47-8418eba08065" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14846" ], + "x-ms-request-id": [ "3bee0727-dd66-423d-8c47-8418eba08065" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060843Z:3bee0727-dd66-423d-8c47-8418eba08065" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:31 GMT" ], + "Date": [ "Tue, 24 Aug 2021 06:08:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvB+fil6cQpDIbXivKu+0J1k7Hbj/z+lmc+T4yw037/3foWeN39WjH0eS0h1I1D0FM+Kzf3dtQZmTzwuegUZkIWTNi/t/kiHra5j75VHrXpJa0mtVB+47a0Zyu7nuFlMs284YBZLShUFDhx/JXLVOS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx9nRi5wQjDSs7IKSEBa+6ezxAQROLT1QTMo5BDpgl4zCmesCMkTZDCAYz1t65//4GjlH1BqaKQrr5fAMQe4aV35RBaVMiq8jwuBb9MeCxukwY5sAaLhZbTSgV+c3dBJhSBQ0qaszx+7rLpUptnVx" ] }, "ContentHeaders": { - "Content-Length": [ "19" ], + "Content-Length": [ "1281" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": []\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\": \"Running\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Running\",\r\n \"startTime\": \"2021-08-24T06:08:36.9895593Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"startTime\": \"2021-08-24T06:08:36.9517749Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false + } + }, + "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-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "118" ], + "x-ms-client-request-id": [ "7f3b7d8b-30fa-42e5-9362-2e4111893a22" ], + "CommandName": [ "Get-AzsDiskMigrationJob" ], + "FullCommandName": [ "Get-AzsDiskMigrationJob_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "89937f7d-7cb2-4ade-8c54-594c4d672672" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14845" ], + "x-ms-request-id": [ "89937f7d-7cb2-4ade-8c54-594c4d672672" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060843Z:89937f7d-7cb2-4ade-8c54-594c4d672672" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 06:08:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsmQuG/HOjdJCEVDhGIRgOergHKGo0aUrfUxNRVEPYEJfmTD32RFKi5tI69CkTHZV5ltKKq9buVbfkv+Tdrmmf1vPuvrrIvgjSgmSVApK0MneHbqVAXWBhyrJoMba4UdyW4m/oomaO+s/2H5hhpl0" ] + }, + "ContentHeaders": { + "Content-Length": [ "1281" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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\": \"Running\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Running\",\r\n \"startTime\": \"2021-08-24T06:08:36.9895593Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"startTime\": \"2021-08-24T06:08:36.9517749Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n }\r\n ]\r\n}", + "isContentBase64": false + } + }, + "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-04-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "119" ], + "x-ms-client-request-id": [ "fd0d6a49-a123-4324-a4ae-b85a98ab138e" ], + "CommandName": [ "Get-AzsDiskMigrationJob" ], + "FullCommandName": [ "Get-AzsDiskMigrationJob_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "c11d90bf-20cf-4d26-9151-6baaad4bf5b6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14844" ], + "x-ms-request-id": [ "c11d90bf-20cf-4d26-9151-6baaad4bf5b6" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060843Z:c11d90bf-20cf-4d26-9151-6baaad4bf5b6" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 06:08:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9wx9sY/cJpjIqRtpK/5yBwjqtVKy524MEe4O32tdGf+dB94RtTdyr1RYFPeJ7KCsto138ypZPjAIG98yKCJu1EAvq9CUFRGUvW9xEIDeUM1DVygSxF+BR1Xur2SezWY7NQHmEuRi7wNJTMxZmF9V" ] + }, + "ContentHeaders": { + "Content-Length": [ "1152" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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\": \"Running\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Running\",\r\n \"startTime\": \"2021-08-24T06:08:36.9895593Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"startTime\": \"2021-08-24T06:08:36.9517749Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", + "isContentBase64": false + } + }, + "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-04-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "120" ], + "x-ms-client-request-id": [ "b33e8457-bb05-4685-bb1b-ce1aab51ce63" ], + "CommandName": [ "Get-AzsDiskMigrationJob" ], + "FullCommandName": [ "Get-AzsDiskMigrationJob_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "888fd0d2-cfc6-460c-92e1-91f39789494d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14843" ], + "x-ms-request-id": [ "888fd0d2-cfc6-460c-92e1-91f39789494d" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060843Z:888fd0d2-cfc6-460c-92e1-91f39789494d" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 06:08:43 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKJPaiOjFn5FYZSkmHUNwc81ZTscN3wfQj/Ti+jfidrUQe2feWj9r5q4nNIg0hHGM2P3ult3DiVLq27N2MAW5zT116AeV/6y9nz/0LkEVVilj4ayKkS8YJXl1crfrlNXdmISRauVylq9mEbRyO+lK" ] + }, + "ContentHeaders": { + "Content-Length": [ "1152" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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\": \"Running\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Running\",\r\n \"startTime\": \"2021-08-24T06:08:36.9895593Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"startTime\": \"2021-08-24T06:08:36.9517749Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", "isContentBase64": false } } diff --git a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json index 2df853d3..72ed17fc 100644 --- a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json @@ -6,9 +6,9 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "417" ], - "x-ms-client-request-id": [ "d928de48-3c3b-41bf-9d22-4ba76e277091" ], - "CommandName": [ "Get-AzsDisk" ], + "x-ms-unique-id": [ "115" ], + "x-ms-client-request-id": [ "9fa82b5a-fb38-40af-8664-53b2a26b0f09" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], "FullCommandName": [ "Get-AzsDisk_List" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], @@ -23,22 +23,60 @@ "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": [ "c2fc448b-5fdc-4a83-9047-16878922ff57" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14782" ], - "x-ms-request-id": [ "c2fc448b-5fdc-4a83-9047-16878922ff57" ], - "x-ms-routing-request-id": [ "REDMOND:20210809T213757Z:c2fc448b-5fdc-4a83-9047-16878922ff57" ], + "x-ms-correlation-request-id": [ "a48c81c7-84c0-4b34-99e3-c5ae54cecf8f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14847" ], + "x-ms-request-id": [ "a48c81c7-84c0-4b34-99e3-c5ae54cecf8f" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060836Z:a48c81c7-84c0-4b34-99e3-c5ae54cecf8f" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 09 Aug 2021 21:37:56 GMT" ], + "Date": [ "Tue, 24 Aug 2021 06:08:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuE6cmgv9VmLxAaZY/tgOcxgGn1Shq5qGIZckGQgD8vvKsp34mqHWSQmsYnT9jgxn6zgqvEeMMDsFj3gdTRsBSxB5024oPUj+jRq4WcN3YBUfcM2BQ0UZfUE5tmnsHcb6PI7TxZhfHW70Obbgyrf3" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwc83QtiV6BI3+oxtMvKw+354a3w3LHUuqzkSJQVcS45/flybDUx/ZlwSWC3FqD4ftJnk+AW33ogxDEpUQ+IUXReDS7ZY3Ao9WqZ0i5neszrcAcJQ5ob+ApJvd3exIEWstNCuDvBD0TwCwQy6aLvL" ] }, "ContentHeaders": { - "Content-Length": [ "19" ], + "Content-Length": [ "885" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": []\r\n}", + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-04-01+2": { + "Request": { + "Method": "PUT", + "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-04-01", + "Content": "[\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\"\r\n }\r\n }\r\n]", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "249" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "d232be50-041e-40fa-968c-386f0bbdb5f1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "d232be50-041e-40fa-968c-386f0bbdb5f1" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060837Z:d232be50-041e-40fa-968c-386f0bbdb5f1" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 06:08:36 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBzCFsKyc7j1M2/eSDpFFDhTvCz5cIeRO1qL2nf6PljF5pcJ5JqB8hFuUXcenNfJj3fyuskrvcleQhk2/WpN/QOe154zvp/6d39c9uc4bkOyCeXA1zNeDCZghe0/p6Jw+SZTOrkAzaL7nNwe3EzCs" ] + }, + "ContentHeaders": { + "Content-Length": [ "1046" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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\": \"Pending\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Pending\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", "isContentBase64": false } } diff --git a/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json index 91c5e010..facef76c 100644 --- a/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json @@ -6,9 +6,9 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "418" ], - "x-ms-client-request-id": [ "b553df32-180c-4879-9e4c-d437ac085b1e" ], - "CommandName": [ "Get-AzsDisk" ], + "x-ms-unique-id": [ "121" ], + "x-ms-client-request-id": [ "33c2344e-d53f-4cae-afa1-0da45972c23f" ], + "CommandName": [ "Azs.Compute.Admin.internal\\Get-AzsDisk" ], "FullCommandName": [ "Get-AzsDisk_List" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], @@ -23,22 +23,103 @@ "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": [ "f5b37dc8-4172-4332-b77b-930a0ec59057" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14781" ], - "x-ms-request-id": [ "f5b37dc8-4172-4332-b77b-930a0ec59057" ], - "x-ms-routing-request-id": [ "REDMOND:20210809T213758Z:f5b37dc8-4172-4332-b77b-930a0ec59057" ], + "x-ms-correlation-request-id": [ "976a25b4-59e1-4777-b32b-4f8447cdb32a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14842" ], + "x-ms-request-id": [ "976a25b4-59e1-4777-b32b-4f8447cdb32a" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060907Z:976a25b4-59e1-4777-b32b-4f8447cdb32a" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 09 Aug 2021 21:37:58 GMT" ], + "Date": [ "Tue, 24 Aug 2021 06:09:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpmrJTizeww/m8xqIXMyEeqKH5hU2TKrRMRNqn0wbzAd9v5mV6zn2L4z3D5FVz1jnWxIMpAEdZUGe0y7EIs4loIrdX9qB/KIoJJep12aYPic/EUpKknftRA5gp1KcUCr8SCxY7BF3riN0UAUJPuln" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEV6T8wGm3XefCa9g3/pLERQGjWwHN+ofJMJZFOgJuUAsDe6DAlc6aTzry1W5c1s1lrgQqEk/3a1OpeXcSiWv197oG5GZsGTP1CH1nHZ5+yvbThtMpwH5Ldu9DDl7QLt+fnCkjA1+wMDCBjq7eGQv" ] }, "ContentHeaders": { - "Content-Length": [ "19" ], + "Content-Length": [ "885" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": []\r\n}", + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_2\u0026api-version=2021-04-01+2": { + "Request": { + "Method": "PUT", + "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-04-01", + "Content": "[\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\"\r\n }\r\n }\r\n]", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "249" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "6d3a8a3a-391d-4e47-9541-e8d496e322c9" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-request-id": [ "6d3a8a3a-391d-4e47-9541-e8d496e322c9" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060907Z:6d3a8a3a-391d-4e47-9541-e8d496e322c9" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 06:09:07 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8LYpw3hnLvdqputC86E0EzPQ4EYLXVwdXZUgXMhBm9HOkfQWAQsyzqit0m/7a8tTTm7h+KSkCr+1g63VHrKlMqXG/4FQQEOyAYaDwwRYJ3x2DPNiqCoP1F4XgBoCMZUQozB0ENkQU+VZVXSqwSYJ" ] + }, + "ContentHeaders": { + "Content-Length": [ "1049" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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\": \"Pending\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"4f64e824-ad90-4f5f-a357-b70716ef3577\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Pending\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:09:07.9106269Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}", + "isContentBase64": false + } + }, + "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-04-01+3": { + "Request": { + "Method": "POST", + "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskMigrationJobs/TestStopDiskMigration/cancel?api-version=2021-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "123" ], + "x-ms-client-request-id": [ "b9d4ab41-dca8-42c2-9f25-95347105f460" ], + "CommandName": [ "Stop-AzsDiskMigrationJob" ], + "FullCommandName": [ "Stop-AzsDiskMigrationJob_Cancel" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "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": [ "3fef2ebe-2eb3-43eb-bf67-635643dd4a20" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-request-id": [ "3fef2ebe-2eb3-43eb-bf67-635643dd4a20" ], + "x-ms-routing-request-id": [ "REDMOND:20210824T060908Z:3fef2ebe-2eb3-43eb-bf67-635643dd4a20" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Tue, 24 Aug 2021 06:09:07 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtK6h7sj/9pj/0l+FcWEorbKILSS6xaxi3pIwW21sm6HF58Wl1M9ZO5wu6G1CAZA7rkWZVS1kAnOlw08FRoRrg9nd5McI2I73IaAaMlgVt+qAhFPu1TZCegezBQT7M4T06PMfG63gq+6yKrNwEgJw" ] + }, + "ContentHeaders": { + "Content-Length": [ "1153" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "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\": \"4f64e824-ad90-4f5f-a357-b70716ef3577\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Canceled\",\r\n \"endTime\": \"2021-08-24T06:09:08.1626194Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:09:07.9106269Z\",\r\n \"endTime\": \"2021-08-24T06:09:08.1716238Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}", "isContentBase64": false } } From 3e8d2ca13e5627a91757be33fa58d05c1b163872 Mon Sep 17 00:00:00 2001 From: Bhuvaneswari Santharam <31025851+Bhuvaneswari-Santharam@users.noreply.github.com> Date: Tue, 31 Aug 2021 17:45:26 -0700 Subject: [PATCH 04/34] Initial version of Azurestack Aks admin cmdlets (#109) * AKS Admin initial version * Removing generated files * Adding AKS admin pester test * Pester test changes for aks admin * Adding env.json to container service test * Adding docs and examples for container service * adding exampls and docs to container service * Delete loadEnv.ps1 * Adding Example and docs to container service Co-authored-by: Bhuvaneswari Santharam Co-authored-by: bganapa --- .../docs/Azs.ContainerService.Admin.md | 19 +++ .../docs/Get-AzsContainerService.md | 119 ++++++++++++++++++ .../docs/Get-AzsContainerServiceQuota.md | 99 +++++++++++++++ src/Azs.ContainerService.Admin/docs/readme.md | 11 ++ .../examples/Get-AzsContainerService.md | 32 +++++ .../examples/Get-AzsContainerServiceQuota.md | 12 ++ src/Azs.ContainerService.Admin/readme.md | 92 ++++++++++++++ .../Get-AzsContainerService.Recording.json | 43 +++++++ .../test/Get-AzsContainerService.Tests.ps1 | 38 ++++++ ...et-AzsContainerServiceQuota.Recording.json | 43 +++++++ .../Get-AzsContainerServiceQuota.Tests.ps1 | 37 ++++++ src/Azs.ContainerService.Admin/test/env.json | 4 + 12 files changed, 549 insertions(+) create mode 100644 src/Azs.ContainerService.Admin/docs/Azs.ContainerService.Admin.md create mode 100644 src/Azs.ContainerService.Admin/docs/Get-AzsContainerService.md create mode 100644 src/Azs.ContainerService.Admin/docs/Get-AzsContainerServiceQuota.md create mode 100644 src/Azs.ContainerService.Admin/docs/readme.md create mode 100644 src/Azs.ContainerService.Admin/examples/Get-AzsContainerService.md create mode 100644 src/Azs.ContainerService.Admin/examples/Get-AzsContainerServiceQuota.md create mode 100644 src/Azs.ContainerService.Admin/readme.md create mode 100644 src/Azs.ContainerService.Admin/test/Get-AzsContainerService.Recording.json create mode 100644 src/Azs.ContainerService.Admin/test/Get-AzsContainerService.Tests.ps1 create mode 100644 src/Azs.ContainerService.Admin/test/Get-AzsContainerServiceQuota.Recording.json create mode 100644 src/Azs.ContainerService.Admin/test/Get-AzsContainerServiceQuota.Tests.ps1 create mode 100644 src/Azs.ContainerService.Admin/test/env.json 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..62275f01 --- /dev/null +++ b/src/Azs.ContainerService.Admin/readme.md @@ -0,0 +1,92 @@ + +# 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 RequiredModules + - from: source-file-csharp + where: $ + transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerService.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerService.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; ModuleVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + +# 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 From 39ac2eeaf5524499f526784b17b9a191e3676207 Mon Sep 17 00:00:00 2001 From: larisaborodina <58491292+larisaborodina@users.noreply.github.com> Date: Wed, 1 Sep 2021 11:47:49 -0700 Subject: [PATCH 05/34] ACR Admin module - Pester Test fixes (#124) * adding loadEnvJson file for tests * Pester Test fixes. Co-authored-by: bganapa --- .../docs/Azs.ContainerRegistry.Admin.md | 2 +- .../docs/Get-AzsContainerRegistry.md | 8 +++-- .../docs/Get-AzsContainerRegistryCapacity.md | 8 +++-- .../Get-AzsContainerRegistryConfiguration.md | 8 +++-- .../docs/Get-AzsContainerRegistryQuota.md | 16 +++++---- .../Get-AzsContainerRegistrySetupStatus.md | 8 +++-- .../docs/New-AzsContainerRegistryQuota.md | 8 +++-- ...emove-AzsContainerRegistryConfiguration.md | 7 ++-- .../docs/Remove-AzsContainerRegistryQuota.md | 7 ++-- .../Set-AzsContainerRegistryConfiguration.md | 8 +++-- .../docs/Set-AzsContainerRegistryQuota.md | 8 +++-- .../docs/Start-AzsContainerRegistrySetup.md | 7 ++-- .../test/Get-AzsContainerRegistry.Tests.ps1 | 4 +-- ...Get-AzsContainerRegistryCapacity.Tests.ps1 | 4 +-- ...zsContainerRegistryConfiguration.Tests.ps1 | 4 +-- .../Get-AzsContainerRegistryQuota.Tests.ps1 | 4 +-- ...-AzsContainerRegistrySetupStatus.Tests.ps1 | 4 +-- .../New-AzsContainerRegistryQuota.Tests.ps1 | 4 +-- ...zsContainerRegistryConfiguration.Tests.ps1 | 4 +-- ...Remove-AzsContainerRegistryQuota.Tests.ps1 | 4 +-- ...zsContainerRegistryConfiguration.Tests.ps1 | 4 +-- .../Set-AzsContainerRegistryQuota.Tests.ps1 | 4 +-- ...t-AzsContainerRegistrySetup.Recording.json | 4 +-- .../Start-AzsContainerRegistrySetup.Tests.ps1 | 6 ++-- src/Azs.ContainerRegistry.Admin/test/env.json | 7 ++++ .../test/loadEnvJson.ps1 | 28 ++++++++++++++++ src/Azs.ContainerRegistry.Admin/test/ssl.pem | 33 +++++++++++++++++++ 27 files changed, 151 insertions(+), 62 deletions(-) create mode 100644 src/Azs.ContainerRegistry.Admin/test/env.json create mode 100644 src/Azs.ContainerRegistry.Admin/test/loadEnvJson.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/test/ssl.pem diff --git a/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md b/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md index fb3652a3..09e5ebf1 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md @@ -1,6 +1,6 @@ --- Module Name: Azs.ContainerRegistry.Admin -Module Guid: 27950488-3e83-458b-8797-6db82864cf62 +Module Guid: 900db1dd-8338-4e8f-a01c-81ab98484955 Download Help Link: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin Help Version: 1.0.0.0 Locale: en-US diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md index e0058729..976d37fd 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md @@ -22,10 +22,9 @@ Returns a list of container registries present in all tenant location. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get List Azs Container Registries ```powershell -Get-AzsContainerRegistry -``` +PS C:\> Get-AzsContainerRegistry { "CreationDate": "\/Date(1629160842681)\/", @@ -39,6 +38,9 @@ Get-AzsContainerRegistry "SubscriptionId": "72b77b1b-3e43-4d00-8b5b-be6beceb7f3a", "Type": "Microsoft.ContainerRegistry.Admin/locations/registries" } +``` + +Returns a list of container registries present in all tenant location. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md index 09d48121..b320152b 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md @@ -35,10 +35,9 @@ Returns container registry capacity property. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get Azs ContainerRegistry Capacity ```powershell -Get-AzsContainerRegistryCapacity -``` +PS C:\> Get-AzsContainerRegistryCapacity { "AllowPush": true, @@ -48,6 +47,9 @@ Get-AzsContainerRegistryCapacity "RegistriesConsumptionInGiB": 0, "Type": "Microsoft.ContainerRegistry.Admin/locations/capacities" } +``` + +Returns container registry capacity property. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md index 1bf60f9d..6cfe66df 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md @@ -35,10 +35,9 @@ Returns the specified configuration details. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get AzsContainerRegistry Configuration ```powershell -Get-AzsContainerRegistryConfiguration -``` +PS C:\> Get-AzsContainerRegistryConfiguration {{ "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", @@ -46,6 +45,9 @@ Get-AzsContainerRegistryConfiguration "Name": "redmond/Default", "Type": "Microsoft.ContainerRegistry.Admin/locations/configurations" } +``` + +Returns the specified configuration details. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md index 7129de57..3c78051f 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md @@ -35,10 +35,9 @@ Returns the specified container registry quota. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get List Azs ContainerRegistry Quotas ```powershell -Get-AzsContainerRegistryQuota -``` +PS C:\> Get-AzsContainerRegistryQuota [ { @@ -56,11 +55,13 @@ Get-AzsContainerRegistryQuota "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ] +``` -### -------------------------- EXAMPLE 2 -------------------------- +Returns a list of container registry quotas at the given location. + +### Example 2: Get Azs ContainerRegistry Quota by Name ```powershell -Get-AzsContainerRegistryQuota -Name "Default quota" -``` +PS C:\> Get-AzsContainerRegistryQuota -Name "Default quota" { "CapacityPerRegistryInGiB": 20, @@ -69,6 +70,9 @@ Get-AzsContainerRegistryQuota -Name "Default quota" "NumberOfRegistry": 20, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } +``` + +Returns the specified container registry quota. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md index cef110db..8757a659 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md @@ -29,10 +29,9 @@ Returns the status of the container registry setup. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get Azs ContainerRegistry Setup Status ```powershell -Get-AzsContainerRegistrySetupStatus -``` +PS C:\> Get-AzsContainerRegistrySetupStatus { "id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value", @@ -42,6 +41,9 @@ Get-AzsContainerRegistrySetupStatus "status": "Completed" } } +``` + +Returns the status of the container registry setup. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md index 7b0f1b40..ee4a3289 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md @@ -30,10 +30,9 @@ Create or update an existing container registry quota. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: New Azs ContainerRegistry Quota ```powershell -New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 -``` +PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 { "CapacityPerRegistryInGiB": 20, @@ -42,6 +41,9 @@ New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 "NumberOfRegistry": 20, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } +``` + +Create or update an existing container registry quota. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md index ffe77127..28c12f0f 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md @@ -29,12 +29,13 @@ Delete an existing container registry configuration ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Remove Azs ContainerRegistry Configuration ```powershell -Remove-AzsContainerRegistryConfiguration -ConfigurationName default -``` +PS C:\> Remove-AzsContainerRegistryConfiguration -ConfigurationName default +``` +Delete an existing container registry configuration. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md index 03258cf7..2d25c787 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryQuota.md @@ -29,12 +29,13 @@ Delete an existing container registry quota ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Remove Azs ContainerRegistry Configuration ```powershell -Remove-AzsContainerRegistryConfiguration -ConfigurationName default -``` +PS C:\> Remove-AzsContainerRegistryConfiguration -ConfigurationName default +``` +Delete an existing container registry configuration. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md index b6b562c9..f558dd81 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md @@ -31,10 +31,9 @@ Configure container registry overall configuration properties. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Set Azs ContainerRegistry Configuration ```powershell -Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default -``` +PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default { "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", @@ -42,6 +41,9 @@ Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationNam "Name": "redmond/Default", "Type": "Microsoft.ContainerRegistry.Admin/locations/configurations" } +``` + +Configure container registry overall configuration properties. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md index 1b533332..a3ea9240 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md @@ -30,10 +30,9 @@ Create or update an existing container registry quota. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Set Azs ContainerRegistry Quota ```powershell -Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 -``` +PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 { "CapacityPerRegistryInGiB": 30, @@ -42,6 +41,9 @@ Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 "NumberOfRegistry": 30, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } +``` + +Update an existing container registry quota. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md index 6e69f000..41155753 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md @@ -42,12 +42,13 @@ Invokes container registry certificate uploading and service deployment. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Start Azs ContainerRegistry Setup ```powershell -Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path -``` +PS C:\> Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path +``` +Invokes container registry certificate uploading and service deployment. ## PARAMETERS diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 index 6c3efc7b..12a294ee 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistry.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistry.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 index a89cc119..b0920802 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryCapacity.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistryCapacity.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Tests.ps1 index e02ab919..15014c11 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryConfiguration.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistryConfiguration.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 index c3704b3a..a6db9d72 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistryQuota.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 index 04c50441..0e77dcd3 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistrySetupStatus.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzsContainerRegistrySetupStatus.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 index 93872b84..c533e683 100644 --- a/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzsContainerRegistryQuota.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 index 2ea2616d..553780be 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzsContainerRegistryConfiguration.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 index 2d24276f..ae7b6c9a 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzsContainerRegistryQuota.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 index 1baf125d..42aeb4ff 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzsContainerRegistryConfiguration.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 index b37583e4..71a8d358 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzsContainerRegistryQuota.Recording.json' diff --git a/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Recording.json index 32798c7d..98acfc11 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Recording.json +++ b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Recording.json @@ -13,7 +13,7 @@ } }, "Response": { - "StatusCode": 409, + "StatusCode": 201, "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], @@ -31,7 +31,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"AcrAlreadyDeployed\",\"message\":\"Container registry deployment has already been successfully completed. It is not allowed to repeat deployment\"}}", + "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 } } diff --git a/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 index ffd5cc96..7b536228 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 @@ -1,6 +1,6 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' +$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' } . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Start-AzsContainerRegistrySetup.Recording.json' @@ -13,7 +13,7 @@ while(-not $mockingPath) { Describe 'Start-AzsContainerRegistrySetup' { $password = ConvertTo-SecureString "password" -AsPlainText -Force - $pfx_cert_path = "C:\CloudDeployment\Setup\Certificates\ADFS\Container Registry\SSL.pfx" + $pfx_cert_path = Join-Path $PSScriptRoot 'SSL.pem' { Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $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.pem b/src/Azs.ContainerRegistry.Admin/test/ssl.pem new file mode 100644 index 00000000..7ba73ef6 --- /dev/null +++ b/src/Azs.ContainerRegistry.Admin/test/ssl.pem @@ -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----- From 9ee22f542d7e2d2735e44f3e9f71211bfeca3e8f Mon Sep 17 00:00:00 2001 From: larisaborodina <58491292+larisaborodina@users.noreply.github.com> Date: Wed, 15 Sep 2021 15:13:08 -0700 Subject: [PATCH 06/34] [2108][ContainerRegistry] Make examples return correct json format. (#132) Make examples return correct json format. --- .../docs/Get-AzsContainerRegistry.md | 2 +- .../docs/Get-AzsContainerRegistryCapacity.md | 2 +- .../Get-AzsContainerRegistryConfiguration.md | 2 +- .../docs/Get-AzsContainerRegistryQuota.md | 4 ++-- .../Get-AzsContainerRegistrySetupStatus.md | 2 +- .../docs/New-AzsContainerRegistryQuota.md | 2 +- .../Set-AzsContainerRegistryConfiguration.md | 2 +- .../docs/Set-AzsContainerRegistryQuota.md | 2 +- .../docs/Start-AzsContainerRegistrySetup.md | 22 ++++++++++++++++++- .../examples/Get-AzsContainerRegistry.md | 2 +- .../Get-AzsContainerRegistryCapacity.md | 2 +- .../Get-AzsContainerRegistryConfiguration.md | 2 +- .../examples/Get-AzsContainerRegistryQuota.md | 4 ++-- .../Get-AzsContainerRegistrySetupStatus.md | 2 +- .../examples/New-AzsContainerRegistryQuota.md | 2 +- .../Set-AzsContainerRegistryConfiguration.md | 2 +- .../examples/Set-AzsContainerRegistryQuota.md | 2 +- .../Start-AzsContainerRegistrySetup.md | 21 +++++++++++++++++- 18 files changed, 59 insertions(+), 20 deletions(-) diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md index 976d37fd..9537de65 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistry.md @@ -24,7 +24,7 @@ Returns a list of container registries present in all tenant location. ### Example 1: Get List Azs Container Registries ```powershell -PS C:\> Get-AzsContainerRegistry +PS C:\> Get-AzsContainerRegistry | ConvertTo-Json { "CreationDate": "\/Date(1629160842681)\/", diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md index b320152b..54119c5b 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryCapacity.md @@ -37,7 +37,7 @@ Returns container registry capacity property. ### Example 1: Get Azs ContainerRegistry Capacity ```powershell -PS C:\> Get-AzsContainerRegistryCapacity +PS C:\> Get-AzsContainerRegistryCapacity | ConvertTo-Json { "AllowPush": true, diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md index 6cfe66df..27e67418 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md @@ -37,7 +37,7 @@ Returns the specified configuration details. ### Example 1: Get AzsContainerRegistry Configuration ```powershell -PS C:\> Get-AzsContainerRegistryConfiguration +PS C:\> Get-AzsContainerRegistryConfiguration | ConvertTo-Json {{ "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md index 3c78051f..3348bb51 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md @@ -37,7 +37,7 @@ Returns the specified container registry quota. ### Example 1: Get List Azs ContainerRegistry Quotas ```powershell -PS C:\> Get-AzsContainerRegistryQuota +PS C:\> Get-AzsContainerRegistryQuota | ConvertTo-Json [ { @@ -61,7 +61,7 @@ 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" +PS C:\> Get-AzsContainerRegistryQuota -Name "Default quota" | ConvertTo-Json { "CapacityPerRegistryInGiB": 20, diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md index 8757a659..eea17710 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistrySetupStatus.md @@ -31,7 +31,7 @@ Returns the status of the container registry setup. ### Example 1: Get Azs ContainerRegistry Setup Status ```powershell -PS C:\> Get-AzsContainerRegistrySetupStatus +PS C:\> (Get-AzsContainerRegistrySetupStatus).ToJsonString() { "id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value", diff --git a/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md index ee4a3289..0969e782 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md @@ -32,7 +32,7 @@ Create or update an existing container registry quota. ### Example 1: New Azs ContainerRegistry Quota ```powershell -PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 +PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 | ConvertTo-Json { "CapacityPerRegistryInGiB": 20, diff --git a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md index f558dd81..64a624e8 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md @@ -33,7 +33,7 @@ Configure container registry overall configuration properties. ### Example 1: Set Azs ContainerRegistry Configuration ```powershell -PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default +PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default | ConvertTo-Json { "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", diff --git a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md index a3ea9240..f6628853 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md @@ -32,7 +32,7 @@ Create or update an existing container registry quota. ### Example 1: Set Azs ContainerRegistry Quota ```powershell -PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 +PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 | ConvertTo-Json { "CapacityPerRegistryInGiB": 30, diff --git a/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md index 41155753..ff12d24c 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md @@ -44,12 +44,32 @@ Invokes container registry certificate uploading and service deployment. ### Example 1: Start Azs ContainerRegistry Setup ```powershell -PS C:\> Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path +PS C:\> Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $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 -SslCertInputFile $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 -SslCertInputFile ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + 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 ### -DefaultProfile diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistry.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistry.md index 73f8dfa5..3a776595 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistry.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistry.md @@ -1,6 +1,6 @@ ### Example 1: Get List Azs Container Registries ```powershell -PS C:\> Get-AzsContainerRegistry +PS C:\> Get-AzsContainerRegistry | ConvertTo-Json { "CreationDate": "\/Date(1629160842681)\/", diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryCapacity.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryCapacity.md index 6795c54e..d09b194a 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryCapacity.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryCapacity.md @@ -1,6 +1,6 @@ ### Example 1: Get Azs ContainerRegistry Capacity ```powershell -PS C:\> Get-AzsContainerRegistryCapacity +PS C:\> Get-AzsContainerRegistryCapacity | ConvertTo-Json { "AllowPush": true, diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryConfiguration.md index cec2abea..ac6cd28d 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryConfiguration.md @@ -1,6 +1,6 @@ ### Example 1: Get AzsContainerRegistry Configuration ```powershell -PS C:\> Get-AzsContainerRegistryConfiguration +PS C:\> Get-AzsContainerRegistryConfiguration | ConvertTo-Json {{ "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md index 96031498..4f67d769 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md @@ -1,6 +1,6 @@ ### Example 1: Get List Azs ContainerRegistry Quotas ```powershell -PS C:\> Get-AzsContainerRegistryQuota +PS C:\> Get-AzsContainerRegistryQuota | ConvertTo-Json [ { @@ -24,7 +24,7 @@ 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" +PS C:\> Get-AzsContainerRegistryQuota -Name "Default quota" | ConvertTo-Json { "CapacityPerRegistryInGiB": 20, diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistrySetupStatus.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistrySetupStatus.md index b77472ba..0245221f 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistrySetupStatus.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistrySetupStatus.md @@ -1,6 +1,6 @@ ### Example 1: Get Azs ContainerRegistry Setup Status ```powershell -PS C:\> Get-AzsContainerRegistrySetupStatus +PS C:\> (Get-AzsContainerRegistrySetupStatus).ToJsonString() { "id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Setup/locations/redmond/setup/value", diff --git a/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md index 2741160c..3e229228 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md @@ -1,6 +1,6 @@ ### Example 1: New Azs ContainerRegistry Quota ```powershell -PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 +PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 | ConvertTo-Json { "CapacityPerRegistryInGiB": 20, diff --git a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md index 54e44dd8..4ffb68b4 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md @@ -1,6 +1,6 @@ ### Example 1: Set Azs ContainerRegistry Configuration ```powershell -PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default +PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default | ConvertTo-Json { "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", diff --git a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md index 1d189538..5bf2ae64 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md @@ -1,6 +1,6 @@ ### Example 1: Set Azs ContainerRegistry Quota ```powershell -PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 +PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 | ConvertTo-Json { "CapacityPerRegistryInGiB": 30, diff --git a/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md b/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md index 6fec9ee6..6e5cf40c 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md @@ -1,8 +1,27 @@ ### Example 1: Start Azs ContainerRegistry Setup ```powershell -PS C:\> Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path +PS C:\> Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $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 -SslCertInputFile $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 -SslCertInputFile ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + 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. From 32f750ccc14d8582f825932db4467cf08b7b0a05 Mon Sep 17 00:00:00 2001 From: bganapa Date: Thu, 16 Sep 2021 18:53:20 -0700 Subject: [PATCH 07/34] [2108] Updating versions and release notes for the AzureStack release 2.2.0 (#131) * Updating versions for the AzureStack release 2.2.0 Adding changelong file * Updating changelog for review comments and for compute admin module --- src/Azs.Compute.Admin/readme.md | 2 +- src/AzureStack/AzureStack.nuspec | 7 +++--- src/AzureStack/AzureStack.psd1 | 9 ++++--- src/changelog.md | 43 ++++++++++++++++++++++++++++++++ 4 files changed, 54 insertions(+), 7 deletions(-) create mode 100644 src/changelog.md diff --git a/src/Azs.Compute.Admin/readme.md b/src/Azs.Compute.Admin/readme.md index 1a2a626d..19557521 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -55,7 +55,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.0.1 +module-version: 1.1.0 service-name: ComputeAdmin ### File Renames diff --git a/src/AzureStack/AzureStack.nuspec b/src/AzureStack/AzureStack.nuspec index 93fa0dee..8cdb0485 100644 --- a/src/AzureStack/AzureStack.nuspec +++ b/src/AzureStack/AzureStack.nuspec @@ -2,7 +2,7 @@ AzureStack - 2.1.1 + 2.2.0 Microsoft Corporation Microsoft Corporation true @@ -18,8 +18,9 @@ - - + + + diff --git a/src/AzureStack/AzureStack.psd1 b/src/AzureStack/AzureStack.psd1 index aa14816a..86ee73ed 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 = '2.2.0' # Supported PSEditions # CompatiblePSEditions = @() @@ -60,8 +60,10 @@ @{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.Compute.Admin'; RequiredVersion = '1.1.0'; }, @{ModuleName = 'Azs.Deployment.Admin'; RequiredVersion = '1.0.0'; }, + @{ModuleName = 'Azs.ContainerRegistry.Admin'; RequiredVersion = '0.2.0'; }, + @{ModuleName = 'Azs.ContainerService.Admin'; RequiredVersion = '0.1.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'; }, @@ -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..76c0da4c --- /dev/null +++ b/src/changelog.md @@ -0,0 +1,43 @@ + +# 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. + + +# 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 + From 6c1335eac2add3b47bbdec10c3b3fae98c82a720 Mon Sep 17 00:00:00 2001 From: larisaborodina <58491292+larisaborodina@users.noreply.github.com> Date: Mon, 27 Sep 2021 19:30:09 -0700 Subject: [PATCH 08/34] [ACR Admin] Customization Quota cmdlets to rename parameter to plural and few more enhancements. (#134) --- .../custom/New-AzsContainerRegistryQuota.ps1 | 196 ++++++++++++++++ .../custom/Set-AzsContainerRegistryQuota.ps1 | 213 ++++++++++++++++++ .../docs/Get-AzsContainerRegistryQuota.md | 6 +- .../docs/New-AzsContainerRegistryQuota.md | 14 +- .../docs/Set-AzsContainerRegistryQuota.md | 10 +- .../examples/Get-AzsContainerRegistryQuota.md | 6 +- .../examples/New-AzsContainerRegistryQuota.md | 4 +- .../examples/Set-AzsContainerRegistryQuota.md | 4 +- src/Azs.ContainerRegistry.Admin/readme.md | 40 ++++ .../Get-AzsContainerRegistryQuota.Tests.ps1 | 4 +- .../New-AzsContainerRegistryQuota.Tests.ps1 | 4 +- ...Remove-AzsContainerRegistryQuota.Tests.ps1 | 4 +- .../Set-AzsContainerRegistryQuota.Tests.ps1 | 10 +- 13 files changed, 482 insertions(+), 33 deletions(-) create mode 100644 src/Azs.ContainerRegistry.Admin/custom/New-AzsContainerRegistryQuota.ps1 create mode 100644 src/Azs.ContainerRegistry.Admin/custom/Set-AzsContainerRegistryQuota.ps1 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/docs/Get-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md index 3348bb51..75be33f7 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryQuota.md @@ -44,14 +44,14 @@ 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", - "NumberOfRegistry": 20, + "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", - "NumberOfRegistry": 30, + "NumberOfRegistries": 30, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ] @@ -67,7 +67,7 @@ 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", - "NumberOfRegistry": 20, + "NumberOfRegistries": 20, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ``` diff --git a/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md index 0969e782..5c8b64cc 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/New-AzsContainerRegistryQuota.md @@ -15,7 +15,7 @@ Create or update an existing container registry quota. ### CreateExpanded (Default) ``` New-AzsContainerRegistryQuota -Name [-Location ] [-SubscriptionId ] - [-CapacityPerRegistryInGiB ] [-NumberOfRegistry ] [-DefaultProfile ] [-Confirm] + [-CapacityPerRegistryInGiB ] [-NumberOfRegistries ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` @@ -32,13 +32,13 @@ Create or update an existing container registry quota. ### Example 1: New Azs ContainerRegistry Quota ```powershell -PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 | ConvertTo-Json +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", - "NumberOfRegistry": 20, + "NumberOfRegistries": 20, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ``` @@ -57,7 +57,7 @@ Aliases: Required: False Position: Named -Default value: None +Default value: 100 Accept pipeline input: False Accept wildcard characters: False ``` @@ -107,7 +107,7 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -NumberOfRegistry +### -NumberOfRegistries Total number of container registry accounts. ```yaml @@ -117,7 +117,7 @@ Aliases: Required: False Position: Named -Default value: None +Default value: 20 Accept pipeline input: False Accept wildcard characters: False ``` @@ -206,7 +206,7 @@ To create the parameters described below, construct a hash table containing the QUOTAOBJECT : Container registry quota. - `[CapacityPerRegistryInGiB ]`: Storage capacity (GiB) of each registry. - - `[NumberOfRegistry ]`: Total number of container registry accounts. + - `[NumberOfRegistries ]`: Total number of container registry accounts. ## RELATED LINKS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md index f6628853..daf08874 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryQuota.md @@ -15,7 +15,7 @@ Create or update an existing container registry quota. ### UpdateExpanded (Default) ``` Set-AzsContainerRegistryQuota -Name [-Location ] [-SubscriptionId ] - [-CapacityPerRegistryInGiB ] [-NumberOfRegistry ] [-DefaultProfile ] [-Confirm] + [-CapacityPerRegistryInGiB ] [-NumberOfRegistries ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` @@ -32,13 +32,13 @@ Create or update an existing container registry quota. ### Example 1: Set Azs ContainerRegistry Quota ```powershell -PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 | ConvertTo-Json +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", - "NumberOfRegistry": 30, + "NumberOfRegistries": 30, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ``` @@ -107,7 +107,7 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -NumberOfRegistry +### -NumberOfRegistries Total number of container registry accounts. ```yaml @@ -206,7 +206,7 @@ To create the parameters described below, construct a hash table containing the QUOTAOBJECT : Container registry quota. - `[CapacityPerRegistryInGiB ]`: Storage capacity (GiB) of each registry. - - `[NumberOfRegistry ]`: Total number of container registry accounts. + - `[NumberOfRegistries ]`: Total number of container registry accounts. ## RELATED LINKS diff --git a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md index 4f67d769..3f8b864d 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Get-AzsContainerRegistryQuota.md @@ -7,14 +7,14 @@ 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", - "NumberOfRegistry": 20, + "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", - "NumberOfRegistry": 30, + "NumberOfRegistries": 30, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ] @@ -30,7 +30,7 @@ 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", - "NumberOfRegistry": 20, + "NumberOfRegistries": 20, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ``` diff --git a/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md index 3e229228..25fdd761 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/examples/New-AzsContainerRegistryQuota.md @@ -1,12 +1,12 @@ ### Example 1: New Azs ContainerRegistry Quota ```powershell -PS C:\> New-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 | ConvertTo-Json +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", - "NumberOfRegistry": 20, + "NumberOfRegistries": 20, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ``` diff --git a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md index 5bf2ae64..3217c555 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryQuota.md @@ -1,12 +1,12 @@ ### Example 1: Set Azs ContainerRegistry Quota ```powershell -PS C:\> Set-AzsContainerRegistryQuota -QuotaName testquota -CapacityPerRegistryInGib 30 -NumberOfRegistry 30 | ConvertTo-Json +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", - "NumberOfRegistry": 30, + "NumberOfRegistries": 30, "Type": "Microsoft.ContainerRegistry.Admin/locations/quotas" } ``` diff --git a/src/Azs.ContainerRegistry.Admin/readme.md b/src/Azs.ContainerRegistry.Admin/readme.md index be3e78e9..749479ca 100644 --- a/src/Azs.ContainerRegistry.Admin/readme.md +++ b/src/Azs.ContainerRegistry.Admin/readme.md @@ -75,13 +75,53 @@ directive: 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 ContainerRegistrySetup - where: subject: ContainerRegistrySetup parameter-name: SslCertBase64 set: parameter-name: SslCert + + # 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 + - where: + verb: New + subject: Quota + hide: true + + # Hide the auto-generated Set-AzsContainerRegistryQuota and expose it through customized one + - where: + verb: Set + subject: Quota + hide: true + # Add release notes - from: Azs.ContainerRegistry.Admin.nuspec where: $ diff --git a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 index a6db9d72..083ee5de 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Get-AzsContainerRegistryQuota.Tests.ps1 @@ -24,7 +24,7 @@ Describe 'Get-AzsContainerRegistryQuota' { # Validate ContainerRegistry quota properties $containerRegistryQuota.CapacityPerRegistryInGib | Should Not Be $null - $containerRegistryQuota.NumberOfRegistry | 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 @@ -45,7 +45,7 @@ Describe 'Get-AzsContainerRegistryQuota' { $found | Should Not Be $null # Validate ContainerRegistry quota properties $expected.CapacityPerRegistryInGib | Should Be $found.CapacityPerRegistryInGib - $expected.NumberOfRegistry | Should Be $found.NumberOfRegistry + $expected.NumberOfRegistries | Should Be $found.NumberOfRegistries } } } diff --git a/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 index c533e683..9cebdf0e 100644 --- a/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/New-AzsContainerRegistryQuota.Tests.ps1 @@ -16,10 +16,10 @@ Describe 'New-AzsContainerRegistryQuota' { $global:TestName = 'TestCreateContainerRegistryQuota' $name = "TestCreateQuota" - $quota = New-AzsContainerRegistryQuota -CapacityPerRegistryInGib 20 -NumberOfRegistry 20 -Name $name + $quota = New-AzsContainerRegistryQuota -CapacityPerRegistryInGib 20 -NumberOfRegistries 20 -Name $name $quota | Should Not Be $null $quota.CapacityPerRegistryInGib | Should Be 20 - $quota.NumberOfRegistry | Should Be 20 + $quota.NumberOfRegistries | Should Be 20 Remove-AzsContainerRegistryQuota -Name $name } } diff --git a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 index ae7b6c9a..92ce140d 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryQuota.Tests.ps1 @@ -16,10 +16,10 @@ Describe 'Remove-AzsContainerRegistryQuota' { $global:TestName = 'TestDeleteContainerRegistryQuota' $name = "TestDeleteQuota" - $quota = New-AzsContainerRegistryQuota -CapacityPerRegistryInGib 50 -NumberOfRegistry 100 -Name $name + $quota = New-AzsContainerRegistryQuota -CapacityPerRegistryInGib 50 -NumberOfRegistries 100 -Name $name $quota | Should Not Be $null $quota.CapacityPerRegistryInGib | Should Be 50 - $quota.NumberOfRegistry | Should Be 100 + $quota.NumberOfRegistries | Should Be 100 Remove-AzsContainerRegistryQuota -Name $name $quota | New-AzsContainerRegistryQuota -Name $name $retrievedQuota = Get-AzsContainerRegistryQuota -Name $name diff --git a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 index 71a8d358..3d4f585e 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryQuota.Tests.ps1 @@ -24,7 +24,7 @@ Describe 'Set-AzsContainerRegistryQuota' { # Validate ContainerRegistry quota properties $containerRegistryQuota.CapacityPerRegistryInGib | Should Not Be $null - $containerRegistryQuota.NumberOfRegistry | 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 @@ -45,7 +45,7 @@ Describe 'Set-AzsContainerRegistryQuota' { $found | Should Not Be $null # Validate ContainerRegistry quota properties $expected.CapacityPerRegistryInGib | Should Be $found.CapacityPerRegistryInGib - $expected.NumberOfRegistry | Should Be $found.NumberOfRegistry + $expected.NumberOfRegistries | Should Be $found.NumberOfRegistries } } } @@ -68,16 +68,16 @@ Describe 'Set-AzsContainerRegistryQuota' { $updated = Set-AzsContainerRegistryQuota ` -CapacityPerRegistryInGib $CapInGiB ` - -NumberOfRegistry $NumOfRegistry ` + -NumberOfRegistries $NumOfRegistry ` -Name $name ValidateContainerRegistryQuota -containerRegistryQuota $updated $updated.CapacityPerRegistryInGib | Should Be $CapInGiB - $updated.NumberOfRegistry | Should Be $NumOfRegistry + $updated.NumberOfRegistries | Should Be $NumOfRegistry Set-AzsContainerRegistryQuota ` -CapacityPerRegistryInGib $quota.CapacityPerRegistryInGib ` - -NumberOfRegistry $quota.NumberOfRegistry ` + -NumberOfRegistries $quota.NumberOfRegistries ` -Name $name } } From a56e9cf14d1f693136a0e7609a7b01be53915601 Mon Sep 17 00:00:00 2001 From: larisaborodina <58491292+larisaborodina@users.noreply.github.com> Date: Fri, 15 Oct 2021 14:40:53 -0700 Subject: [PATCH 09/34] All Configuration related cmdlet should take parameter name as Name instead of ConfigurationName (#137) * All Configuration related commandlet should take parameter name as Name and not ConfigurationName * Set-AzsContainerRegistryConfiguration should not make ConfigurationName as mandatory it should internally used default as value * Follow up review comments. * Set-AzsContainerRegistryConfiguration should not make ConfigurationName as mandatory it should internally used default as value * Set-AzsContainerRegistryConfiguration should not make ConfigurationName as mandatory it should internally used default as value --- .../Start-AzsContainerRegistrySetup.ps1 | 215 ++++++++++++++++++ .../docs/Azs.ContainerRegistry.Admin.md | 5 +- .../Get-AzsContainerRegistryConfiguration.md | 34 +-- ...emove-AzsContainerRegistryConfiguration.md | 193 ---------------- .../Set-AzsContainerRegistryConfiguration.md | 32 +-- .../docs/Start-AzsContainerRegistrySetup.md | 50 ++-- ...emove-AzsContainerRegistryConfiguration.md | 7 - .../Set-AzsContainerRegistryConfiguration.md | 2 +- .../Start-AzsContainerRegistrySetup.md | 6 +- src/Azs.ContainerRegistry.Admin/readme.md | 44 +++- ...tainerRegistryConfiguration.Recording.json | 160 ------------- ...zsContainerRegistryConfiguration.Tests.ps1 | 26 --- ...zsContainerRegistryConfiguration.Tests.ps1 | 4 +- .../Start-AzsContainerRegistrySetup.Tests.ps1 | 4 +- .../test/{ssl.pem => ssl.pfx} | 0 15 files changed, 315 insertions(+), 467 deletions(-) create mode 100644 src/Azs.ContainerRegistry.Admin/custom/Start-AzsContainerRegistrySetup.ps1 delete mode 100644 src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md delete mode 100644 src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryConfiguration.md delete mode 100644 src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Recording.json delete mode 100644 src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 rename src/Azs.ContainerRegistry.Admin/test/{ssl.pem => ssl.pfx} (100%) 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 index 09e5ebf1..aba908d8 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Azs.ContainerRegistry.Admin.md @@ -1,6 +1,6 @@ --- Module Name: Azs.ContainerRegistry.Admin -Module Guid: 900db1dd-8338-4e8f-a01c-81ab98484955 +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 @@ -29,9 +29,6 @@ Returns the status of the container registry setup. ### [New-AzsContainerRegistryQuota](New-AzsContainerRegistryQuota.md) Create or update an existing container registry quota. -### [Remove-AzsContainerRegistryConfiguration](Remove-AzsContainerRegistryConfiguration.md) -Delete an existing container registry configuration - ### [Remove-AzsContainerRegistryQuota](Remove-AzsContainerRegistryQuota.md) Delete an existing container registry quota diff --git a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md index 27e67418..c9a21130 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Get-AzsContainerRegistryConfiguration.md @@ -20,8 +20,8 @@ Get-AzsContainerRegistryConfiguration [-Location ] [-SubscriptionId [-Location ] - [-SubscriptionId ] [-DefaultProfile ] [] +Get-AzsContainerRegistryConfiguration -Name [-Location ] [-SubscriptionId ] + [-DefaultProfile ] [] ``` ### GetViaIdentity @@ -51,21 +51,6 @@ Returns the specified configuration details. ## PARAMETERS -### -ConfigurationName -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 -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. @@ -112,6 +97,21 @@ 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. diff --git a/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md deleted file mode 100644 index 28c12f0f..00000000 --- a/src/Azs.ContainerRegistry.Admin/docs/Remove-AzsContainerRegistryConfiguration.md +++ /dev/null @@ -1,193 +0,0 @@ ---- -external help file: -Module Name: Azs.ContainerRegistry.Admin -online version: https://docs.microsoft.com/en-us/powershell/module/azs.containerregistry.admin/remove-azscontainerregistryconfiguration -schema: 2.0.0 ---- - -# Remove-AzsContainerRegistryConfiguration - -## SYNOPSIS -Delete an existing container registry configuration - -## SYNTAX - -### Delete (Default) -``` -Remove-AzsContainerRegistryConfiguration -ConfigurationName [-Location ] - [-SubscriptionId ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] -``` - -### DeleteViaIdentity -``` -Remove-AzsContainerRegistryConfiguration -InputObject - [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] -``` - -## DESCRIPTION -Delete an existing container registry configuration - -## EXAMPLES - -### Example 1: Remove Azs ContainerRegistry Configuration -```powershell -PS C:\> Remove-AzsContainerRegistryConfiguration -ConfigurationName default - -``` - -Delete an existing container registry configuration. - -## PARAMETERS - -### -ConfigurationName -The name of the configuration. - -```yaml -Type: System.String -Parameter Sets: Delete -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: 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 -``` - -### -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 index 64a624e8..fc00a4c3 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Set-AzsContainerRegistryConfiguration.md @@ -14,16 +14,15 @@ Configure container registry overall configuration properties. ### PutExpanded (Default) ``` -Set-AzsContainerRegistryConfiguration -ConfigurationName [-Location ] - [-SubscriptionId ] [-MaximumCapacityInGiB ] [-DefaultProfile ] [-Confirm] [-WhatIf] - [] +Set-AzsContainerRegistryConfiguration -MaximumCapacityInGiB [-Location ] + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` ### Put ``` -Set-AzsContainerRegistryConfiguration -ConfigurationName - -ConfigurationObject [-Location ] [-SubscriptionId ] - [-DefaultProfile ] [-Confirm] [-WhatIf] [] +Set-AzsContainerRegistryConfiguration -ConfigurationObject + [-Location ] [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] ``` ## DESCRIPTION @@ -33,7 +32,7 @@ Configure container registry overall configuration properties. ### Example 1: Set Azs ContainerRegistry Configuration ```powershell -PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default | ConvertTo-Json +PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 | ConvertTo-Json { "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", @@ -47,21 +46,6 @@ Configure container registry overall configuration properties. ## PARAMETERS -### -ConfigurationName -The name of the configuration. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -ConfigurationObject Container registry configuration property. To construct, see NOTES section for CONFIGURATIONOBJECT properties and create a hash table. @@ -116,7 +100,7 @@ Type: System.Int32 Parameter Sets: PutExpanded Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -190,7 +174,7 @@ To create the parameters described below, construct a hash table containing the CONFIGURATIONOBJECT : Container registry configuration property. - - `[MaximumCapacityInGiB ]`: Total storage capacity (GiB) which can used by the registry. + - `MaximumCapacityInGiB `: Total storage capacity (GiB) which can used by the registry. ## RELATED LINKS diff --git a/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md index ff12d24c..1b7c872c 100644 --- a/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md +++ b/src/Azs.ContainerRegistry.Admin/docs/Start-AzsContainerRegistrySetup.md @@ -14,8 +14,9 @@ Invokes container registry certificate uploading and service deployment. ### StartExpanded (Default) ``` -Start-AzsContainerRegistrySetup [-Location ] [-SubscriptionId ] [-Password ] - [-SslCertInputFile ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +Start-AzsContainerRegistrySetup [-Location ] [-SubscriptionId ] + [-CertificateInputFile ] [-Password ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] ``` ### Start @@ -33,8 +34,9 @@ Start-AzsContainerRegistrySetup -InputObject ### StartViaIdentityExpanded ``` -Start-AzsContainerRegistrySetup -InputObject [-Password ] - [-SslCertInputFile ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +Start-AzsContainerRegistrySetup -InputObject + [-CertificateInputFile ] [-Password ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] ``` ## DESCRIPTION @@ -44,7 +46,7 @@ Invokes container registry certificate uploading and service deployment. ### Example 1: Start Azs ContainerRegistry Setup ```powershell -PS C:\> Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path | ConvertTo-Json +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", @@ -58,11 +60,11 @@ 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 -SslCertInputFile $pfx_cert_path | ConvertTo-Json +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 -SslCertInputFile ... ++ 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 @@ -72,6 +74,21 @@ 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. @@ -133,21 +150,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -SslCertInputFile -Input File for SslCert (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 -``` - ### -StartSetupRequest Container registry setup properties. To construct, see NOTES section for STARTSETUPREQUEST properties and create a hash table. @@ -241,8 +243,8 @@ INPUTOBJECT : Identity Parameter - `[SubscriptionId ]`: The ID of the target subscription. STARTSETUPREQUEST : Container registry setup properties. - - `[Password ]`: Ssl certificate password. - - `[SslCertBase64 ]`: Ssl certificate in base64 format. + - `Password `: Ssl certificate password. + - `SslCertBase64 `: Ssl certificate in base64 format. ## RELATED LINKS diff --git a/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryConfiguration.md deleted file mode 100644 index 86bb1fa0..00000000 --- a/src/Azs.ContainerRegistry.Admin/examples/Remove-AzsContainerRegistryConfiguration.md +++ /dev/null @@ -1,7 +0,0 @@ -### Example 1: Remove Azs ContainerRegistry Configuration -```powershell -PS C:\> Remove-AzsContainerRegistryConfiguration -ConfigurationName default - -``` - -Delete an existing container registry configuration. \ No newline at end of file diff --git a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md index 4ffb68b4..ba435e9e 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Set-AzsContainerRegistryConfiguration.md @@ -1,6 +1,6 @@ ### Example 1: Set Azs ContainerRegistry Configuration ```powershell -PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 -ConfigurationName default | ConvertTo-Json +PS C:\> Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib 30 | ConvertTo-Json { "Id": "/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/Default", diff --git a/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md b/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md index 6e5cf40c..fe9cca7d 100644 --- a/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md +++ b/src/Azs.ContainerRegistry.Admin/examples/Start-AzsContainerRegistrySetup.md @@ -1,6 +1,6 @@ ### Example 1: Start Azs ContainerRegistry Setup ```powershell -PS C:\> Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path | ConvertTo-Json +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", @@ -14,11 +14,11 @@ 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 -SslCertInputFile $pfx_cert_path | ConvertTo-Json +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 -SslCertInputFile ... ++ 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 diff --git a/src/Azs.ContainerRegistry.Admin/readme.md b/src/Azs.ContainerRegistry.Admin/readme.md index 749479ca..f787a3e3 100644 --- a/src/Azs.ContainerRegistry.Admin/readme.md +++ b/src/Azs.ContainerRegistry.Admin/readme.md @@ -95,13 +95,40 @@ directive: 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: SslCert + parameter-name: Certificate # Rename model property names - where: @@ -109,19 +136,28 @@ directive: 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: $ diff --git a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Recording.json b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Recording.json deleted file mode 100644 index 7efaed33..00000000 --- a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Recording.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "Remove-AzsContainerRegistryConfiguration+[NoContext]+TestRemoveContainerRegistryConfiguration+$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": [ "13" ], - "x-ms-client-request-id": [ "ca973158-44b9-4f74-9f7b-d3493ce4bd73" ], - "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": [ "780b1234-e64b-4c6f-b69e-125d779e3e52" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14901" ], - "x-ms-correlation-request-id": [ "2ec702aa-52cf-49ba-8839-9d1608be7f0a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181227Z:2ec702aa-52cf-49ba-8839-9d1608be7f0a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 19 Aug 2021 18:12:27 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 - } - }, - "Remove-AzsContainerRegistryConfiguration+[NoContext]+TestRemoveContainerRegistryConfiguration+$DELETE+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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r1308.masd.stbtest.microsoft.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations/default?api-version=2019-11-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "22d61cee-7cb7-45be-af4f-55ac32c8bc22" ], - "CommandName": [ "Remove-AzsContainerRegistryConfiguration" ], - "FullCommandName": [ "Remove-AzsContainerRegistryConfiguration_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": [ "0df61c64-6ae1-4e33-a6bb-7a8abe68af7f" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ "77cda7ef-3503-4012-a9c2-bca3a1def352" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181229Z:77cda7ef-3503-4012-a9c2-bca3a1def352" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 19 Aug 2021 18:12:29 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] - }, - "Content": null, - "isContentBase64": false - } - }, - "Remove-AzsContainerRegistryConfiguration+[NoContext]+TestRemoveContainerRegistryConfiguration+$GET+https://management.azure.com/subscriptions/7e41090c-4aa7-40bc-856a-a993f8fbd215/providers/Microsoft.ContainerRegistry.Admin/locations/redmond/configurations?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/configurations?api-version=2019-11-01-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "e7f13bfb-34f0-46db-b66f-ad04cc651b8c" ], - "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": [ "f56af45b-a923-4fd0-b8b7-bc35b7e97c40" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14898" ], - "x-ms-correlation-request-id": [ "ea9fcffd-5d53-4d90-973c-768716f2b188" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181230Z:ea9fcffd-5d53-4d90-973c-768716f2b188" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 19 Aug 2021 18:12:30 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 - } - }, - "Remove-AzsContainerRegistryConfiguration+[NoContext]+TestRemoveContainerRegistryConfiguration+$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+4": { - "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": [ "26bb3969-7b78-4f5b-906f-4df70648cc85" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-correlation-request-id": [ "5fcf1ad7-d9f4-498e-9b51-d3527a690004" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181232Z:5fcf1ad7-d9f4-498e-9b51-d3527a690004" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 19 Aug 2021 18:12:32 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/Remove-AzsContainerRegistryConfiguration.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 deleted file mode 100644 index 553780be..00000000 --- a/src/Azs.ContainerRegistry.Admin/test/Remove-AzsContainerRegistryConfiguration.Tests.ps1 +++ /dev/null @@ -1,26 +0,0 @@ -$loadEnvPath = Join-Path $PSScriptRoot 'loadEnvJson.ps1' -if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnvJson.ps1' -} -. ($loadEnvPath) -$TestRecordingFile = Join-Path $PSScriptRoot 'Remove-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 'Remove-AzsContainerRegistryConfiguration' { - It "TestRemoveContainerRegistryConfiguration" -Skip:$('TestRemoveContainerRegistryConfiguration' -in $global:SkippedTests) { - $global:TestName = 'TestRemoveContainerRegistryConfiguration' - - $maxCapacityInGib = (Get-AzsContainerRegistryConfiguration ).MaximumCapacityInGib - $targetCapacityInGib = 0 - Remove-AzsContainerRegistryConfiguration -ConfigurationName default - $result = Get-AzsContainerRegistryConfiguration - $result | Should Not Be $null - $result.MaximumCapacityInGib | Should Be $targetCapacityInGib - Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $maxCapacityInGib -ConfigurationName default - } -} diff --git a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 index 42aeb4ff..6fdea608 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Set-AzsContainerRegistryConfiguration.Tests.ps1 @@ -17,9 +17,9 @@ Describe 'Set-AzsContainerRegistryConfiguration' { $maxCapacityInGib = (Get-AzsContainerRegistryConfiguration ).MaximumCapacityInGib $targetCapacityInGib = $originalDays + 1 - $result = Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $targetCapacityInGib -ConfigurationName default + $result = Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $targetCapacityInGib $result | Should Not Be $null $result.MaximumCapacityInGib | Should Be $targetCapacityInGib - Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $maxCapacityInGib -ConfigurationName default + Set-AzsContainerRegistryConfiguration -MaximumCapacityInGib $maxCapacityInGib } } diff --git a/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 index 7b536228..59c9221c 100644 --- a/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 +++ b/src/Azs.ContainerRegistry.Admin/test/Start-AzsContainerRegistrySetup.Tests.ps1 @@ -13,7 +13,7 @@ while(-not $mockingPath) { Describe 'Start-AzsContainerRegistrySetup' { $password = ConvertTo-SecureString "password" -AsPlainText -Force - $pfx_cert_path = Join-Path $PSScriptRoot 'SSL.pem' + $pfx_cert_path = Join-Path $PSScriptRoot 'SSL.pfx' - { Start-AzsContainerRegistrySetup -Password $password -SslCertInputFile $pfx_cert_path } | Should Not Throw + { Start-AzsContainerRegistrySetup -Password $password -CertificateInputFile $pfx_cert_path } | Should Not Throw } diff --git a/src/Azs.ContainerRegistry.Admin/test/ssl.pem b/src/Azs.ContainerRegistry.Admin/test/ssl.pfx similarity index 100% rename from src/Azs.ContainerRegistry.Admin/test/ssl.pem rename to src/Azs.ContainerRegistry.Admin/test/ssl.pfx From 0f81243b48003ea426e27f19768e22de26109704 Mon Sep 17 00:00:00 2001 From: bganapa Date: Tue, 9 Nov 2021 14:40:00 -0800 Subject: [PATCH 10/34] Updating to point to stack2108 branch of specs repo --- src/readme.azurestack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/readme.azurestack.md b/src/readme.azurestack.md index 358383d8..11b4a780 100644 --- a/src/readme.azurestack.md +++ b/src/readme.azurestack.md @@ -4,7 +4,7 @@ ``` yaml azure: true powershell: true -branch: main +branch: stack2108 repo: https://github.com/Azure/azure-rest-api-specs/tree/$(branch) metadata: authors: Microsoft Corporation From e7a9d80a58b4f54153d9dc4265ae1856570b6a18 Mon Sep 17 00:00:00 2001 From: bganapa Date: Mon, 29 Nov 2021 14:46:20 -0800 Subject: [PATCH 11/34] Fix - Including Fabric.Admin as part of AzureStack Nuspec --- src/AzureStack/AzureStack.nuspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/AzureStack/AzureStack.nuspec b/src/AzureStack/AzureStack.nuspec index 8cdb0485..7195a1f8 100644 --- a/src/AzureStack/AzureStack.nuspec +++ b/src/AzureStack/AzureStack.nuspec @@ -22,6 +22,7 @@ + @@ -36,4 +37,4 @@ - \ No newline at end of file + From d9e5e707629af55c8fc89ba4d94c8623cf59b360 Mon Sep 17 00:00:00 2001 From: bganapa Date: Mon, 6 Dec 2021 13:23:11 -0800 Subject: [PATCH 12/34] Exclude Id from output table view --- src/readme.azurestack.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/readme.azurestack.md b/src/readme.azurestack.md index 11b4a780..057f0f2b 100644 --- a/src/readme.azurestack.md +++ b/src/readme.azurestack.md @@ -30,6 +30,12 @@ clear-output-folder: true output-folder: . ``` +> Exclude some properties in table view +``` yaml +exclude-tableview-properties: + - Id +``` + > Directives ``` yaml directive: From 919c77dd243673259b8ee21c394bd578626ae039 Mon Sep 17 00:00:00 2001 From: bganapa Date: Mon, 6 Dec 2021 13:24:51 -0800 Subject: [PATCH 13/34] Suppressing the table format view for MigrationSubTask --- src/Azs.Compute.Admin/readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Azs.Compute.Admin/readme.md b/src/Azs.Compute.Admin/readme.md index 19557521..5ed7ffe9 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -192,6 +192,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 From 4fa47a19bff32ddf0c7ff710cc35991d9a6bceb0 Mon Sep 17 00:00:00 2001 From: bganapa Date: Wed, 8 Dec 2021 14:08:00 -0800 Subject: [PATCH 14/34] Updating Az.Resources module dependency to 0.12.0 --- src/Az.BootStrapper/Module/azprofilemap.json | 2 +- src/Azs.AzureBridge.Admin/readme.md | 4 ++-- src/Azs.Backup.Admin/readme.md | 4 ++-- src/Azs.Commerce.Admin/readme.md | 4 ++-- src/Azs.Compute.Admin/readme.md | 4 ++-- src/Azs.ContainerRegistry.Admin/readme.md | 4 ++-- src/Azs.ContainerService.Admin/readme.md | 4 ++-- src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec | 2 +- src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 | 2 +- src/Azs.Fabric.Admin/readme.md | 4 ++-- src/Azs.Gallery.Admin/readme.md | 4 ++-- src/Azs.InfrastructureInsights.Admin/readme.md | 4 ++-- src/Azs.KeyVault.Admin/readme.md | 4 ++-- src/Azs.Network.Admin/readme.md | 4 ++-- src/Azs.Storage.Admin/readme.md | 4 ++-- src/Azs.Subscriptions.Admin/readme.md | 4 ++-- src/Azs.Subscriptions/readme.md | 4 ++-- src/Azs.Update.Admin/readme.md | 4 ++-- src/AzureStack/AzureStack.nuspec | 2 +- src/AzureStack/AzureStack.psd1 | 2 +- 20 files changed, 35 insertions(+), 35 deletions(-) diff --git a/src/Az.BootStrapper/Module/azprofilemap.json b/src/Az.BootStrapper/Module/azprofilemap.json index e6d74693..9c1aa596 100644 --- a/src/Az.BootStrapper/Module/azprofilemap.json +++ b/src/Az.BootStrapper/Module/azprofilemap.json @@ -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..bed408d8 100644 --- a/src/Azs.AzureBridge.Admin/readme.md +++ b/src/Azs.AzureBridge.Admin/readme.md @@ -127,12 +127,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Azurebridge.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.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('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.12.0\'; \}\}\)\"\);'); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Backup.Admin/readme.md b/src/Azs.Backup.Admin/readme.md index 8ce2fdcb..8cec2610 100644 --- a/src/Azs.Backup.Admin/readme.md +++ b/src/Azs.Backup.Admin/readme.md @@ -178,12 +178,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Backup.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.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('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.12.0\'; \}\}\)\"\);'); # PSD1 Changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Commerce.Admin/readme.md b/src/Azs.Commerce.Admin/readme.md index cd2fd8af..7c961df6 100644 --- a/src/Azs.Commerce.Admin/readme.md +++ b/src/Azs.Commerce.Admin/readme.md @@ -87,12 +87,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Commerce.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.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('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.12.0\'; \}\}\)\"\);'); # PSD1 Changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Compute.Admin/readme.md b/src/Azs.Compute.Admin/readme.md index 5ed7ffe9..165922f2 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -370,12 +370,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Compute.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.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('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.12.0\'; \}\}\)\"\);'); # PSD1 Changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.ContainerRegistry.Admin/readme.md b/src/Azs.ContainerRegistry.Admin/readme.md index f787a3e3..8bd65c13 100644 --- a/src/Azs.ContainerRegistry.Admin/readme.md +++ b/src/Azs.ContainerRegistry.Admin/readme.md @@ -166,12 +166,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.ContainerRegistry.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.ContainerRegistry.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerRegistry.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; ModuleVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerRegistry.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerRegistry.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; ModuleVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.12.0\'; \}\}\)\"\);'); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.ContainerService.Admin/readme.md b/src/Azs.ContainerService.Admin/readme.md index 62275f01..ef7b2712 100644 --- a/src/Azs.ContainerService.Admin/readme.md +++ b/src/Azs.ContainerService.Admin/readme.md @@ -78,12 +78,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.ContainerService.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.ContainerService.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerService.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; ModuleVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.11.0\'; \}\}\)\"\);'); + transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerService.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerService.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; ModuleVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.12.0\'; \}\}\)\"\);'); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec b/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec index 76d9e9fd..63c9e43b 100644 --- a/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec +++ b/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec @@ -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..3ca6db1a 100644 --- a/src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 +++ b/src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 @@ -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..329cf115 100644 --- a/src/Azs.Fabric.Admin/readme.md +++ b/src/Azs.Fabric.Admin/readme.md @@ -660,12 +660,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Fabric.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.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('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.12.0\'; \}\}\)\"\);'); # 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..8fa27b6e 100644 --- a/src/Azs.Gallery.Admin/readme.md +++ b/src/Azs.Gallery.Admin/readme.md @@ -108,12 +108,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Gallery.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.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('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.12.0\'; \}\}\)\"\);'); # 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..49d6f263 100644 --- a/src/Azs.InfrastructureInsights.Admin/readme.md +++ b/src/Azs.InfrastructureInsights.Admin/readme.md @@ -187,12 +187,12 @@ 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\'; \}\}\)\"\);'); + 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.12.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..c61da330 100644 --- a/src/Azs.KeyVault.Admin/readme.md +++ b/src/Azs.KeyVault.Admin/readme.md @@ -74,12 +74,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Keyvault.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.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('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.12.0\'; \}\}\)\"\);'); # 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..88435164 100644 --- a/src/Azs.Network.Admin/readme.md +++ b/src/Azs.Network.Admin/readme.md @@ -183,12 +183,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Network.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.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('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.12.0\'; \}\}\)\"\);'); # 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..287ab5c5 100644 --- a/src/Azs.Storage.Admin/readme.md +++ b/src/Azs.Storage.Admin/readme.md @@ -276,12 +276,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Storage.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.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('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.12.0\'; \}\}\)\"\);'); # 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..d090a163 100644 --- a/src/Azs.Subscriptions.Admin/readme.md +++ b/src/Azs.Subscriptions.Admin/readme.md @@ -369,12 +369,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Subscriptions.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.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('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.12.0\'; \}\}\)\"\);'); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.Subscriptions/readme.md b/src/Azs.Subscriptions/readme.md index ebaac8a0..f363ac9d 100644 --- a/src/Azs.Subscriptions/readme.md +++ b/src/Azs.Subscriptions/readme.md @@ -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..7cd5129f 100644 --- a/src/Azs.Update.Admin/readme.md +++ b/src/Azs.Update.Admin/readme.md @@ -171,12 +171,12 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.Update.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.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('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.12.0\'; \}\}\)\"\);'); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/AzureStack/AzureStack.nuspec b/src/AzureStack/AzureStack.nuspec index 7195a1f8..f9b7e713 100644 --- a/src/AzureStack/AzureStack.nuspec +++ b/src/AzureStack/AzureStack.nuspec @@ -14,7 +14,7 @@ AzureStack ResourceManager ARM PSModule Administrator - + diff --git a/src/AzureStack/AzureStack.psd1 b/src/AzureStack/AzureStack.psd1 index 86ee73ed..b76ec8dc 100644 --- a/src/AzureStack/AzureStack.psd1 +++ b/src/AzureStack/AzureStack.psd1 @@ -56,7 +56,7 @@ # 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 = 'Az.Resources'; RequiredVersion = '0.12.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'; }, From 42863f91800ed643fd3cef14e6ed690e95616d7d Mon Sep 17 00:00:00 2001 From: bganapa Date: Fri, 10 Dec 2021 17:45:53 -0800 Subject: [PATCH 15/34] Updating module versions for the Az.Resources update --- .../Module/Az.BootStrapper.psd1 | 2 +- src/Az.BootStrapper/Module/azprofilemap.json | 2 +- src/Azs.AzureBridge.Admin/readme.md | 2 +- src/Azs.Backup.Admin/readme.md | 2 +- src/Azs.Commerce.Admin/readme.md | 2 +- .../Azs.Deployment.Admin.nuspec | 2 +- .../Module/Azs.Deployment.Admin.psd1 | 2 +- src/Azs.Fabric.Admin/readme.md | 2 +- src/Azs.Gallery.Admin/readme.md | 2 +- .../readme.md | 2 +- src/Azs.KeyVault.Admin/readme.md | 2 +- src/Azs.Network.Admin/readme.md | 2 +- src/Azs.Storage.Admin/readme.md | 2 +- src/Azs.Subscriptions.Admin/readme.md | 2 +- src/Azs.Subscriptions/readme.md | 2 +- src/Azs.Update.Admin/readme.md | 2 +- src/AzureStack/AzureStack.psd1 | 28 +++++++++---------- 17 files changed, 30 insertions(+), 30 deletions(-) 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 9c1aa596..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" diff --git a/src/Azs.AzureBridge.Admin/readme.md b/src/Azs.AzureBridge.Admin/readme.md index bed408d8..17070c27 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 diff --git a/src/Azs.Backup.Admin/readme.md b/src/Azs.Backup.Admin/readme.md index 8cec2610..9544fe2c 100644 --- a/src/Azs.Backup.Admin/readme.md +++ b/src/Azs.Backup.Admin/readme.md @@ -51,7 +51,7 @@ metadata: description: 'Microsoft AzureStack PowerShell: Backup Admin cmdlets' subject-prefix: '' -module-version: 1.0.1 +module-version: 1.0.2 service-name: BackupAdmin ### File Renames diff --git a/src/Azs.Commerce.Admin/readme.md b/src/Azs.Commerce.Admin/readme.md index 7c961df6..73781165 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 ### diff --git a/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec b/src/Azs.Deployment.Admin/Azs.Deployment.Admin.nuspec index 63c9e43b..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 diff --git a/src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 b/src/Azs.Deployment.Admin/Module/Azs.Deployment.Admin.psd1 index 3ca6db1a..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' diff --git a/src/Azs.Fabric.Admin/readme.md b/src/Azs.Fabric.Admin/readme.md index 329cf115..9de26959 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 diff --git a/src/Azs.Gallery.Admin/readme.md b/src/Azs.Gallery.Admin/readme.md index 8fa27b6e..c132d495 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 ``` diff --git a/src/Azs.InfrastructureInsights.Admin/readme.md b/src/Azs.InfrastructureInsights.Admin/readme.md index 49d6f263..27e679fe 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 diff --git a/src/Azs.KeyVault.Admin/readme.md b/src/Azs.KeyVault.Admin/readme.md index c61da330..79322901 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 diff --git a/src/Azs.Network.Admin/readme.md b/src/Azs.Network.Admin/readme.md index 88435164..666a3a20 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 diff --git a/src/Azs.Storage.Admin/readme.md b/src/Azs.Storage.Admin/readme.md index 287ab5c5..f58a4919 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 diff --git a/src/Azs.Subscriptions.Admin/readme.md b/src/Azs.Subscriptions.Admin/readme.md index d090a163..0865bdcb 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 diff --git a/src/Azs.Subscriptions/readme.md b/src/Azs.Subscriptions/readme.md index f363ac9d..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 diff --git a/src/Azs.Update.Admin/readme.md b/src/Azs.Update.Admin/readme.md index 7cd5129f..c1a9fb98 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 diff --git a/src/AzureStack/AzureStack.psd1 b/src/AzureStack/AzureStack.psd1 index b76ec8dc..b09adc08 100644 --- a/src/AzureStack/AzureStack.psd1 +++ b/src/AzureStack/AzureStack.psd1 @@ -57,23 +57,23 @@ ### IMPORTANT - Note that the module names are case sensitive ### RequiredModules = @(@{ModuleName = 'Az.Accounts'; RequiredVersion = '2.2.8'; }, @{ModuleName = 'Az.Resources'; RequiredVersion = '0.12.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.Azurebridge.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Backup.Admin'; RequiredVersion = '1.0.2'; }, + @{ModuleName = 'Azs.Commerce.Admin'; RequiredVersion = '1.0.2'; }, @{ModuleName = 'Azs.Compute.Admin'; RequiredVersion = '1.1.0'; }, - @{ModuleName = 'Azs.Deployment.Admin'; RequiredVersion = '1.0.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.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 = '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 = @() From 8de090bab03ebb58667632f7f6c73349813fb9a1 Mon Sep 17 00:00:00 2001 From: bganapa Date: Fri, 10 Dec 2021 18:36:20 -0800 Subject: [PATCH 16/34] Moving RequiredModules metadata to readme.azurestack.md --- src/Azs.Backup.Admin/.gitignore | 1 + src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 | 25 ++ src/Azs.Backup.Admin/custom/README.md | 41 ++++ src/Azs.Backup.Admin/how-to.md | 58 +++++ src/Azs.Backup.Admin/license.txt | 227 ++++++++++++++++++ src/Azs.Backup.Admin/readme.md | 8 +- src/Azs.Backup.Admin/test/README.md | 17 ++ .../utils/Unprotect-SecureString.ps1 | 16 ++ src/Azs.Commerce.Admin/readme.md | 5 - src/Azs.Compute.Admin/readme.md | 4 - src/Azs.ContainerRegistry.Admin/readme.md | 7 +- src/Azs.ContainerService.Admin/readme.md | 2 +- src/Azs.Fabric.Admin/readme.md | 5 - src/Azs.Gallery.Admin/readme.md | 5 - .../readme.md | 4 - src/Azs.KeyVault.Admin/readme.md | 5 - src/Azs.Network.Admin/readme.md | 5 - src/Azs.Storage.Admin/readme.md | 5 - src/Azs.Subscriptions.Admin/readme.md | 5 - src/Azs.Update.Admin/readme.md | 5 - src/readme.azurestack.md | 5 + 21 files changed, 395 insertions(+), 60 deletions(-) create mode 100644 src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 create mode 100644 src/Azs.Backup.Admin/custom/README.md create mode 100644 src/Azs.Backup.Admin/how-to.md create mode 100644 src/Azs.Backup.Admin/license.txt create mode 100644 src/Azs.Backup.Admin/test/README.md create mode 100644 src/Azs.Backup.Admin/utils/Unprotect-SecureString.ps1 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/Azs.Backup.Admin.psd1 b/src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 new file mode 100644 index 00000000..84e77066 --- /dev/null +++ b/src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 @@ -0,0 +1,25 @@ +@{ + GUID = '2e202983-13f3-4bc9-a5fb-98911e8d1a12' + RootModule = 'Azs.Backup.Admin.psm1' + ModuleVersion = '1.0.2' + CompatiblePSEditions = 'Core', 'Desktop' + Author = 'Microsoft Corporation' + CompanyName = 'Microsoft Corporation' + Copyright = 'Microsoft Corporation. All rights reserved.' + Description = 'Microsoft AzureStack PowerShell: Backup Admin cmdlets' + PowerShellVersion = '5.1' + DotNetFrameworkVersion = '4.7.2' + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'}, @{ModuleName = 'Az.Resources'; ModuleVersion = '0.12.0'}) + RequiredAssemblies = './bin/Azs.Backup.Admin.private.dll' + FormatsToProcess = './Azs.Backup.Admin.format.ps1xml' + FunctionsToExport = 'Get-AzsBackup', 'Get-AzsBackupConfiguration', 'Invoke-AzsPruneBackupLocationExternalStore', 'Restore-AzsBackup', 'Set-AzsBackupConfiguration', 'Start-AzsBackup', '*' + AliasesToExport = '*' + PrivateData = @{ + PSData = @{ + Tags = 'AzureStack', 'ResourceManager', 'ARM', 'PSModule' + LicenseUri = 'https://aka.ms/azps-license' + ProjectUri = 'https://github.com/Azure/azurestack-powershell' + ReleaseNotes = 'AzureStack Hub Admin module generated with https://github.com/Azure/autorest.powershell' + } + } +} diff --git a/src/Azs.Backup.Admin/custom/README.md b/src/Azs.Backup.Admin/custom/README.md new file mode 100644 index 00000000..3b70ac8b --- /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 fundamental 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 propagated 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/how-to.md b/src/Azs.Backup.Admin/how-to.md new file mode 100644 index 00000000..e450c8f6 --- /dev/null +++ b/src/Azs.Backup.Admin/how-to.md @@ -0,0 +1,58 @@ +# How-To +This document describes how to develop for `Azs.Backup.Admin`. + +## Building `Azs.Backup.Admin` +To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [README.md](exports/README.md) in the `exports` folder. + +## Creating custom cmdlets +To add cmdlets that were not generated by the REST specification, use the `custom` folder. This folder allows you to add handwritten `.ps1` and `.cs` files. Currently, we support using `.ps1` scripts as new cmdlets or as additional low-level variants (via `ParameterSet`), and `.cs` files as low-level (variants) cmdlets that the exported script cmdlets call. We do not support exporting any `.cs` (dll) cmdlets directly. To read more about custom cmdlets, look at the [README.md](custom/README.md) in the `custom` folder. + +## Generating documentation +To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [README.md](examples/README.md) in the `examples` folder. To read more about documentation, look at the [README.md](docs/README.md) in the `docs` folder. + +## Testing `Azs.Backup.Admin` +To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [README.md](examples/README.md) in the `examples` folder. + +## Packing `Azs.Backup.Admin` +To pack `Azs.Backup.Admin` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://docs.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. + +## Module Script Details +There are multiple scripts created for performing different actions for developing `Azs.Backup.Admin`. +- `build-module.ps1` + - Builds the module DLL (`./bin/Azs.Backup.Admin.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `Azs.Backup.Admin.psd1` with Azure profile information. + - **Parameters**: [`Switch` parameters] + - `-Run`: After building, creates an isolated PowerShell session and loads `Azs.Backup.Admin`. + - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. + - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. + - `-Pack`: After building, packages the module into a `.nupkg`. + - `-Code`: After building, opens a VSCode window with the module's directory and runs (see `-Run`) the module. + - `-Release`: Builds the module in `Release` configuration (as opposed to `Debug` configuration). + - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. + - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. +- `run-module.ps1` + - Creates an isolated PowerShell session and loads `Azs.Backup.Admin` into the session. + - Same as `-Run` in `build-module.ps1`. + - **Parameters**: [`Switch` parameters] + - `-Code`: Opens a VSCode window with the module's directory. + - Same as `-Code` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. +- `test-module.ps1` + - Runs the `Pester` tests defined in the `test` folder. + - Same as `-Test` in `build-module.ps1`. +- `pack-module.ps1` + - Packages the module into a `.nupkg` for distribution. + - Same as `-Pack` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. + - This process is now integrated into `build-module.ps1` automatically. To disable, use `-NoDocs` when running `build-module.ps1`. +- `export-surface.ps1` + - Generates Markdown documents for both the cmdlet surface and the model (class) surface of the module. + - These files are placed into the `resources` folder. + - Used for investigating the surface of your module. These are *not* documentation for distribution. +- `check-dependencies.ps1` + - Used in `run-module.ps1` and `test-module.ps1` to verify dependent modules are available to run those tasks. + - It will download local (within the module's directory structure) versions of those modules as needed. + - This script *does not* need to be ran by-hand. \ No newline at end of file diff --git a/src/Azs.Backup.Admin/license.txt b/src/Azs.Backup.Admin/license.txt new file mode 100644 index 00000000..b9f3180f --- /dev/null +++ b/src/Azs.Backup.Admin/license.txt @@ -0,0 +1,227 @@ +MICROSOFT SOFTWARE LICENSE TERMS + +MICROSOFT AZURE POWERSHELL + +These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. + +BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. + + +-----------------START OF LICENSE-------------------------- + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +-------------------END OF LICENSE------------------------------------------ + + +----------------START OF THIRD PARTY NOTICE-------------------------------- + + +The software includes the AutoMapper library ("AutoMapper"). The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software. + +Provided for Informational Purposes Only + +AutoMapper + +The MIT License (MIT) +Copyright (c) 2010 Jimmy Bogard + + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + + + + +*************** + +The software includes Newtonsoft.Json. The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software. + +Newtonsoft.Json + +The MIT License (MIT) +Copyright (c) 2007 James Newton-King +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +-------------END OF THIRD PARTY NOTICE---------------------------------------- + diff --git a/src/Azs.Backup.Admin/readme.md b/src/Azs.Backup.Admin/readme.md index 9544fe2c..0b3425c2 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. @@ -180,11 +183,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 Changes for ReleaseNotes - from: source-file-csharp where: $ 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 73781165..2e9bfce7 100644 --- a/src/Azs.Commerce.Admin/readme.md +++ b/src/Azs.Commerce.Admin/readme.md @@ -89,11 +89,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 Changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/Azs.Compute.Admin/readme.md b/src/Azs.Compute.Admin/readme.md index 165922f2..74fc607d 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -372,10 +372,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); # PSD1 Changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.ContainerRegistry.Admin/readme.md b/src/Azs.ContainerRegistry.Admin/readme.md index 8bd65c13..45fc8e6c 100644 --- a/src/Azs.ContainerRegistry.Admin/readme.md +++ b/src/Azs.ContainerRegistry.Admin/readme.md @@ -166,12 +166,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.ContainerRegistry.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerRegistry.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerRegistry.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; ModuleVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.12.0\'; \}\}\)\"\);'); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.ContainerService.Admin/readme.md b/src/Azs.ContainerService.Admin/readme.md index ef7b2712..d1440ee4 100644 --- a/src/Azs.ContainerService.Admin/readme.md +++ b/src/Azs.ContainerService.Admin/readme.md @@ -78,7 +78,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.ContainerService.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); + transform: $ = $.replace('', '\n '); # PSD1 changes for RequiredModules - from: source-file-csharp diff --git a/src/Azs.Fabric.Admin/readme.md b/src/Azs.Fabric.Admin/readme.md index 9de26959..921f31e9 100644 --- a/src/Azs.Fabric.Admin/readme.md +++ b/src/Azs.Fabric.Admin/readme.md @@ -662,11 +662,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 Changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/Azs.Gallery.Admin/readme.md b/src/Azs.Gallery.Admin/readme.md index c132d495..72cfb883 100644 --- a/src/Azs.Gallery.Admin/readme.md +++ b/src/Azs.Gallery.Admin/readme.md @@ -110,11 +110,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/Azs.InfrastructureInsights.Admin/readme.md b/src/Azs.InfrastructureInsights.Admin/readme.md index 27e679fe..529e39cd 100644 --- a/src/Azs.InfrastructureInsights.Admin/readme.md +++ b/src/Azs.InfrastructureInsights.Admin/readme.md @@ -189,10 +189,6 @@ directive: where: $ 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.12.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 79322901..87ae549b 100644 --- a/src/Azs.KeyVault.Admin/readme.md +++ b/src/Azs.KeyVault.Admin/readme.md @@ -76,11 +76,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/Azs.Network.Admin/readme.md b/src/Azs.Network.Admin/readme.md index 666a3a20..cf0f4aaa 100644 --- a/src/Azs.Network.Admin/readme.md +++ b/src/Azs.Network.Admin/readme.md @@ -185,11 +185,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/Azs.Storage.Admin/readme.md b/src/Azs.Storage.Admin/readme.md index f58a4919..93e470bc 100644 --- a/src/Azs.Storage.Admin/readme.md +++ b/src/Azs.Storage.Admin/readme.md @@ -278,11 +278,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/Azs.Subscriptions.Admin/readme.md b/src/Azs.Subscriptions.Admin/readme.md index 0865bdcb..75170eb1 100644 --- a/src/Azs.Subscriptions.Admin/readme.md +++ b/src/Azs.Subscriptions.Admin/readme.md @@ -371,11 +371,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/Azs.Update.Admin/readme.md b/src/Azs.Update.Admin/readme.md index c1a9fb98..0364d869 100644 --- a/src/Azs.Update.Admin/readme.md +++ b/src/Azs.Update.Admin/readme.md @@ -173,11 +173,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/readme.azurestack.md b/src/readme.azurestack.md index 057f0f2b..fbccb75c 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 From 7d2ddd24889eec074656cd6377a94e2334354198 Mon Sep 17 00:00:00 2001 From: bganapa Date: Fri, 10 Dec 2021 18:39:20 -0800 Subject: [PATCH 17/34] Updating AzureStack nuspec for module version updates --- src/Azs.AzureBridge.Admin/readme.md | 5 - src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 | 25 --- src/Azs.Backup.Admin/custom/README.md | 41 ---- src/Azs.Backup.Admin/how-to.md | 58 ------ src/Azs.Backup.Admin/license.txt | 227 --------------------- src/Azs.ContainerRegistry.Admin/readme.md | 2 +- src/Azs.ContainerService.Admin/readme.md | 7 +- src/AzureStack/AzureStack.nuspec | 28 +-- 8 files changed, 16 insertions(+), 377 deletions(-) delete mode 100644 src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 delete mode 100644 src/Azs.Backup.Admin/custom/README.md delete mode 100644 src/Azs.Backup.Admin/how-to.md delete mode 100644 src/Azs.Backup.Admin/license.txt diff --git a/src/Azs.AzureBridge.Admin/readme.md b/src/Azs.AzureBridge.Admin/readme.md index 17070c27..a98fd79d 100644 --- a/src/Azs.AzureBridge.Admin/readme.md +++ b/src/Azs.AzureBridge.Admin/readme.md @@ -129,11 +129,6 @@ directive: 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.12.0\'; \}\}\)\"\);'); - # PSD1 changes for ReleaseNotes - from: source-file-csharp where: $ diff --git a/src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 b/src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 deleted file mode 100644 index 84e77066..00000000 --- a/src/Azs.Backup.Admin/Azs.Backup.Admin.psd1 +++ /dev/null @@ -1,25 +0,0 @@ -@{ - GUID = '2e202983-13f3-4bc9-a5fb-98911e8d1a12' - RootModule = 'Azs.Backup.Admin.psm1' - ModuleVersion = '1.0.2' - CompatiblePSEditions = 'Core', 'Desktop' - Author = 'Microsoft Corporation' - CompanyName = 'Microsoft Corporation' - Copyright = 'Microsoft Corporation. All rights reserved.' - Description = 'Microsoft AzureStack PowerShell: Backup Admin cmdlets' - PowerShellVersion = '5.1' - DotNetFrameworkVersion = '4.7.2' - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'}, @{ModuleName = 'Az.Resources'; ModuleVersion = '0.12.0'}) - RequiredAssemblies = './bin/Azs.Backup.Admin.private.dll' - FormatsToProcess = './Azs.Backup.Admin.format.ps1xml' - FunctionsToExport = 'Get-AzsBackup', 'Get-AzsBackupConfiguration', 'Invoke-AzsPruneBackupLocationExternalStore', 'Restore-AzsBackup', 'Set-AzsBackupConfiguration', 'Start-AzsBackup', '*' - AliasesToExport = '*' - PrivateData = @{ - PSData = @{ - Tags = 'AzureStack', 'ResourceManager', 'ARM', 'PSModule' - LicenseUri = 'https://aka.ms/azps-license' - ProjectUri = 'https://github.com/Azure/azurestack-powershell' - ReleaseNotes = 'AzureStack Hub Admin module generated with https://github.com/Azure/autorest.powershell' - } - } -} diff --git a/src/Azs.Backup.Admin/custom/README.md b/src/Azs.Backup.Admin/custom/README.md deleted file mode 100644 index 3b70ac8b..00000000 --- a/src/Azs.Backup.Admin/custom/README.md +++ /dev/null @@ -1,41 +0,0 @@ -# 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 fundamental 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 propagated 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/how-to.md b/src/Azs.Backup.Admin/how-to.md deleted file mode 100644 index e450c8f6..00000000 --- a/src/Azs.Backup.Admin/how-to.md +++ /dev/null @@ -1,58 +0,0 @@ -# How-To -This document describes how to develop for `Azs.Backup.Admin`. - -## Building `Azs.Backup.Admin` -To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [README.md](exports/README.md) in the `exports` folder. - -## Creating custom cmdlets -To add cmdlets that were not generated by the REST specification, use the `custom` folder. This folder allows you to add handwritten `.ps1` and `.cs` files. Currently, we support using `.ps1` scripts as new cmdlets or as additional low-level variants (via `ParameterSet`), and `.cs` files as low-level (variants) cmdlets that the exported script cmdlets call. We do not support exporting any `.cs` (dll) cmdlets directly. To read more about custom cmdlets, look at the [README.md](custom/README.md) in the `custom` folder. - -## Generating documentation -To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [README.md](examples/README.md) in the `examples` folder. To read more about documentation, look at the [README.md](docs/README.md) in the `docs` folder. - -## Testing `Azs.Backup.Admin` -To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [README.md](examples/README.md) in the `examples` folder. - -## Packing `Azs.Backup.Admin` -To pack `Azs.Backup.Admin` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://docs.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. - -## Module Script Details -There are multiple scripts created for performing different actions for developing `Azs.Backup.Admin`. -- `build-module.ps1` - - Builds the module DLL (`./bin/Azs.Backup.Admin.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `Azs.Backup.Admin.psd1` with Azure profile information. - - **Parameters**: [`Switch` parameters] - - `-Run`: After building, creates an isolated PowerShell session and loads `Azs.Backup.Admin`. - - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. - - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. - - `-Pack`: After building, packages the module into a `.nupkg`. - - `-Code`: After building, opens a VSCode window with the module's directory and runs (see `-Run`) the module. - - `-Release`: Builds the module in `Release` configuration (as opposed to `Debug` configuration). - - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. - - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. -- `run-module.ps1` - - Creates an isolated PowerShell session and loads `Azs.Backup.Admin` into the session. - - Same as `-Run` in `build-module.ps1`. - - **Parameters**: [`Switch` parameters] - - `-Code`: Opens a VSCode window with the module's directory. - - Same as `-Code` in `build-module.ps1`. -- `generate-help.ps1` - - Generates the Markdown documents for the modules into the `docs` folder. - - Same as `-Docs` in `build-module.ps1`. -- `test-module.ps1` - - Runs the `Pester` tests defined in the `test` folder. - - Same as `-Test` in `build-module.ps1`. -- `pack-module.ps1` - - Packages the module into a `.nupkg` for distribution. - - Same as `-Pack` in `build-module.ps1`. -- `generate-help.ps1` - - Generates the Markdown documents for the modules into the `docs` folder. - - Same as `-Docs` in `build-module.ps1`. - - This process is now integrated into `build-module.ps1` automatically. To disable, use `-NoDocs` when running `build-module.ps1`. -- `export-surface.ps1` - - Generates Markdown documents for both the cmdlet surface and the model (class) surface of the module. - - These files are placed into the `resources` folder. - - Used for investigating the surface of your module. These are *not* documentation for distribution. -- `check-dependencies.ps1` - - Used in `run-module.ps1` and `test-module.ps1` to verify dependent modules are available to run those tasks. - - It will download local (within the module's directory structure) versions of those modules as needed. - - This script *does not* need to be ran by-hand. \ No newline at end of file diff --git a/src/Azs.Backup.Admin/license.txt b/src/Azs.Backup.Admin/license.txt deleted file mode 100644 index b9f3180f..00000000 --- a/src/Azs.Backup.Admin/license.txt +++ /dev/null @@ -1,227 +0,0 @@ -MICROSOFT SOFTWARE LICENSE TERMS - -MICROSOFT AZURE POWERSHELL - -These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. - -BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. - - ------------------START OF LICENSE-------------------------- - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - --------------------END OF LICENSE------------------------------------------ - - -----------------START OF THIRD PARTY NOTICE-------------------------------- - - -The software includes the AutoMapper library ("AutoMapper"). The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software. - -Provided for Informational Purposes Only - -AutoMapper - -The MIT License (MIT) -Copyright (c) 2010 Jimmy Bogard - - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - - - - - -*************** - -The software includes Newtonsoft.Json. The MIT License set out below is provided for informational purposes only. It is not the license that governs any part of the software. - -Newtonsoft.Json - -The MIT License (MIT) -Copyright (c) 2007 James Newton-King -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - --------------END OF THIRD PARTY NOTICE---------------------------------------- - diff --git a/src/Azs.ContainerRegistry.Admin/readme.md b/src/Azs.ContainerRegistry.Admin/readme.md index 45fc8e6c..b46fed9f 100644 --- a/src/Azs.ContainerRegistry.Admin/readme.md +++ b/src/Azs.ContainerRegistry.Admin/readme.md @@ -166,7 +166,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.ContainerRegistry.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); + transform: $ = $.replace('', '\n '); # PSD1 changes for ReleaseNotes - from: source-file-csharp diff --git a/src/Azs.ContainerService.Admin/readme.md b/src/Azs.ContainerService.Admin/readme.md index d1440ee4..0892c541 100644 --- a/src/Azs.ContainerService.Admin/readme.md +++ b/src/Azs.ContainerService.Admin/readme.md @@ -78,12 +78,7 @@ directive: # Add Az.Accounts/Az.Resources as dependencies - from: Azs.ContainerService.Admin.nuspec where: $ - transform: $ = $.replace('', '\n '); - -# PSD1 changes for RequiredModules - - from: source-file-csharp - where: $ - transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerService.Admin.private.dll\"\}\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}RequiredAssemblies = \'\{\"./bin/Azs.ContainerService.Admin.private.dll\"\}\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}RequiredModules = @\(@\{\{ModuleName = \'Az.Accounts\'; ModuleVersion = \'2.2.8\'; \}\}, @\{\{ModuleName = \'Az.Resources\'; RequiredVersion = \'0.12.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 f9b7e713..9709440a 100644 --- a/src/AzureStack/AzureStack.nuspec +++ b/src/AzureStack/AzureStack.nuspec @@ -15,23 +15,23 @@ - - - + + + - - - - - - - - - - - + + + + + + + + + + + From 47dfdf49d0da230cb5d3b3f5dd9eee6d3942880a Mon Sep 17 00:00:00 2001 From: bganapa Date: Mon, 13 Dec 2021 16:40:42 -0800 Subject: [PATCH 18/34] Updating change log for az.resources module dependency --- src/changelog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/changelog.md b/src/changelog.md index 76c0da4c..6fba95e8 100644 --- a/src/changelog.md +++ b/src/changelog.md @@ -13,6 +13,8 @@ * 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 From 01c0015ed79cfb44f739bd4bf6c8fc502a03b27d Mon Sep 17 00:00:00 2001 From: bganapa Date: Tue, 7 Dec 2021 20:56:01 -0800 Subject: [PATCH 19/34] Minor fix in download nupkg script --- tools/download-nupkg.ps1 | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) 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 From ef55ed08c112a4f7e63880c726be183ae7290171 Mon Sep 17 00:00:00 2001 From: bganapa Date: Mon, 3 Jan 2022 17:33:12 -0800 Subject: [PATCH 20/34] Updating the specs repo branch back to main --- src/readme.azurestack.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/readme.azurestack.md b/src/readme.azurestack.md index fbccb75c..51c8c025 100644 --- a/src/readme.azurestack.md +++ b/src/readme.azurestack.md @@ -4,7 +4,7 @@ ``` yaml azure: true powershell: true -branch: stack2108 +branch: main repo: https://github.com/Azure/azure-rest-api-specs/tree/$(branch) metadata: authors: Microsoft Corporation @@ -71,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 +``` From a0a7823e7b44537014b1148c2a8d3b15e78ed2a6 Mon Sep 17 00:00:00 2001 From: Yanqiong Chen <86596306+yanqiongchen@users.noreply.github.com> Date: Tue, 25 Jan 2022 10:30:18 +0800 Subject: [PATCH 21/34] Merge pull request #141 from yanqiongchen/backup-admin-update [2203] Backup admin powershell update --- .../custom/Clear-AzsBackupConfiguration.ps1 | 135 ++ src/Azs.Backup.Admin/custom/Get-AzsBackup.ps1 | 20 +- .../custom/Restore-AzsBackup.ps1 | 43 +- ....ps1 => Update-AzsBackupConfiguration.ps1} | 144 +- src/Azs.Backup.Admin/custom/readme.md | 41 + src/Azs.Backup.Admin/docs/Azs.Backup.Admin.md | 11 +- .../docs/Clear-AzsBackupConfiguration.md | 173 ++ src/Azs.Backup.Admin/docs/Get-AzsBackup.md | 2 +- .../docs/Get-AzsBackupConfiguration.md | 2 +- ...oke-AzsPruneBackupLocationExternalStore.md | 33 +- .../docs/Restore-AzsBackup.md | 2 +- src/Azs.Backup.Admin/docs/Start-AzsBackup.md | 2 +- ...on.md => Update-AzsBackupConfiguration.md} | 158 +- src/Azs.Backup.Admin/docs/readme.md | 2 +- .../examples/Clear-AzsBackupConfiguration.md | 8 + ...oke-AzsPruneBackupLocationExternalStore.md | 3 +- .../examples/Restore-AzsBackup.md | 1 + .../examples/Set-AzsBackupConfiguration.md | 7 - .../examples/Start-AzsBackup.md | 1 + .../examples/Update-AzsBackupConfiguration.md | 17 + src/Azs.Backup.Admin/readme.md | 34 +- ...lear-AzsBackupConfiguration.Recording.json | 125 + .../Clear-AzsBackupConfiguration.Tests.ps1 | 35 + src/Azs.Backup.Admin/test/Common.ps1 | 8 +- .../test/Get-AzsBackup.Recording.json | 674 +++++- .../Get-AzsBackupConfiguration.Recording.json | 150 +- ...BackupLocationExternalStore.Recording.json | 284 +-- ...PruneBackupLocationExternalStore.Tests.ps1 | 4 +- .../test/Restore-AzsBackup.Recording.json | 2101 ++++++++++++----- .../Set-AzsBackupConfiguration.Recording.json | 208 -- .../test/Set-AzsBackupConfiguration.Tests.ps1 | 79 - .../test/Start-AzsBackup.Recording.json | 410 ++-- ...date-AzsBackupConfiguration.Recording.json | 836 +++++++ .../Update-AzsBackupConfiguration.Tests.ps1 | 183 ++ src/Azs.Backup.Admin/test/Utils.ps1 | 5 +- src/Azs.Backup.Admin/test/env.json | 4 +- src/Azs.Backup.Admin/test/readme.md | 17 + src/AzureStack/AzureStack.nuspec | 4 +- src/AzureStack/AzureStack.psd1 | 4 +- src/changelog.md | 39 + 40 files changed, 4544 insertions(+), 1465 deletions(-) create mode 100644 src/Azs.Backup.Admin/custom/Clear-AzsBackupConfiguration.ps1 rename src/Azs.Backup.Admin/custom/{Set-AzsBackupConfiguration.ps1 => Update-AzsBackupConfiguration.ps1} (53%) create mode 100644 src/Azs.Backup.Admin/custom/readme.md create mode 100644 src/Azs.Backup.Admin/docs/Clear-AzsBackupConfiguration.md rename src/Azs.Backup.Admin/docs/{Set-AzsBackupConfiguration.md => Update-AzsBackupConfiguration.md} (51%) create mode 100644 src/Azs.Backup.Admin/examples/Clear-AzsBackupConfiguration.md delete mode 100644 src/Azs.Backup.Admin/examples/Set-AzsBackupConfiguration.md create mode 100644 src/Azs.Backup.Admin/examples/Update-AzsBackupConfiguration.md create mode 100644 src/Azs.Backup.Admin/test/Clear-AzsBackupConfiguration.Recording.json create mode 100644 src/Azs.Backup.Admin/test/Clear-AzsBackupConfiguration.Tests.ps1 delete mode 100644 src/Azs.Backup.Admin/test/Set-AzsBackupConfiguration.Recording.json delete mode 100644 src/Azs.Backup.Admin/test/Set-AzsBackupConfiguration.Tests.ps1 create mode 100644 src/Azs.Backup.Admin/test/Update-AzsBackupConfiguration.Recording.json create mode 100644 src/Azs.Backup.Admin/test/Update-AzsBackupConfiguration.Tests.ps1 create mode 100644 src/Azs.Backup.Admin/test/readme.md 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 0b3425c2..0009b168 100644 --- a/src/Azs.Backup.Admin/readme.md +++ b/src/Azs.Backup.Admin/readme.md @@ -54,7 +54,7 @@ metadata: description: 'Microsoft AzureStack PowerShell: Backup Admin cmdlets' subject-prefix: '' -module-version: 1.0.2 +module-version: 2.0.0 service-name: BackupAdmin ### File Renames @@ -146,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: @@ -153,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 @@ -173,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: $ 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/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/AzureStack/AzureStack.nuspec b/src/AzureStack/AzureStack.nuspec index 9709440a..0da3302d 100644 --- a/src/AzureStack/AzureStack.nuspec +++ b/src/AzureStack/AzureStack.nuspec @@ -2,7 +2,7 @@ AzureStack - 2.2.0 + 3.0.0 Microsoft Corporation Microsoft Corporation true @@ -15,7 +15,7 @@ - + diff --git a/src/AzureStack/AzureStack.psd1 b/src/AzureStack/AzureStack.psd1 index b09adc08..03107758 100644 --- a/src/AzureStack/AzureStack.psd1 +++ b/src/AzureStack/AzureStack.psd1 @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. - ModuleVersion = '2.2.0' + ModuleVersion = '3.0.0' # Supported PSEditions # CompatiblePSEditions = @() @@ -58,7 +58,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; RequiredVersion = '2.2.8'; }, @{ModuleName = 'Az.Resources'; RequiredVersion = '0.12.0'; }, @{ModuleName = 'Azs.Azurebridge.Admin'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Azs.Backup.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.1.0'; }, @{ModuleName = 'Azs.Deployment.Admin'; RequiredVersion = '1.0.1'; }, diff --git a/src/changelog.md b/src/changelog.md index 6fba95e8..950fd36a 100644 --- a/src/changelog.md +++ b/src/changelog.md @@ -1,3 +1,42 @@ +# 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 + ``` + + + + # Release 2.2.0 * Requires AzureStack Update 2108+ From 1c764522736fda870404b4ad007dfe79f17fa586 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Fri, 15 Oct 2021 11:53:24 -0700 Subject: [PATCH 22/34] Add Get-AzsComputeScaleUnit command, docs, and examples --- src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 | 25 +++ .../docs/Get-AzsComputeScaleUnit.md | 157 ++++++++++++++++++ .../examples/Get-AzsComputeScaleUnit.md | 10 ++ src/Azs.Compute.Admin/readme.md | 30 +++- .../Get-AzsComputeScaleUnit.Recording.json | 44 +++++ .../test/Get-AzsComputeScaleUnit.Tests.ps1 | 43 +++++ 6 files changed, 307 insertions(+), 2 deletions(-) create mode 100644 src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 create mode 100644 src/Azs.Compute.Admin/docs/Get-AzsComputeScaleUnit.md create mode 100644 src/Azs.Compute.Admin/examples/Get-AzsComputeScaleUnit.md create mode 100644 src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json create mode 100644 src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Tests.ps1 diff --git a/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 b/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 new file mode 100644 index 00000000..66241268 --- /dev/null +++ b/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 @@ -0,0 +1,25 @@ +@{ + GUID = 'addb0a1f-16ad-492e-8cde-0fffb53e0645' + RootModule = 'Azs.Compute.Admin.psm1' + ModuleVersion = '1.1.0' + CompatiblePSEditions = 'Core', 'Desktop' + Author = 'Microsoft Corporation' + CompanyName = 'Microsoft Corporation' + Copyright = 'Microsoft Corporation. All rights reserved.' + Description = 'Microsoft AzureStack PowerShell: Compute Admin cmdlets' + PowerShellVersion = '5.1' + DotNetFrameworkVersion = '4.7.2' + RequiredAssemblies = './bin/Azs.Compute.Admin.private.dll' + RequiredModules = @(@{ModuleName = 'Az.Accounts'; RequiredVersion = '2.2.8'; }, @{ModuleName = 'Az.Resources'; RequiredVersion = '0.11.0'; }) + FormatsToProcess = './Azs.Compute.Admin.format.ps1xml' + FunctionsToExport = 'Add-AzsPlatformImage', 'Add-AzsVMExtension', 'Disable-AzsComputeUserSubscriptionFeature', 'Enable-AzsComputeUserSubscriptionFeature', 'Get-AzsComputeFeature', 'Get-AzsComputeQuota', 'Get-AzsComputeScaleUnit', 'Get-AzsDisk', 'Get-AzsDiskMigrationJob', 'Get-AzsPlatformImage', 'Get-AzsVMExtension', 'New-AzsComputeQuota', 'New-AzsDiskMigrationJob', 'Remove-AzsComputeQuota', 'Remove-AzsPlatformImage', 'Remove-AzsVMExtension', 'Set-AzsComputeQuota', 'Stop-AzsDiskMigrationJob', 'Update-AzsComputeGlobalFeatureSetting', '*' + AliasesToExport = 'Start-AzsDiskMigrationJob', '*' + PrivateData = @{ + PSData = @{ + Tags = 'AzureStack', 'ResourceManager', 'ARM', 'PSModule' + LicenseUri = 'https://aka.ms/azps-license' + ProjectUri = 'https://github.com/Azure/azurestack-powershell' + ReleaseNotes = 'AzureStack Hub Admin module generated with https://github.com/Azure/autorest.powershell' + } + } +} 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..b9b4e4bb --- /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 +```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/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/readme.md b/src/Azs.Compute.Admin/readme.md index 74fc607d..02d86d61 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -19,6 +19,9 @@ This module was primarily generated via [AutoRest](https://github.com/Azure/auto ## Module Requirements - [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 or greater +## 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. @@ -55,7 +58,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.1.0 +module-version: 1.1.1 service-name: ComputeAdmin ### File Renames @@ -80,7 +83,7 @@ directive: set: subject-prefix: Compute - # Prepend Compute for the Quota cmdlets + # Prepend Compute for the ScaleUnit cmdlets - where: subject: ScaleUnit set: @@ -113,6 +116,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 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..9f528882 --- /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-n25r0507.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": [ "567" ], + "x-ms-client-request-id": [ "e526584f-79f0-4166-bd4b-f55010016d5f" ], + "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": [ "5d3c1987-33f7-4af8-9c5e-f0a9a7bb82f9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14794" ], + "x-ms-request-id": [ "5d3c1987-33f7-4af8-9c5e-f0a9a7bb82f9" ], + "x-ms-routing-request-id": [ "REDMOND:20210811T220629Z:5d3c1987-33f7-4af8-9c5e-f0a9a7bb82f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Wed, 11 Aug 2021 22:06:29 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0IqveI7G+xUwj8ApP3XY6dZ37A1X0QJuE+N1Ha9kgCitlcz8jZ6a8R0yrBGxPvrx51icnepoYO9+UssbrsK4qvCtX7vV5htqHsB3Yp6jRFSqPu5MqbzEUjqU+Tm/CD714+0m4+AuNuaKPJSPHvIM" ] + }, + "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\":\"2021-08-11T22:05:39.316Z\",\"nodes\":[{\"nodeName\":\"ASRR1N25R05U26\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2021-08-11T22:05:39.238Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N25R05U27\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2021-08-11T22:05:39.175Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N25R05U25\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2021-08-11T22:05:39.316Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N25R05U28\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2021-08-11T22:05:39.207Z\",\"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 + } + } + } +} From d203a1e52657b2df567de9868dcff6ab732e547a Mon Sep 17 00:00:00 2001 From: Xingdong Li Date: Tue, 15 Feb 2022 09:54:17 +0800 Subject: [PATCH 23/34] DiskRP migration progress change --- src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 | 4 ++-- src/Azs.Compute.Admin/custom/New-AzsDiskMigrationJob.ps1 | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 b/src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 index 00717d38..04af805b 100644 --- a/src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 +++ b/src/Azs.Compute.Admin/custom/Get-AzsDisk.ps1 @@ -136,7 +136,7 @@ UserResourceId : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGr .Inputs Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.IComputeAdminIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDisk +Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk .Notes COMPLEX PARAMETER PROPERTIES @@ -158,7 +158,7 @@ INPUTOBJECT : Identity Parameter https://docs.microsoft.com/en-us/powershell/module/azs.compute.admin/get-azsdisk #> function Get-AzsDisk { -[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDisk])] +[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get')] 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}, From 7bc6c85ba0e446f1a16709fc5dd03ff7e88ca624 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Tue, 22 Feb 2022 13:58:08 -0800 Subject: [PATCH 24/34] Fixing build break with cherry picking DiskRP commit. --- src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 | 4 +-- .../docs/Add-AzsPlatformImage.md | 9 ++++-- .../docs/Add-AzsVMExtension.md | 8 +++-- .../docs/Azs.Compute.Admin.md | 2 +- ...sable-AzsComputeUserSubscriptionFeature.md | 6 ++-- ...nable-AzsComputeUserSubscriptionFeature.md | 6 ++-- .../docs/Get-AzsComputeFeature.md | 8 +++-- .../docs/Get-AzsComputeQuota.md | 16 ++++++---- .../docs/Get-AzsComputeScaleUnit.md | 2 +- src/Azs.Compute.Admin/docs/Get-AzsDisk.md | 32 +++++++++++-------- .../docs/Get-AzsDiskMigrationJob.md | 16 ++++++---- .../docs/Get-AzsPlatformImage.md | 16 ++++++---- .../docs/Get-AzsVMExtension.md | 8 +++-- .../docs/New-AzsComputeQuota.md | 17 ++++++---- .../docs/New-AzsDiskMigrationJob.md | 23 +++++++------ .../docs/Remove-AzsComputeQuota.md | 6 ++-- .../docs/Remove-AzsPlatformImage.md | 13 ++++---- .../docs/Remove-AzsVMExtension.md | 12 +++---- .../docs/Set-AzsComputeQuota.md | 13 +++++--- .../docs/Stop-AzsDiskMigrationJob.md | 10 +++--- .../Update-AzsComputeGlobalFeatureSetting.md | 8 ++--- src/Azs.Compute.Admin/examples/readme.md | 11 ------- src/Azs.Compute.Admin/readme.md | 4 --- 23 files changed, 137 insertions(+), 113 deletions(-) delete mode 100644 src/Azs.Compute.Admin/examples/readme.md diff --git a/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 b/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 index 66241268..6a410150 100644 --- a/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 +++ b/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 @@ -1,7 +1,7 @@ @{ GUID = 'addb0a1f-16ad-492e-8cde-0fffb53e0645' RootModule = 'Azs.Compute.Admin.psm1' - ModuleVersion = '1.1.0' + ModuleVersion = '1.1.1' CompatiblePSEditions = 'Core', 'Desktop' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation' @@ -9,8 +9,8 @@ Description = 'Microsoft AzureStack PowerShell: Compute Admin cmdlets' PowerShellVersion = '5.1' DotNetFrameworkVersion = '4.7.2' + RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'}, @{ModuleName = 'Az.Resources'; ModuleVersion = '0.12.0'}) RequiredAssemblies = './bin/Azs.Compute.Admin.private.dll' - RequiredModules = @(@{ModuleName = 'Az.Accounts'; RequiredVersion = '2.2.8'; }, @{ModuleName = 'Az.Resources'; RequiredVersion = '0.11.0'; }) FormatsToProcess = './Azs.Compute.Admin.format.ps1xml' FunctionsToExport = 'Add-AzsPlatformImage', 'Add-AzsVMExtension', 'Disable-AzsComputeUserSubscriptionFeature', 'Enable-AzsComputeUserSubscriptionFeature', 'Get-AzsComputeFeature', 'Get-AzsComputeQuota', 'Get-AzsComputeScaleUnit', 'Get-AzsDisk', 'Get-AzsDiskMigrationJob', 'Get-AzsPlatformImage', 'Get-AzsVMExtension', 'New-AzsComputeQuota', 'New-AzsDiskMigrationJob', 'Remove-AzsComputeQuota', 'Remove-AzsPlatformImage', 'Remove-AzsVMExtension', 'Set-AzsComputeQuota', 'Stop-AzsDiskMigrationJob', 'Update-AzsComputeGlobalFeatureSetting', '*' AliasesToExport = 'Start-AzsDiskMigrationJob', '*' diff --git a/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md b/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md index c463dcb2..5f4da8ed 100644 --- a/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Add-AzsPlatformImage.md @@ -45,10 +45,9 @@ Creates a new platform image with given publisher, offer, skus and version. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Add-AzsPlatformImage ```powershell -Add-AzsPlatformImage -Offer "asdf" -Publisher "asdf" -Sku "asdf" -Version "1.0.0" -OsType Windows -OsUri "https://asdf.blob.local.azurestack.external/asdf/UbuntuServer.vhd?sv=2017-04-17&ss=bqt&srt=sco&sp=rwdlacup&se=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https" -``` +PS C:\> Add-AzsPlatformImage -Offer "asdf" -Publisher "asdf" -Sku "asdf" -Version "1.0.0" -OsType Windows -OsUri "https://asdf.blob.local.azurestack.external/asdf/UbuntuServer.vhd?sv=2017-04-17&ss=bqt&srt=sco&sp=rwdlacup&se=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https" BillingPartNumber : DataDisks : @@ -59,6 +58,10 @@ OsType : Windows OsUri : https://asdf.blob.local.azurestack.external/asdf/UbuntuServer.vhd?sv=2017-04-17&ss=bqt&srt=sco&sp=rwdlacup&se=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https 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. ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md b/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md index e3ad50f0..69e3f733 100644 --- a/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Add-AzsVMExtension.md @@ -47,10 +47,9 @@ Create a Virtual Machine Extension Image with publisher, version. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Add-AzsVMExtension ```powershell -Add-AzsVMExtension -Location "local" -Publisher "Microsoft" -Type "MicroExtension" -Version "0.1.0" -ComputeRole "IaaS" -SourceBlob "https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip" -SupportMultipleExtensions -VmOsType "Linux" -``` +PS C:\> Add-AzsVMExtension -Location "local" -Publisher "Microsoft" -Type "MicroExtension" -Version "0.1.0" -ComputeRole "IaaS" -SourceBlob "https://github.com/Microsoft/PowerShell-DSC-for-Linux/archive/v1.1.1-294.zip" -SupportMultipleExtensions -VmOsType "Linux" ExtensionType : MicroExtension TypeHandlerVersion : 0.1.0 @@ -67,6 +66,9 @@ SupportMultipleExtension : True Type : Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions VMScaleSetEnabled : False VmosType : Linux +``` + +Use a publicly accessible link to provide the location of the extension, or the URI to an Azure Blob using the SasUri. ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Azs.Compute.Admin.md b/src/Azs.Compute.Admin/docs/Azs.Compute.Admin.md index f1babcdd..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: 0069b4df-ccd1-4ae6-bf57-75660b132ca2 +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 diff --git a/src/Azs.Compute.Admin/docs/Disable-AzsComputeUserSubscriptionFeature.md b/src/Azs.Compute.Admin/docs/Disable-AzsComputeUserSubscriptionFeature.md index 83ecd36f..fb25138f 100644 --- a/src/Azs.Compute.Admin/docs/Disable-AzsComputeUserSubscriptionFeature.md +++ b/src/Azs.Compute.Admin/docs/Disable-AzsComputeUserSubscriptionFeature.md @@ -45,12 +45,12 @@ Disable the tenant subscription feature. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Disable a Tenant Subscription Feature ```powershell -Disable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId 4d105157-d6b2-42db-a3a3-56da6674183a -FeatureName Microsoft.Compute.EmergencyVMAccess -Location local +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 diff --git a/src/Azs.Compute.Admin/docs/Enable-AzsComputeUserSubscriptionFeature.md b/src/Azs.Compute.Admin/docs/Enable-AzsComputeUserSubscriptionFeature.md index d416c775..2962f41a 100644 --- a/src/Azs.Compute.Admin/docs/Enable-AzsComputeUserSubscriptionFeature.md +++ b/src/Azs.Compute.Admin/docs/Enable-AzsComputeUserSubscriptionFeature.md @@ -44,12 +44,12 @@ Enable the tenant subscription feature. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Enable a Tenant Subscription Feature ```powershell -Enable-AzsComputeUserSubscriptionFeature -TenantSubscriptionId 4d105157-d6b2-42db-a3a3-56da6674183a -FeatureName Microsoft.Compute.EmergencyVMAccess -Location local +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 diff --git a/src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md b/src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md index cfa20a59..30b3d1bb 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsComputeFeature.md @@ -34,10 +34,9 @@ Get an existing feature. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get a Feature ```powershell -Get-AzsComputeFeature -Location local -Name Microsoft.Compute.EmergencyVMAccess | ConvertTo-Json -``` +PS C:\> Get-AzsComputeFeature -Location local -Name Microsoft.Compute.EmergencyVMAccess | ConvertTo-Json { "EnabledTenantSubscriptionId": [ @@ -60,6 +59,9 @@ Get-AzsComputeFeature -Location local -Name Microsoft.Compute.EmergencyVMAccess "Name": "Microsoft.Compute.EmergencyVMAccess", "Type": "Microsoft.Compute.Admin/locations/features" } +``` + +Get a specific Feature. ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md b/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md index 66936e98..28142903 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsComputeQuota.md @@ -34,10 +34,9 @@ Get an existing Compute Quota. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get All Compute Quotas ```powershell -Get-AzsComputeQuota -``` +PS C:\> Get-AzsComputeQuota AvailabilitySetCount : 10 CoresLimit : 100 @@ -50,11 +49,13 @@ StandardManagedDiskAndSnapshotSize : 2048 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 100 VirtualMachineCount : 100 +``` + +Run `Get-AzsComputeQuota` with no parameters to get a list of all Compute Quotas. -### -------------------------- EXAMPLE 2 -------------------------- +### Example 2: Get Compute Quota by Name ```powershell -Get-AzsComputeQuota -Name ExampleComputeQuotaWithDefaultParameters -``` +PS C:\> Get-AzsComputeQuota -Name ExampleComputeQuotaWithDefaultParameters AvailabilitySetCount : 10 CoresLimit : 100 @@ -67,6 +68,9 @@ StandardManagedDiskAndSnapshotSize : 2048 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 0 VirtualMachineCount : 100 +``` + +Specify the Quota's name on the command line to retrieve a specific quota. ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Get-AzsComputeScaleUnit.md b/src/Azs.Compute.Admin/docs/Get-AzsComputeScaleUnit.md index b9b4e4bb..024d3dc6 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsComputeScaleUnit.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsComputeScaleUnit.md @@ -28,7 +28,7 @@ Get the scale unit view. ## EXAMPLES -### Example 1: Get +### Example 1: Get Compute Scale Unit ```powershell PS C:\> Get-AzsComputeScaleUnit -Name s-cluster -Location redmond -SubscriptionId "DC773456-D727-484E-8292-AE8FACFDDDF5" diff --git a/src/Azs.Compute.Admin/docs/Get-AzsDisk.md b/src/Azs.Compute.Admin/docs/Get-AzsDisk.md index bfadd3ab..06ecd00a 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsDisk.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsDisk.md @@ -36,17 +36,16 @@ Returns the disk. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get All Disks ```powershell -Get-AzsDisk +PS C:\> Get-AzsDisk ``` +Without any parameters, `Get-AzsDisk` will list all Disks. - -### -------------------------- EXAMPLE 2 -------------------------- +### Example 2: Get a Disk by Name ```powershell -Get-AzsDisk -Name "426b8945-8a24-42ad-acdc-c26f16202489" -``` +PS C:\> Get-AzsDisk -Name "426b8945-8a24-42ad-acdc-c26f16202489" ActualSizeGb : 24 DiskId : 426b8945-8a24-42ad-acdc-c26f16202489 @@ -63,11 +62,13 @@ 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 3 -------------------------- +Specify a disk by its `Name` to retrieve it. + +### Example 3: Get a Specified number of Disks ```powershell -Get-AzsDisk -Count 3 -``` +PS C:\> Get-AzsDisk -Count 3 ActualSizeGb : 24 DiskId : 20f1619e-4210-47f6-81e6-b89e3028df06 @@ -116,11 +117,13 @@ 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 +``` + +Use the `Count` parameter to retrieve a specific number of disks. -### -------------------------- EXAMPLE 4 -------------------------- +### Example 4: Get all disks in specific location ```powershell -Get-AzsDisk -Status All -ScaleUnit s-cluster -VolumeLabel Objstore_4 -``` +PS C:\> Get-AzsDisk -Status All -ScaleUnit s-cluster -VolumeLabel Objstore_4 ActualSizeGb : 2 DiskId : e4732f76-0753-40ec-80f5-8effdd0b437d @@ -163,6 +166,9 @@ SharePath : \\SU1FileServer.s11r0401.masd.stbtest.microsoft.com\SU1_ObjSto Status : Reserved Type : Microsoft.Compute.Admin/locations/disks UserResourceId : /subscriptions/7829c784-cd3f-464a-b195-3be83c964c9c/resourceGroups/RBACTEST/providers/Microsoft.Compute/Disks/testdd +``` + +Use the `ScaleUnit` or `VolumeLabel` parameter to list all disks in specific location ## PARAMETERS @@ -372,7 +378,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDisk +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk ## NOTES diff --git a/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md b/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md index acddcfb1..dae95989 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsDiskMigrationJob.md @@ -34,17 +34,16 @@ Returns the requested disk migration job. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: ```powershell -Get-AzsDiskMigrationJob +PS C:\> Get-AzsDiskMigrationJob ``` +Returns a list of managed disk migration jobs at the location local. - -### -------------------------- EXAMPLE 2 -------------------------- +### Example 2: ```powershell -Get-AzsDiskMigrationJob -Name TestNewDiskMigrationJob -``` +PS C:\> Get-AzsDiskMigrationJob -Name TestNewDiskMigrationJob CreationTime : 2/26/2020 10:45:41 AM EndTime : 2/26/2020 10:46:32 AM @@ -57,6 +56,9 @@ Status : Succeeded Subtask : {edacd0f6-760a-43f9-a188-8833751f89ce, f1ee38a4-5c27-4728-a12b-36976c565042} TargetShare : \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_1 Type : Microsoft.Compute.Admin/locations/diskmigrationjobs +``` + +Get a specific managed disk migration job. ## PARAMETERS @@ -161,7 +163,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDiskMigrationJob +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDiskMigrationJob ## NOTES diff --git a/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md b/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md index aaf53665..5f7c1ccd 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsPlatformImage.md @@ -34,10 +34,9 @@ Returns the specific platform image matching publisher, offer, skus and version. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get All Platform Images ```powershell -Get-AzsPlatformImage -``` +PS C:\> Get-AzsPlatformImage BillingPartNumber : DataDisks : @@ -50,11 +49,13 @@ OsUri : https://asdf.blob.local.azurestack.external/asdf/UbuntuServe wdlacup&se=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https ProvisioningState : Succeeded Type : Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions +``` + +Get a list of all Platform Images by leaving all parameters blank. -### -------------------------- EXAMPLE 2 -------------------------- +### Example 2: Get Specific Platform Image ```powershell -Get-AzsPlatformImage -Offer ExampleOffer -Publisher ExamplePublisher -Location local -Sku ExampleSku -Version 1.0.0 -``` +PS C:\> Get-AzsPlatformImage -Offer ExampleOffer -Publisher ExamplePublisher -Location local -Sku ExampleSku -Version 1.0.0 BillingPartNumber : DataDisks : @@ -67,6 +68,9 @@ OsUri : https://asdf.blob.local.azurestack.external/asdf/UbuntuServe e=2020-02-13T13:25:58Z&st=2020-02-13T05:25:58Z&spr=https ProvisioningState : Succeeded Type : Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions +``` + +Specify the Offer, Publisher, Location, Sku, and Version to retrieve a Platform Image. ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md b/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md index 3f29d16d..7151bf1d 100644 --- a/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Get-AzsVMExtension.md @@ -34,10 +34,9 @@ Returns requested Virtual Machine Extension Image matching publisher, type, vers ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Get All VM Extensions ```powershell -Get-AzsVMExtension -``` +PS C:\> Get-AzsVMExtension ExtensionType : IaaSDiagnostics TypeHandlerVersion : 1.11.3.12 @@ -57,6 +56,9 @@ VMScaleSetEnabled : False VmosType : Windows ... +``` + +Get a list of all VMExtensions by leaving all parameters blank. ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md b/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md index 217e48b8..7086d6f8 100644 --- a/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/New-AzsComputeQuota.md @@ -32,10 +32,9 @@ Creates or Updates a Compute Quota with the provided quota parameters. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Create a Compute Quota with Default Parameters ```powershell -New-AzsComputeQuota -Name ExampleComputeQuotaWithDefaultParameters -``` +PS C:\> New-AzsComputeQuota -Name ExampleComputeQuotaWithDefaultParameters AvailabilitySetCount : 10 CoresLimit : 100 @@ -48,11 +47,13 @@ StandardManagedDiskAndSnapshotSize : 2048 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 0 VirtualMachineCount : 100 +``` + +Any parameters that are not specified will be set to their default parameter, shown above. -### -------------------------- EXAMPLE 2 -------------------------- +### Example 2: Create a Compute Quota with Custom Parameters ```powershell -New-AzsComputeQuota -Name ExampleComputeQuotaWithCustomParameters -Location local -AvailabilitySetCount 9 -CoresCount 99 -PremiumManagedDiskAndSnapshotSize 1024 -StandardManagedDiskAndSnapshotSize 1024 -VirtualMachineCount 99 -VMScaleSetCount 2 -``` +PS C:\> New-AzsComputeQuota -Name ExampleComputeQuotaWithCustomParameters -Location local -AvailabilitySetCount 9 -CoresCount 99 -PremiumManagedDiskAndSnapshotSize 1024 -StandardManagedDiskAndSnapshotSize 1024 -VirtualMachineCount 99 -VMScaleSetCount 2 AvailabilitySetCount : 9 CoresLimit : 99 @@ -65,6 +66,10 @@ StandardManagedDiskAndSnapshotSize : 1024 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 2 VirtualMachineCount : 99 +``` + +Customize Quota with parameters. +Any parameters not specified will have default value. ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md b/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md index 592bb13b..85df8cbb 100644 --- a/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/New-AzsDiskMigrationJob.md @@ -30,11 +30,10 @@ Starts a managed disk migration job to migrate managed disks to the specified de ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: ```powershell -$disks = Get-AzsDisk +PS C:\> $disks = Get-AzsDisk PS C:\> New-AzsDiskMigrationJob -Name TestJob1 -TargetScaleUnit s-cluster -TargetVolumeLabel ObjStore_2 -Disks $disks -``` CreationTime : 2/26/2020 10:56:32 AM EndTime : @@ -47,13 +46,15 @@ Status : Pending Subtask : {53ee3665-00e4-4c69-a067-524058905ead, d551734f-0370-4851-9704-c7cec80b34c5} TargetShare : \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_2 Type : Microsoft.Compute.Admin/locations/diskmigrationjobs +``` -### -------------------------- EXAMPLE 2 -------------------------- +Create a disk migration job to migrate disks to the target scale unit and volume. + +### Example 2: ```powershell -PS C:\> $disks = Get-AzsDisk +PS C:\> PS C:\> $disks = Get-AzsDisk PS C:\> New-AzsDiskMigrationJob -Name TestJob2 -TargetShare \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_3 -Disks $disks WARNING: TargetShare parameter will be deprecated in a future release, please use Volume instead. -``` CreationTime : 2/26/2020 11:02:48 AM EndTime : @@ -68,6 +69,10 @@ Subtask : {0cfd8d29-1ca4-42db-a490-9198814abc50, 89c9b15e-47c6-4321-a390-61 TargetShare : \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_3 Type : Microsoft.Compute.Admin/locations/diskmigrationjobs-AzsDiskMigrationJob -Name TestJob1 -TargetScaleUnit s-cluster -TargetVolumeLabel ObjStore_2 -Disks $disks +``` + +Create a disk migration job to migrate disks to the target share. + ## PARAMETERS ### -DefaultProfile @@ -90,7 +95,7 @@ Accept wildcard characters: False To construct, see NOTES section for DISKS properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDisk[] +Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDisk[] Parameter Sets: (All) Aliases: @@ -228,11 +233,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## 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 diff --git a/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md b/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md index 0aaad642..bc649f6a 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsComputeQuota.md @@ -29,12 +29,12 @@ Delete an existing Compute quota. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Remove a Compute Quota ```powershell -Remove-AzsComputeQuota -Name "AComputeQuota" +PS C:\> Remove-AzsComputeQuota -Name "AComputeQuota" ``` - +A successful call to remove a compute quota will not return any output ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md b/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md index d4fb1862..bcf9a6c6 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsPlatformImage.md @@ -30,19 +30,20 @@ Delete a platform image ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Remove a Platform Image ```powershell -Remove-AzsPlatformImage -Location northwest -Offer UbuntuServer -Publisher Microsoft -Sku 16.04-LTS -Version 1.0.0 +PS C:\>Remove-AzsPlatformImage -Location northwest -Offer UbuntuServer -Publisher Microsoft -Sku 16.04-LTS -Version 1.0.0 ``` +A successful call to remove a platform image will not return any output - -### -------------------------- EXAMPLE 2 -------------------------- +### Example 2: Remove a Platform Image the Does Not Exist ```powershell -Remove-AzsPlatformImage -Location northwest -Offer UbuntuServer -Publisher Microsoft -Sku 16.04-LTS -Version 1.1.6 -``` +PS C:\> Remove-AzsPlatformImage -Location northwest -Offer UbuntuServer -Publisher Microsoft -Sku 16.04-LTS -Version 1.1.6 +``` +A successful call to remove a platform image that doesn't exist will not return any output ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md b/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md index ff90b236..2a468ad0 100644 --- a/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md +++ b/src/Azs.Compute.Admin/docs/Remove-AzsVMExtension.md @@ -29,19 +29,19 @@ Deletes specified Virtual Machine Extension Image. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Remove a VM Extension that Exists ```powershell -Remove-AzsVMExtension -Location local -Publisher Microsoft -Type MicroExtension -Version 0.1.0 +PS C:\> Remove-AzsVMExtension -Location local -Publisher Microsoft -Type MicroExtension -Version 0.1.0 ``` +A successful call to remove a compute quota will not return any output - -### -------------------------- EXAMPLE 2 -------------------------- +### Example 2: Remove a VM Extension that Does Not Exist ```powershell -Remove-AzsVMExtension -Location local -Publisher Microsoft -Type DoesntExist -Version 9.8.7 +PS C:\> Remove-AzsVMExtension -Location local -Publisher Microsoft -Type DoesntExist -Version 9.8.7 ``` - +A successful call to remove a platform image that doesn't exist will not return any output ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md b/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md index d8ddd082..8e3fc825 100644 --- a/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md +++ b/src/Azs.Compute.Admin/docs/Set-AzsComputeQuota.md @@ -22,14 +22,13 @@ Creates or Updates a Compute Quota with the provided quota parameters. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Set Properties on an Existing Compute Quota ```powershell -$myComputeQuota = Get-AzsComputeQuota -Name MyComputeQuota -``` +PS C:\> $myComputeQuota = Get-AzsComputeQuota -Name MyComputeQuota -PS C:\\> $myComputeQuota.CoresLimit = 99; +PS C:\> $myComputeQuota.CoresLimit = 99; -PS C:\\> Set-AzsComputeQuota -NewQuota $myComputeQuota +PS C:\> Set-AzsComputeQuota -NewQuota $myComputeQuota AvailabilitySetCount : 10 CoresLimit : 99 @@ -41,6 +40,10 @@ StandardManagedDiskAndSnapshotSize : 2048 Type : Microsoft.Compute.Admin/quotas VMScaleSetCount : 0 VirtualMachineCount : 100 +``` + +Set the parameters specified in the NewQuota hash set. +Any parameters not set will default to 0 ## PARAMETERS diff --git a/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md b/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md index 8a9a8736..f9b2cb04 100644 --- a/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md +++ b/src/Azs.Compute.Admin/docs/Stop-AzsDiskMigrationJob.md @@ -22,10 +22,9 @@ Cancel a disk migration job. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: ```powershell -Stop-AzsDiskMigrationJob -Name TestJob -``` +PS C:\> Stop-AzsDiskMigrationJob -Name TestJob CreationTime : 2/26/2020 11:06:40 AM EndTime : 2/26/2020 11:07:24 AM @@ -39,6 +38,9 @@ Status : Canceled Subtask : {47774498-6bc7-4ce2-98ca-738739ded2fc, b09ac623-f71d-480c-98bc-88fa3f603f2c} TargetShare : \\SU1FileServer.s31r1801.masd.stbtest.microsoft.com\SU1_ObjStore_4 Type : Microsoft.Compute.Admin/locations/diskmigrationjobs +``` + +Cancel a managed disk migration job. ## PARAMETERS @@ -141,7 +143,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210401.IDiskMigrationJob +### Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20210901.IDiskMigrationJob ## NOTES diff --git a/src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md b/src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md index 74890158..cde81da0 100644 --- a/src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md +++ b/src/Azs.Compute.Admin/docs/Update-AzsComputeGlobalFeatureSetting.md @@ -45,12 +45,12 @@ Update the feature settings. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: Update the Global Feature Settings ```powershell -Update-AzsComputeGlobalFeatureSetting -FeatureName Microsoft.Compute.EmergencyVMAccess -GlobalFeatureState Enabled -Location local +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 @@ -88,8 +88,6 @@ Accept wildcard characters: False Higher-priority global feature flags. To construct, see NOTES section for GLOBALFEATURESETTING properties and create a hash table. -Possible string values of GlobalFeatureSetting are Enabled, Disabled, and TenantSubscriptionLevel. Enabled/Disabled will override features that are enabled with tenant subscription ID. TenantSubscriptionLevel will defer feature enablement to per tenant subscription ID enablement. - ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.ComputeAdmin.Models.Api20201101.IGlobalFeatureSettings Parameter Sets: Update, UpdateViaIdentity diff --git a/src/Azs.Compute.Admin/examples/readme.md b/src/Azs.Compute.Admin/examples/readme.md deleted file mode 100644 index ac871d71..00000000 --- a/src/Azs.Compute.Admin/examples/readme.md +++ /dev/null @@ -1,11 +0,0 @@ -# Examples -This directory contains examples from the exported cmdlets of the module. When `build-module.ps1` is ran, example stub files will be generated here. If your module support Azure Profiles, the example stubs will be in individual profile folders. These example stubs should be updated to show how the cmdlet is used. The examples are imported into the documentation when `generate-help.ps1` is ran. - -## Info -- Modifiable: yes -- Generated: partial -- Committed: yes -- Packaged: no - -## Purpose -This separates the example documentation details from the generated documentation information provided directly from the generated cmdlets. Since the cmdlets don't have examples from the REST spec, this provides a means to add examples easily. The example stubs provide the markdown format that is required. The 3 core elements are: the name of the example, the code information of the example, and the description of the example. That information, if the markdown format is followed, will be available to documentation generation and be part of the documents in the `..\docs` folder. \ No newline at end of file diff --git a/src/Azs.Compute.Admin/readme.md b/src/Azs.Compute.Admin/readme.md index 02d86d61..a8951395 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -19,9 +19,6 @@ This module was primarily generated via [AutoRest](https://github.com/Azure/auto ## Module Requirements - [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 or greater -## 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. @@ -398,7 +395,6 @@ directive: where: $ transform: $ = $.replace('', '\n '); - # PSD1 Changes for ReleaseNotes - from: source-file-csharp where: $ From c3292bf96af16a7896bfcbf6c48c9086aacc2a01 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Fri, 25 Feb 2022 13:32:10 -0800 Subject: [PATCH 25/34] Removing generated psd1 file. --- src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 | 25 -------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 diff --git a/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 b/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 deleted file mode 100644 index 6a410150..00000000 --- a/src/Azs.Compute.Admin/Azs.Compute.Admin.psd1 +++ /dev/null @@ -1,25 +0,0 @@ -@{ - GUID = 'addb0a1f-16ad-492e-8cde-0fffb53e0645' - RootModule = 'Azs.Compute.Admin.psm1' - ModuleVersion = '1.1.1' - CompatiblePSEditions = 'Core', 'Desktop' - Author = 'Microsoft Corporation' - CompanyName = 'Microsoft Corporation' - Copyright = 'Microsoft Corporation. All rights reserved.' - Description = 'Microsoft AzureStack PowerShell: Compute Admin cmdlets' - PowerShellVersion = '5.1' - DotNetFrameworkVersion = '4.7.2' - RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.2.8'}, @{ModuleName = 'Az.Resources'; ModuleVersion = '0.12.0'}) - RequiredAssemblies = './bin/Azs.Compute.Admin.private.dll' - FormatsToProcess = './Azs.Compute.Admin.format.ps1xml' - FunctionsToExport = 'Add-AzsPlatformImage', 'Add-AzsVMExtension', 'Disable-AzsComputeUserSubscriptionFeature', 'Enable-AzsComputeUserSubscriptionFeature', 'Get-AzsComputeFeature', 'Get-AzsComputeQuota', 'Get-AzsComputeScaleUnit', 'Get-AzsDisk', 'Get-AzsDiskMigrationJob', 'Get-AzsPlatformImage', 'Get-AzsVMExtension', 'New-AzsComputeQuota', 'New-AzsDiskMigrationJob', 'Remove-AzsComputeQuota', 'Remove-AzsPlatformImage', 'Remove-AzsVMExtension', 'Set-AzsComputeQuota', 'Stop-AzsDiskMigrationJob', 'Update-AzsComputeGlobalFeatureSetting', '*' - AliasesToExport = 'Start-AzsDiskMigrationJob', '*' - PrivateData = @{ - PSData = @{ - Tags = 'AzureStack', 'ResourceManager', 'ARM', 'PSModule' - LicenseUri = 'https://aka.ms/azps-license' - ProjectUri = 'https://github.com/Azure/azurestack-powershell' - ReleaseNotes = 'AzureStack Hub Admin module generated with https://github.com/Azure/autorest.powershell' - } - } -} From b3a848ebd2fe79c1dbcd6734934a66a8b4458289 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Thu, 17 Mar 2022 17:16:30 -0700 Subject: [PATCH 26/34] Update recordings for non-disk tests. --- .../test/Add-AzsPlatformImage.Recording.json | 586 +- .../test/Add-AzsVMExtension.Recording.json | 476 +- ...puteUserSubscriptionFeature.Recording.json | 84 +- ...puteUserSubscriptionFeature.Recording.json | 108 +- .../test/Get-AzsComputeFeature.Recording.json | 24 +- .../test/Get-AzsComputeQuota.Recording.json | 6388 ++++------------- .../Get-AzsComputeScaleUnit.Recording.json | 24 +- ...ComputeGlobalFeatureSetting.Recording.json | 160 +- 8 files changed, 2224 insertions(+), 5626 deletions(-) diff --git a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json index 1c356734..ddd7634d 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json @@ -1,13 +1,13 @@ { - "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": { + "Get-AzsPlatformImage+[NoContext]+TestListPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1626" ], - "x-ms-client-request-id": [ "aea803d9-6a15-4a69-8c33-a25ded04b591" ], + "x-ms-unique-id": [ "2351" ], + "x-ms-client-request-id": [ "041c044b-56ae-423e-81b1-0406602fe74c" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,35 +21,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3bb567fa-b0f9-476b-80ad-cca45ba1d1cb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13777" ], - "x-ms-request-id": [ "3bb567fa-b0f9-476b-80ad-cca45ba1d1cb" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181411Z:3bb567fa-b0f9-476b-80ad-cca45ba1d1cb" ], + "x-ms-correlation-request-id": [ "b292b53e-7d2d-4775-ba4d-61e7e53f0bbf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14190" ], + "x-ms-request-id": [ "b292b53e-7d2d-4775-ba4d-61e7e53f0bbf" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001144Z:b292b53e-7d2d-4775-ba4d-61e7e53f0bbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:10 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4cYy/hbdVDvsiF6QJAcW0LMpiQIB62o5XWoxtD3gIcVEKWvVcWhJlInaoa6beSkcvn0eTLA1Bh2e8OV/sryNXSfqFWeKBRW91YvnL7EAce/cNxGvDeVtJK7goV7S5jlNuLiKdHdNbRVnsR3rOzr0" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4XMxtDDIbrBMtMkozQoojRaFoL0KYsqY4eoW4QGdhRFEu29H5OMMA/30mK+yXvrpyKM3CZPS2GMX0D+Kb0XxaPU9xtlMsWVJLubxAFlZ6p0wlPn4q8a+yWTZ/IUF1L8Fa1OftW/G+K9OteMN7YdW" ] }, "ContentHeaders": { - "Content-Length": [ "8344" ], + "Content-Length": [ "10163" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n25r0507.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=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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=2021-07-29T06%3a38%3a37Z\u0026ske=2021-07-31T06%3a58%3a37Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a37Z\u0026se=2021-07-31T06%3a58%3a37Z\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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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.19847.2010090140\",\"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/007efb466dc6418b8027b640626b427f%2FImage%2Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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.3986.2010070045\",\"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/c12f21f106244837acaafef12d14fc43%2FImage%2Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Get-AzsPlatformImage+[NoContext]+TestGetPlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1627" ], - "x-ms-client-request-id": [ "051fa40d-9406-4abb-97d2-550f88d47063" ], + "x-ms-unique-id": [ "2352" ], + "x-ms-client-request-id": [ "06c68110-c0ae-43aa-b86a-94caf9d96a55" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,35 +63,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "467d9689-e04d-44de-a2cb-066a25001f6f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13775" ], - "x-ms-request-id": [ "467d9689-e04d-44de-a2cb-066a25001f6f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181413Z:467d9689-e04d-44de-a2cb-066a25001f6f" ], + "x-ms-correlation-request-id": [ "caf4de3e-dd21-4dfc-b93e-54010146f856" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14189" ], + "x-ms-request-id": [ "caf4de3e-dd21-4dfc-b93e-54010146f856" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001144Z:caf4de3e-dd21-4dfc-b93e-54010146f856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:13 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0t5XQUg2Z37cug1S39hpLEF+XJzmd5Mw06twebsFQ2gYmfIgqW5ONQ897SMNKzS8qgEGCmEmzRG0u1XX+4rRMK0d7F1Vb8lOrc8AQk1pLcxYoqX19aQ+PRI7VD6JGA/2YoYm+IyV5carbnuftp1H" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRJvvd89dcIabuo9pqlGKI5fF0zDDnhBxIFxPqJMff0rpCluHLykXHyZBtoL6iENlrffarlQzTleC7fqKwCbYk7Luurkn8KSQPkSDk46RpvUg8h9d8YtFw8hTvJdRofRJ43MLYt7kLOrIEj3Hh6qT" ] }, "ContentHeaders": { - "Content-Length": [ "8344" ], + "Content-Length": [ "10163" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n25r0507.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=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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=2021-07-29T06%3a38%3a37Z\u0026ske=2021-07-31T06%3a58%3a37Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a37Z\u0026se=2021-07-31T06%3a58%3a37Z\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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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.19847.2010090140\",\"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/007efb466dc6418b8027b640626b427f%2FImage%2Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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.3986.2010070045\",\"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/c12f21f106244837acaafef12d14fc43%2FImage%2Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Get-AzsPlatformImage+[NoContext]+TestGetPlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1628" ], - "x-ms-client-request-id": [ "8454cde2-4d6c-4f9b-b1eb-12e555fedf8e" ], + "x-ms-unique-id": [ "2353" ], + "x-ms-client-request-id": [ "c1451ad9-52fa-437b-bf48-bdb9760d1a58" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,35 +105,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e3bf1b6c-2559-4517-84d8-45fb11ab14c1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13773" ], - "x-ms-request-id": [ "e3bf1b6c-2559-4517-84d8-45fb11ab14c1" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181416Z:e3bf1b6c-2559-4517-84d8-45fb11ab14c1" ], + "x-ms-correlation-request-id": [ "8ccb653c-e3f5-45e8-b932-3c13634a9ef4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14188" ], + "x-ms-request-id": [ "8ccb653c-e3f5-45e8-b932-3c13634a9ef4" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001144Z:8ccb653c-e3f5-45e8-b932-3c13634a9ef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:15 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvp6xnj6IaMaM0zSCshzg9FLP8JkA01y6TLZ/Hp9x4RQGsbhqsy0PxEnRl176PdHzRQnajDfxw937wtxqyiqca04I1cKQVYJTyDk7D4cShkoFHBdVP+v/p7lhks0TPwJWc/cA29WVIdmTCCyxExY/e" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvluYWRRlOAsBibZrxCKni3t9upM7IhRq5HoRvX59VzqHwI8YRdq/7MJ7TEzM0uVEpOloayQanfng/05kPClKIbnt3oHvGN+ytehGpKZVzf1drUjYEZhiJN8XBTSzBbxAqinCq+3C7Dm+c2ya7xfYo" ] }, "ContentHeaders": { "Content-Length": [ "601" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1629" ], - "x-ms-client-request-id": [ "8167c83b-e694-423b-ac05-6b682546a80d" ], + "x-ms-unique-id": [ "2354" ], + "x-ms-client-request-id": [ "95551555-3159-4cc4-97ac-eeb551dae329" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,35 +147,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "18c69083-e433-4fe3-86f4-4f65c535bbb9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13771" ], - "x-ms-request-id": [ "18c69083-e433-4fe3-86f4-4f65c535bbb9" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181417Z:18c69083-e433-4fe3-86f4-4f65c535bbb9" ], + "x-ms-correlation-request-id": [ "9a7961a7-9252-447f-a8f4-99a63bb8f2ad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14187" ], + "x-ms-request-id": [ "9a7961a7-9252-447f-a8f4-99a63bb8f2ad" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:9a7961a7-9252-447f-a8f4-99a63bb8f2ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:17 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8SWjgf5nfldaaRgfuETdycV2OyA8JkauYw1aql7BgPuk5IuEjt5hhqthy5MmxG0cUdbb97OOawn27cf1j7L37mY8ZdVBt4NlrYGPtoERNofn6w8FFSZ1B2LImyCDimkjUi5zYsHBTxSySNFEK6qb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1rUEYa9ABu6518nwEMw98+HK5/Q81tJOc0eXyCJyePq1fNWtBFHOpIT1V8ZCXOnLDKNMrFPS6iYpz+eg5UcQ/MTL/79ilRI6n2W9PRgpPEYRb5Uk4HCXCZQhjn2sM4XrsO3sDQZ1uXdfDUZzTN4E" ] }, "ContentHeaders": { - "Content-Length": [ "8344" ], + "Content-Length": [ "10163" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n25r0507.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=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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=2021-07-29T06%3a38%3a37Z\u0026ske=2021-07-31T06%3a58%3a37Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a37Z\u0026se=2021-07-31T06%3a58%3a37Z\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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.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/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.19847.2010090140\",\"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/007efb466dc6418b8027b640626b427f%2FImage%2Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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.3986.2010070045\",\"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/c12f21f106244837acaafef12d14fc43%2FImage%2Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\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/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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1630" ], - "x-ms-client-request-id": [ "af35efe4-fcea-4154-8592-699323cb6bda" ], + "x-ms-unique-id": [ "2355" ], + "x-ms-client-request-id": [ "488e0ed5-23dd-4f8e-aec0-fb5551a21d4b" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -189,35 +189,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4bbf4ef1-fe00-44a0-84d3-7709373fdd0d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13770" ], - "x-ms-request-id": [ "4bbf4ef1-fe00-44a0-84d3-7709373fdd0d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181417Z:4bbf4ef1-fe00-44a0-84d3-7709373fdd0d" ], + "x-ms-correlation-request-id": [ "43760d43-9efe-458b-bec1-e37111d79b51" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14186" ], + "x-ms-request-id": [ "43760d43-9efe-458b-bec1-e37111d79b51" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:43760d43-9efe-458b-bec1-e37111d79b51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:17 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYIybNcP8zMlbazHDcmhfHMrcwVZcA84boMANfHXrSY1KCsh5GHdQBZIiITg7gkhIYH+ItBuB1ZYpQSMxYXSaatNCg/O27LKTLzUAs3wstscYMuowCCcHCNUCsUPXoGLDgmpCAMRSNy/WK/XVuhW1" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYSFOzl9hTiVZnL69GLfP1ADjBRcnoUAWXwGjeSMyMvE2kDAvDhbHKM39qgfwGe6Tf3g+xOQCn0Yqq1DDh15XVeOeKFcOpogc6ab1YrkD6eeXsUigFt9vX6EADzz0cQJsdNJni3B/GKjxQG627Kew" ] }, "ContentHeaders": { "Content-Length": [ "601" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1631" ], - "x-ms-client-request-id": [ "cb3459a4-30b2-4907-b217-2f52cade1895" ], + "x-ms-unique-id": [ "2356" ], + "x-ms-client-request-id": [ "fa7d381b-2855-48c4-a5cb-316417afeb00" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -231,35 +231,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "18d6d739-01b2-40e0-b480-090904445f89" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13769" ], - "x-ms-request-id": [ "18d6d739-01b2-40e0-b480-090904445f89" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:18d6d739-01b2-40e0-b480-090904445f89" ], + "x-ms-correlation-request-id": [ "9d779141-712f-4c01-b2d6-a28efc575c36" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14185" ], + "x-ms-request-id": [ "9d779141-712f-4c01-b2d6-a28efc575c36" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:9d779141-712f-4c01-b2d6-a28efc575c36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:17 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxLx1mP/Or4ENEqGq+KVKm0r7kmyYlr18HrAaFyAvKXPTg4MqyMwDULwGc5Ypry8A5DnIjVO0hIsdUHCR7J92q1DfD8gW3T5eUcTHRyvrhjp1icR9PLZh+ZdJcdql0RNyaNh36X79EwTMqhAnCP4P" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu4oFGuIacn+MOcIBx/eciyd8r7k8+H3OwzbhbNvpeMjXGEDTc47U6C45hGNiktqly/7ISWVEkOZXHOUou3G+bTKVD7SvHQm3eTXKl+arA08/vyqkUxZ91KqfdOkiYWoS+11XDZpZorClvRlYykYf" ] }, "ContentHeaders": { "Content-Length": [ "893" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1632" ], - "x-ms-client-request-id": [ "94c9706e-92e2-4122-a7f3-77e6f390b72a" ], + "x-ms-unique-id": [ "2357" ], + "x-ms-client-request-id": [ "1119ceff-b360-4bb8-9496-51fb13ec939c" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -273,35 +273,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1d53df4c-408c-4fbf-8bab-6b2c83edfc8d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13768" ], - "x-ms-request-id": [ "1d53df4c-408c-4fbf-8bab-6b2c83edfc8d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:1d53df4c-408c-4fbf-8bab-6b2c83edfc8d" ], + "x-ms-correlation-request-id": [ "2c27f91e-24f9-4413-9a10-4f7f44010879" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14184" ], + "x-ms-request-id": [ "2c27f91e-24f9-4413-9a10-4f7f44010879" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:2c27f91e-24f9-4413-9a10-4f7f44010879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:17 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlFbLXBfXY39NlI3ugsNLkfuPRl36fU8btF3kUYUHsIzlpU7sUpdfFGfJNogXqoaGLnftkt7emTgUM9PlLhhSjz0TM7NmD9u7Aai8ZAg3NOdtjgFfp7XfLjllLQRaoAJvc/us38qUkJ1x+cG7fzu3" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpWpzwU6PvUrd16QUcIs78vfJcxpDAh46IlkjoIxuURUpt0snQElQNfZKtCRgJ0PEWiZcm920WRamojSFF5Nahw+DL0WWei8v7QSmIr8k1MLU++dwteThIaQ5eCuJFLNxxEiH3Vf6alOIsBBTowiN" ] }, "ContentHeaders": { "Content-Length": [ "895" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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=2021-07-29T06%3a38%3a37Z\u0026ske=2021-07-31T06%3a58%3a37Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a37Z\u0026se=2021-07-31T06%3a58%3a37Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1633" ], - "x-ms-client-request-id": [ "da062418-5b78-4684-962f-82facf737985" ], + "x-ms-unique-id": [ "2358" ], + "x-ms-client-request-id": [ "606228c5-9349-44cb-82d9-bd34af93e49d" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -315,35 +315,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a348d4d8-f3e1-4535-8143-99135a8f69ff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13767" ], - "x-ms-request-id": [ "a348d4d8-f3e1-4535-8143-99135a8f69ff" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:a348d4d8-f3e1-4535-8143-99135a8f69ff" ], + "x-ms-correlation-request-id": [ "f0242b6a-82ce-4996-b1c1-73c53e57ee36" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14183" ], + "x-ms-request-id": [ "f0242b6a-82ce-4996-b1c1-73c53e57ee36" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:f0242b6a-82ce-4996-b1c1-73c53e57ee36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0MBxy34OpzlhOHCH0Zy2sEj/YIMRkqQfp6UhA2rzoX2MzIteJRx4nQ89swwa6XFeptYffO/Ry5ip4nMds6n/qR5WCHGFBDrQ8UfsiPi557aDVVmUYKbc7uGKly60aaODwvsJHxsCR15pXUAtQyBi" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjMO8dnP0/VxSeoKWCLOeAMNAG20rmYPpgZLFyZ1dGAiKEgqVD2XVX7YQ9/ugzJdw8mF9JKD1DG91Vd5lVDrelkwdPxECdibWRt6YfK25fhUGFj9IzMZvu+6uMzAVVkzyMzD/EU0eB7Bs6TN1AoPK" ] }, "ContentHeaders": { "Content-Length": [ "1127" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1634" ], - "x-ms-client-request-id": [ "8b84b113-bcaa-43ae-b188-392cfea4beaa" ], + "x-ms-unique-id": [ "2359" ], + "x-ms-client-request-id": [ "c4e3703e-2ab5-40b4-a836-02b73bf63556" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -357,35 +357,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5cf907bc-14f9-4b7c-aeaa-f98ddffa930a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13766" ], - "x-ms-request-id": [ "5cf907bc-14f9-4b7c-aeaa-f98ddffa930a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:5cf907bc-14f9-4b7c-aeaa-f98ddffa930a" ], + "x-ms-correlation-request-id": [ "64295e09-7dea-4aed-a0b0-d61f28171c33" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14182" ], + "x-ms-request-id": [ "64295e09-7dea-4aed-a0b0-d61f28171c33" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:64295e09-7dea-4aed-a0b0-d61f28171c33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRVyx3hbst5tA+KXqO/JWQKcK8vl+z2+j2x2/BWtslJjSTPrv9KQ+OyftX8mHoBlMeUD1iV3QAfesae1PKSr//rEiVKjYg3L5+iUCgcSXOa4xiEPnT58f8gEk3ZuHaUluLYFtJv46KB9hv+Gwl9/Y" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5J1g4e2L0wmGSEODe5iq8qA+qosZ+VC76w/1RX9Vo1Lj8HhEEOYAhP0rZeOjCbEmrcsuCCd45Jvd22XXWqH/f8rMITmMXi/61Dj3qvbLYdlaovpctgjkt61BrWN/+cQ7bULkTxrXFzYeTIUUJnB1" ] }, "ContentHeaders": { "Content-Length": [ "1178" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/WindowsServer2012R2DatacenterEval.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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+7": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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+7": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1635" ], - "x-ms-client-request-id": [ "0b391275-f2ea-4d78-a700-8607f47dfb31" ], + "x-ms-unique-id": [ "2360" ], + "x-ms-client-request-id": [ "90c0885e-e71c-4581-9283-21dcf43342b4" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -399,35 +399,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b5a24042-af67-4af2-a982-8f7dcd16368a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13765" ], - "x-ms-request-id": [ "b5a24042-af67-4af2-a982-8f7dcd16368a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181418Z:b5a24042-af67-4af2-a982-8f7dcd16368a" ], + "x-ms-correlation-request-id": [ "a51059f6-899d-49e9-84d7-13738f66a35e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14181" ], + "x-ms-request-id": [ "a51059f6-899d-49e9-84d7-13738f66a35e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:a51059f6-899d-49e9-84d7-13738f66a35e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKqQuaiKaZ3xbsgDvJuPERDAg+YPXq7DCJlJyn3Pt1JOocztMS7L06J2dWv7LoUOnmyoxoOTkm4ceNcCGPWwS5TMfGgw7lUgsLYEt7pnvYsG7m9Zd4zjcpyGuohtnzGT90+tzqpyQi9q4wjFZ3gdk" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUa/RwYknSf8hA/FVdvEM1ydMm2uBqwncxKOapZ0vTjmBOXFXiM70p9A7HYUIC9Z5K9YN+Dx7wIaoMv6QYoqZq+IFHAmumh4bj/CAJ7BwdZFOX8sDeqP0/iX1qRoaMU2sVVXW7s+AM7MGS01AY7hC" ] }, "ContentHeaders": { "Content-Length": [ "615" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2012-R2-Datacenter-smalldisk/versions/9600.19847.2010090140?api-version=2015-12-01-preview+8": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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+8": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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.19847.2010090140?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1636" ], - "x-ms-client-request-id": [ "c0fad328-5f06-40b9-ab12-603af6bdefd9" ], + "x-ms-unique-id": [ "2361" ], + "x-ms-client-request-id": [ "b085cbac-c577-4bee-9a88-764b094ad505" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -441,35 +441,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2d30ec04-63ed-46c8-8121-22a46835088b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13764" ], - "x-ms-request-id": [ "2d30ec04-63ed-46c8-8121-22a46835088b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181419Z:2d30ec04-63ed-46c8-8121-22a46835088b" ], + "x-ms-correlation-request-id": [ "be0559ae-0403-429c-b5ac-52f99b9b4033" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14180" ], + "x-ms-request-id": [ "be0559ae-0403-429c-b5ac-52f99b9b4033" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:be0559ae-0403-429c-b5ac-52f99b9b4033" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbXXLFdHWWWGyhXef3W4jsQOjMCEMG5O2hsMP15fBMJiAsrh9dRjHyd64owDSlTSXiPAlI3ZSLMRJFJzdpXrizHwZ6q1YeEiwYAH9zyM1ZtJi3FQawmw6va61RAG2RjvARMKBpdKXldqIhVf/p+T4" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0Hpx0+xVImWyOqPp8dF2EZt7g/zrpOe+d/q/+4ZHOnXlKL61V35FT3+87dQASIRT99GAVDBHDFLih7PD+WoU9N4FbydyajVY8w/Jcc5mwtciFmoVAXk+q8/7EQ9kWACZvgwE4kmiCMTKt4cp9U3a" ] }, "ContentHeaders": { - "Content-Length": [ "952" ], + "Content-Length": [ "999" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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.19847.2010090140\",\"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/007efb466dc6418b8027b640626b427f%2FImage%2Fvhd_2k12r2_server_serverdatacenter_vl_en-us_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftWindowsServer/offers/windowsserver/skus/2016-Datacenter-smalldisk/versions/14393.3986.2010070045?api-version=2015-12-01-preview+9": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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+9": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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.3986.2010070045?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1637" ], - "x-ms-client-request-id": [ "2bca5586-92bb-499a-b220-574bb773e058" ], + "x-ms-unique-id": [ "2362" ], + "x-ms-client-request-id": [ "97ef5e51-32a4-47c8-a34e-490ebdbe0a6a" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -483,35 +483,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bf5821a8-02db-44cf-9294-eec1c533fcb0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13763" ], - "x-ms-request-id": [ "bf5821a8-02db-44cf-9294-eec1c533fcb0" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181419Z:bf5821a8-02db-44cf-9294-eec1c533fcb0" ], + "x-ms-correlation-request-id": [ "09c3cd61-192c-4bcf-8dbd-6686f9264b2a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14179" ], + "x-ms-request-id": [ "09c3cd61-192c-4bcf-8dbd-6686f9264b2a" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:09c3cd61-192c-4bcf-8dbd-6686f9264b2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtmawrhJ0pUPX01vsZCx2GU1GID9Pcf7FmFJ7vC9CdKRcWQiIetyRgrWCFelBr2eDKv+6EmKeQJ8X8WEwt/YBCKNCJgz8y3pA2HSsy/Q6fBGK6mykWCMUY+b+FKPUpJH+RgDmp9wEnezXfzlq5Mnl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyRCwoFCFQt3F3Nk3RNai8JLIR9cYf23IqESpYF/h3VmU44eK8OfQjOls1e/E6qTTKmzP1FkawiE9J82SqONm5q5kyqjMNFg2029XGKo7xgw17fDjQ2xZHc7zDYmalwHAK455FyAMur/UQTrwo19Z" ] }, "ContentHeaders": { - "Content-Length": [ "942" ], + "Content-Length": [ "989" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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.3986.2010070045\",\"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/c12f21f106244837acaafef12d14fc43%2FImage%2Fvhd_server_serverdatacenter_en-us_vl_30gb_azuregallery_fixed.vhd?skoid=2d4f7bf2-3564-4014-ab3b-1df4cf7ca3d2\u0026sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d\u0026skt=2021-07-29T06%3a38%3a39Z\u0026ske=2021-07-31T06%3a58%3a39Z\u0026sks=b\u0026skv=2020-04-08\u0026sv=2020-04-08\u0026st=2021-07-29T06%3a58%3a39Z\u0026se=2021-07-31T06%3a58%3a39Z\u0026sr=b\u0026sp=r\"},\"dataDisks\":[],\"details\":{\"billingPartNumber\":\"\"},\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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+10": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.0?api-version=2015-12-01-preview+10": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1638" ], - "x-ms-client-request-id": [ "22f294c9-6c07-4945-9580-b3b34c0b1011" ], + "x-ms-unique-id": [ "2363" ], + "x-ms-client-request-id": [ "e6c31af8-70cf-4336-8c10-0bdfb2130e00" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -525,73 +525,199 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "233490dc-0f7f-489a-9c50-c0bcf4c800ee" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13762" ], - "x-ms-request-id": [ "233490dc-0f7f-489a-9c50-c0bcf4c800ee" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181419Z:233490dc-0f7f-489a-9c50-c0bcf4c800ee" ], + "x-ms-correlation-request-id": [ "3d8d260b-22bc-440f-88ae-71219869dcea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14178" ], + "x-ms-request-id": [ "3d8d260b-22bc-440f-88ae-71219869dcea" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:3d8d260b-22bc-440f-88ae-71219869dcea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:19 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6hdQ+dhC1zKUJiBvwCm4fAjLW7uvS0QqIMWjUQfFEo7dm/cWqkn7nYp3lRRoHmFlSyxZI/L1UKOxQK/536WD25gHN8tcyXPg5DWLV7Rs7q111wrB8CpBC2O3VNiWNy9/mXzsPzYc9jO7kUi3GrpD" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1tI5gx+HLkd+Y2GtrN2KQIZLY95HSJpuojF+887p9B80zMHa1HJjiDQPFyWo7bSTHvc5qv5KOXj8UbPZWR9KBrNQGbiyq3PQeRW5hFxdtJUTEhbyMZtEfxGb7ZTsb6CrXWnNCPieuQ3lZuidIinI" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1?api-version=2015-12-01-preview+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2364" ], + "x-ms-client-request-id": [ "0828189d-889e-4658-a0fe-c8008d0966e2" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "cd6d01bc-6227-4611-a491-de55f1f23e37" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14177" ], + "x-ms-request-id": [ "cd6d01bc-6227-4611-a491-de55f1f23e37" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001147Z:cd6d01bc-6227-4611-a491-de55f1f23e37" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG0MgQgT2ufoWs23G2Psc6dnssdyOt8qXr359N02ppAHjqv6RnXYQ4cH26Q5ohA+cmF8ROD/WQLHNvdVjU5W3zschd4CZBZcEIyYfefja6flSxgsn9Nxnd1ReSwcF5kSV9XfcwhU5D6jPjOAUMqEo" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2?api-version=2015-12-01-preview+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2365" ], + "x-ms-client-request-id": [ "8f18d8a2-220b-4a2d-856b-ce059598c407" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "f0f9b618-e05a-4b76-ad8b-68b2183f99f9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14176" ], + "x-ms-request-id": [ "f0f9b618-e05a-4b76-ad8b-68b2183f99f9" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001147Z:f0f9b618-e05a-4b76-ad8b-68b2183f99f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT/B/aCQrOsuv+7vkA9XALZE4Jb5YG+ClLdj6eZCNnev1np5jE7KTT3h3zsYBKOA+vSEzWPFRMXGnMmlSi7HaNcXip4ZSEKqeq1NUNER0nRQLfUNbMALBRS4BUtAg6J94GUytVczFniHStCKcjPZH" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0?api-version=2015-12-01-preview+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2366" ], + "x-ms-client-request-id": [ "70c9328e-1823-4ff3-b685-14b8ba5d4ff7" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "e8cda702-0b47-44c0-9e2a-73806e1ed18e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14175" ], + "x-ms-request-id": [ "e8cda702-0b47-44c0-9e2a-73806e1ed18e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001147Z:e8cda702-0b47-44c0-9e2a-73806e1ed18e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Fri, 18 Mar 2022 00:11:47 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvv0YJ4kbbggkZR4hKZTiuEBxAeNAgVm5K1swX/bkk2ccCTA5lmO8DGbNVECj/PEdn/+wPDhVasFV8RVCGlfLuv4DBY+L8jrPC8uxCpJErx4UPhzt2xtDpNOlkAvI8cR0H+8FeRN+UTbOUZIOSLh1B" ] }, "ContentHeaders": { "Content-Length": [ "1131" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/UbuntuServer.vhd\"},\"dataDisks\":[{\"lun\":0,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk1.vhd\"},{\"lun\":1,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk2.vhd\"},{\"lun\":2,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk3.vhd\"},{\"lun\":3,\"uri\":\"https://azsaddvmimagesacrp.blob.redmond.ext-n25r0507.masd.stbtest.microsoft.com/azsaddvmimagecontainercrp/datadisk4.vhd\"}],\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": "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}", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "211" ] + "Content-Length": [ "202" ] } }, "Response": { "StatusCode": 201, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2229a853-ad6f-4db9-a5e6-d6275121b2a6" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1098" ], - "x-ms-request-id": [ "2229a853-ad6f-4db9-a5e6-d6275121b2a6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181421Z:2229a853-ad6f-4db9-a5e6-d6275121b2a6" ], + "x-ms-correlation-request-id": [ "ae76c489-6723-4f31-abfa-1e649dcc37f6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1087" ], + "x-ms-request-id": [ "ae76c489-6723-4f31-abfa-1e649dcc37f6" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001148Z:ae76c489-6723-4f31-abfa-1e649dcc37f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:21 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:11:47 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHri+yfHeVzV5pr5wPzoqlKGCWPdETZg5kh+EMxhweoFkd4+8LVklk5CZdPven5dkmsq21xMIk6WjBNa2UOAeNfJGrvzbVkc5anXP2BsW5zdTDT/0l+MYzQLzpzDEeIM1+eOGDJm/TG57MUaB3C7v" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnNsPhwM+2i5cqGc6xdTQgwLmUrFjHFPPhjFtLnXdLJA2bfrh/8lzQJ/21lWIZy8oq8CJi9/9WW14sgMvPmb+Z9F3QfMsQpOgl1iO75DHs8eMVZ2HEFWd6I+v4GF9wbuaNv+xkRbe4nYXNOtm5VrF" ] }, "ContentHeaders": { - "Content-Length": [ "586" ], + "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\":\"Creating\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Creating\"}}", "isContentBase64": false } }, - "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": { + "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1640" ], - "x-ms-client-request-id": [ "7ee77952-3953-46e1-a584-5be29c2b3b4d" ], + "x-ms-unique-id": [ "2368" ], + "x-ms-client-request-id": [ "15d0ebb3-2558-4db5-a600-ae73aa95d39c" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -604,36 +730,36 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ca863b56-e040-4b46-a3f3-c26dd9cee65e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13761" ], - "x-ms-request-id": [ "ca863b56-e040-4b46-a3f3-c26dd9cee65e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181451Z:ca863b56-e040-4b46-a3f3-c26dd9cee65e" ], + "x-ms-correlation-request-id": [ "e50e911e-6bc5-4879-9f6c-8bab2c3306c4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14174" ], + "x-ms-request-id": [ "e50e911e-6bc5-4879-9f6c-8bab2c3306c4" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001218Z:e50e911e-6bc5-4879-9f6c-8bab2c3306c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:51 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmWVoPv0d6psoAqXxvGCesCalUfF6Go9gm7T7YfsezSVNLFgKO10PSPX/5VaK6fbEb9Yw2BuWW48CkqIXTk1P3rBZUJPz04qRy+bAfulHTQmCSkQi2WycCA0ek4vFGwulgRGSp8Tg3OjNBeOf41D6" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrl+wPEeUXplCudyv3XKsfMTWv1hTr4JmqAPV751R5iHMto+Pho3MhNhgiGc8qH8I4MciciXTzRpREMfmGnGCYDO64VgSK63YZmcLk7AOFRDz1gIvs4Oc5xRxW3/uh0zzX19PMfZStok7ky0hpJBx" ] }, "ContentHeaders": { - "Content-Length": [ "587" ], + "Content-Length": [ "578" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "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": { + "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1641" ], - "x-ms-client-request-id": [ "7ee77952-3953-46e1-a584-5be29c2b3b4d" ], + "x-ms-unique-id": [ "2369" ], + "x-ms-client-request-id": [ "15d0ebb3-2558-4db5-a600-ae73aa95d39c" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -646,73 +772,73 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "63e49426-f0ec-453b-a590-28a36aecd5be" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13760" ], - "x-ms-request-id": [ "63e49426-f0ec-453b-a590-28a36aecd5be" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181451Z:63e49426-f0ec-453b-a590-28a36aecd5be" ], + "x-ms-correlation-request-id": [ "3a273cd7-1fe1-4b46-bb79-bc25936207d9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14173" ], + "x-ms-request-id": [ "3a273cd7-1fe1-4b46-bb79-bc25936207d9" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001218Z:3a273cd7-1fe1-4b46-bb79-bc25936207d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:51 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBX3ZYRmPzeuPfzne6nZaonY8ex5MNhrceUqEoxJa/0ejGL7eEDrhOQ7O6vRYDUNx/TqKDI1VPwPCQo+xw68M8yFaB3+gGXdFc+NB5iw44sS9FJhf6Rd0iWn47UYNYlrsy2zfyuYy4JOdqpTjBO0n" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjAyHNiW8yOpVIGHpunEGvuDKozaPn1NQVnnICfme2oU2nnuS+z/SPSPjF+9IM4rndgSiyDGDKcOKTz7I1y2TJXDyFfo6IIhQnuClaHh/SJEvRyLHq4Pjx+xPVhSj6qS8c/HEQgaTG0IXj7/FEUf9" ] }, "ContentHeaders": { - "Content-Length": [ "587" ], + "Content-Length": [ "578" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "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": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": "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}", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "211" ] + "Content-Length": [ "202" ] } }, "Response": { "StatusCode": 201, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e4bdf50e-8344-47d4-95bc-cb0c74d6d39d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1097" ], - "x-ms-request-id": [ "e4bdf50e-8344-47d4-95bc-cb0c74d6d39d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181453Z:e4bdf50e-8344-47d4-95bc-cb0c74d6d39d" ], + "x-ms-correlation-request-id": [ "435379ba-7183-418d-aba3-130f62076c99" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1086" ], + "x-ms-request-id": [ "435379ba-7183-418d-aba3-130f62076c99" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001218Z:435379ba-7183-418d-aba3-130f62076c99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:14:53 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6Tdgtusp1D1bItZqv4neD5/kBuFasQVZ4GFv+KOxdgV+Fae042Uy6B/D+jqQK9B7vFQ1qlGprAxQhAfNRgQ2MfqdAIqXez8Mohz9nVIWTyGrdkE8uRMusYwKLQ8+CVkxQqwfaCh73QJo6pJtrmjE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi0JJAupNihMz3+MdrEdLEfZuUeoAUvKGeBbxvJ+YubnW8OYoBGhNPMxKZCA7FneFD5iScA0W8vIrQgynjEDUlLIRv5BGtf5PHl6/R3WixyTzKadxXVQ4pwP2jALRXJkRcgd7iqUQInHnbygMr87h" ] }, "ContentHeaders": { - "Content-Length": [ "586" ], + "Content-Length": [ "577" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Creating\"}}", "isContentBase64": false } }, - "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": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1643" ], - "x-ms-client-request-id": [ "dd1cb50b-9e77-429e-8777-13b36de2559a" ], + "x-ms-unique-id": [ "2371" ], + "x-ms-client-request-id": [ "06b90c71-e9e5-4b80-9e07-4a2aa4811356" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -725,36 +851,36 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "44e8916e-b16a-43a9-bc0c-7c925dea188c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14092" ], - "x-ms-request-id": [ "44e8916e-b16a-43a9-bc0c-7c925dea188c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181523Z:44e8916e-b16a-43a9-bc0c-7c925dea188c" ], + "x-ms-correlation-request-id": [ "cebfdcdb-28af-4da3-9f06-c75436056824" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14172" ], + "x-ms-request-id": [ "cebfdcdb-28af-4da3-9f06-c75436056824" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001249Z:cebfdcdb-28af-4da3-9f06-c75436056824" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:23 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/6cF8SC/oldlwjXp7jNMeaqVXHbH0TkHaxuhT5DWWdDjfZZ7agJ0+wd8aUk3GPVYAEH9SNkm9p1yPu6JefbsTNIoM8aR8XtnTbbLJDzDdKuGJiaRdAug0ZTG87VUamZgcHtVTZwfZ6+WiI2dEXEb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIvIH55V59G51eKrXNHmzOxoYGS5ijmTLJbS37na3kInJbx8Q8V4N1i4m5G1VTLwmXxaYqQcGVOEtsllmj8x4KbCMlzx6rIlyx60Cf2bh/dQ2NoaPL8W4mZC8kX3T2Cxsi97ZL/dWEZ8rg8qUZRJS" ] }, "ContentHeaders": { - "Content-Length": [ "587" ], + "Content-Length": [ "578" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "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": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1644" ], - "x-ms-client-request-id": [ "dd1cb50b-9e77-429e-8777-13b36de2559a" ], + "x-ms-unique-id": [ "2372" ], + "x-ms-client-request-id": [ "06b90c71-e9e5-4b80-9e07-4a2aa4811356" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -767,35 +893,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "97b488c8-aed1-4438-bcd2-106a279f7a85" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14091" ], - "x-ms-request-id": [ "97b488c8-aed1-4438-bcd2-106a279f7a85" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181524Z:97b488c8-aed1-4438-bcd2-106a279f7a85" ], + "x-ms-correlation-request-id": [ "95cc2465-faef-4548-a1c2-631d43db8a99" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14171" ], + "x-ms-request-id": [ "95cc2465-faef-4548-a1c2-631d43db8a99" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001249Z:95cc2465-faef-4548-a1c2-631d43db8a99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:23 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtqeUfXDU1ehz8e3rtDtnssFbBI2c5b3s++2T2QqXZVlUH26LYRpSbgEMG8JVuY5swp6uJDKviwkMCBS38Xoe7gFTzvfjBM3bgtHcKUu92AWjU9Vyhe7hfeulOb21jOJx7lZiyaUkxpopKdbmjD4B" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8D3Yi9n+GIXJN1d753aRK/rvRdEht5SWoOh7AHaorypI2pDg32aXskZlhaDyLWcrZKDxJDyOi67CkkJ49qM5BmPBD7bb/USPS3QMitKoHIThpbTSmwOKqyDCcEBhZHX0OP/WbqMKXshlSznd4r1z" ] }, "ContentHeaders": { - "Content-Length": [ "587" ], + "Content-Length": [ "578" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "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": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1645" ], - "x-ms-client-request-id": [ "b9349656-6df2-4a41-91b0-bdf2759bbff2" ], + "x-ms-unique-id": [ "2373" ], + "x-ms-client-request-id": [ "e963ce3e-e0c5-4063-8177-3236bb5556c6" ], "CommandName": [ "Remove-AzsPlatformImage" ], "FullCommandName": [ "Remove-AzsPlatformImage_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -809,16 +935,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "21fb3434-55c4-4594-bf40-0e97cb788482" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14933" ], - "x-ms-request-id": [ "21fb3434-55c4-4594-bf40-0e97cb788482" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181526Z:21fb3434-55c4-4594-bf40-0e97cb788482" ], + "x-ms-correlation-request-id": [ "eede922c-c58f-426d-88c5-756a540e7a3d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14913" ], + "x-ms-request-id": [ "eede922c-c58f-426d-88c5-756a540e7a3d" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001249Z:eede922c-c58f-426d-88c5-756a540e7a3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:25 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:49 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGe0tNRZ0KfJ+P/md9weYvWwi1taC5qjUqBxOEbdmZg4cWYs2XVohRRynoPM8uh7Et9mKWZhms62rExpmlfxAyWP3Llz0tNoyTIlG+VtL4O2l54rMmOHxADZQsUwSFaZTAFI966NK9DLNDi80B79k" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvedi2MNR8sXquZ7OuYvsgQY4vkEaSv+eZMkwBIYjymmh+okY/i3A1EJ2E2xUnv7hbWxBA6fYqfxDBByb0RrRE9v4JFyrhgFqxCJhJWrCy9ZEcSmqTQsTg5o4XXZU/+NazrTNI1doUW1Ong4U8agSE" ] }, "ContentHeaders": { "Content-Length": [ "0" ], diff --git a/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json index e500a9e7..b2aaf7a7 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json @@ -1,13 +1,13 @@ { - "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": { + "Get-AzsVMExtension+[NoContext]+TestListVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1646" ], - "x-ms-client-request-id": [ "ed1105a0-e65c-482d-b387-013cdf7a91ef" ], + "x-ms-unique-id": [ "2374" ], + "x-ms-client-request-id": [ "67b8419b-a39d-4863-b1ee-35aea43acb81" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,35 +21,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9b3675f9-34fa-4559-874c-4dcf4b441c6a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14089" ], - "x-ms-request-id": [ "9b3675f9-34fa-4559-874c-4dcf4b441c6a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181526Z:9b3675f9-34fa-4559-874c-4dcf4b441c6a" ], + "x-ms-correlation-request-id": [ "d6695e88-4739-4d50-b303-cfaa603d9c41" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14170" ], + "x-ms-request-id": [ "d6695e88-4739-4d50-b303-cfaa603d9c41" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001250Z:d6695e88-4739-4d50-b303-cfaa603d9c41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:26 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5saxwJbesw4KWYNwSNQXR80d4wl1ur9yuzmwH8bIAFymZG7LA9ICotx+Jph2qUODF+ObsLrz9RMHgMAqW9zpwJ+H1YTTBqffYAv37qw+JMa+HbzpqrbfTUJqdbs/5R4eNTsG7WJTps/Aro90hO3m" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjTDNmtQJJiFVj3PT1KHQoGG8KZC+qJx/qQi+fZVikxqTFFIG55sfJQecyI/m0kuOvyYRn03jNDNz57FnX75dKvhsTkADsp/k7IkAEL7YNFEtxWQKs84BfNnU5zleBYFB+nw2XonMG81uxRTp50KG" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "9382" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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.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.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Get-AzsVMExtension+[NoContext]+TestGetVMExtension+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1647" ], - "x-ms-client-request-id": [ "c804408e-677e-4385-b962-26529781009f" ], + "x-ms-unique-id": [ "2375" ], + "x-ms-client-request-id": [ "9fada458-dd6f-4fed-b637-f7a2857f2101" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,35 +63,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "33dfca8d-796b-4028-82e7-e96f3f09c66b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14088" ], - "x-ms-request-id": [ "33dfca8d-796b-4028-82e7-e96f3f09c66b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181526Z:33dfca8d-796b-4028-82e7-e96f3f09c66b" ], + "x-ms-correlation-request-id": [ "895c9449-9598-4988-8739-a5cff1d424fc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14169" ], + "x-ms-request-id": [ "895c9449-9598-4988-8739-a5cff1d424fc" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001250Z:895c9449-9598-4988-8739-a5cff1d424fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:26 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBTsBn8+7hEjFDkjXboljwGaOJ69YY8AMNOSZ8y+7LfhCgpXz7rWmWVOxmFGJTay22WDldHJu0E/hzI1MswrLcXUVuNAkjoCvJlpo0oMe8BfQ/Nz61YkVdAz2XbJL7LN+VG+2QSV6xKcRlE446yeJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvN0aUnzLyqG2DeyRBWkfu2pCvczHwwFWcvH+dIp/TpJg7IExYlYymupO1MAsJjnF8/Cudh1CF+EgLz+MsYiNKEcjlO1s01RmqLkz7aWINAUpxjj+3ue8yqzXukKxjWH4Wt4B3BTDsawegJqGbVGvh" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "9382" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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.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.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1648" ], - "x-ms-client-request-id": [ "c6db8bd0-3e39-431c-8ae7-6b539e8c0a47" ], + "x-ms-unique-id": [ "2376" ], + "x-ms-client-request-id": [ "a48d64e6-19cf-4a1d-89e6-c48136c08e3d" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,35 +105,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7b895566-b645-4739-833f-62d60e93886f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14087" ], - "x-ms-request-id": [ "7b895566-b645-4739-833f-62d60e93886f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181527Z:7b895566-b645-4739-833f-62d60e93886f" ], + "x-ms-correlation-request-id": [ "6866b46d-1748-4304-a74a-b478a5f85fa4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14168" ], + "x-ms-request-id": [ "6866b46d-1748-4304-a74a-b478a5f85fa4" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001250Z:6866b46d-1748-4304-a74a-b478a5f85fa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:26 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+88ztV3gghzSPqB2vtqVPXcpmm5POQ5e56IdbxX7/YBEcGv8bgt+fKiX1kYQOCZ5ierXkX8RmklZ0fZ86A8RumuXIZUULXFwoSmxgaKWfMJ8T4BZzthM0Xmq/kpaodlcgEA+zzpdmM20SVteHigM" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfdtcy0s9OQAG/TtmHb0NW9V6EfqmRW3irqWfzkwI1VzfaUVK3j4e6ly0x6xKQ27fr6jSkTG5gFGrPcGJ3H9onPZJ8137Hh3H343uwtTQpmB6eGb4LhV1Ei7mHPjpYrdOU/pIv3v5MMs99Qqkql0Z" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "9382" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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.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.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/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\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1649" ], - "x-ms-client-request-id": [ "63eaae3e-0399-42e3-a2dd-32e503f33907" ], + "x-ms-unique-id": [ "2377" ], + "x-ms-client-request-id": [ "5cbf1943-7d53-48f3-ab7f-e706263c19d5" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,35 +147,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "14f53f72-2763-4707-9c30-44bcf6a5b75b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14086" ], - "x-ms-request-id": [ "14f53f72-2763-4707-9c30-44bcf6a5b75b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181527Z:14f53f72-2763-4707-9c30-44bcf6a5b75b" ], + "x-ms-correlation-request-id": [ "b4360440-d96f-4999-8c74-513c57b9f2c2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14167" ], + "x-ms-request-id": [ "b4360440-d96f-4999-8c74-513c57b9f2c2" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001251Z:b4360440-d96f-4999-8c74-513c57b9f2c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:27 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:50 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvllcTh/Rg8s1iBUV7IRL21xs+3rfcBydUsAnn7KhxI9Azw35RXFZz6W5C9I+8RHWpQsr0YdOl//w5vNxWr7oIDqv7xtWh6luQJG6VrN+UpjAViz6/b3zu0qH32w4qBQu8mpPriJW68JUJ+MCfZcZd" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMsFMhN3AfcFDQWXeeiNVa2QuFwAu2UYDfUnqX+XsNCIy9k8DY+Xz9XiGdWusQWbvuPyr8rqi6UuU7hi780TYUX3DLVE0SzK1KZzFxYLHEYObwiOzIdZ859YjrwgUYk/FzeZVGJ9F9AHXKrr2OP4L" ] }, "ContentHeaders": { "Content-Length": [ "585" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1650" ], - "x-ms-client-request-id": [ "c7a551ea-7952-432f-989b-7d9852292f5d" ], + "x-ms-unique-id": [ "2378" ], + "x-ms-client-request-id": [ "9a2c65b3-6e18-4892-bb1e-6a06886d203c" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -189,35 +189,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d2fc75e0-998a-43c4-9253-d99dffefd527" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14085" ], - "x-ms-request-id": [ "d2fc75e0-998a-43c4-9253-d99dffefd527" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181527Z:d2fc75e0-998a-43c4-9253-d99dffefd527" ], + "x-ms-correlation-request-id": [ "3c71d253-f254-46d0-a4ee-9a18106308ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14166" ], + "x-ms-request-id": [ "3c71d253-f254-46d0-a4ee-9a18106308ef" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001251Z:3c71d253-f254-46d0-a4ee-9a18106308ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:27 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv98EMkKIYdoe/dLCKKMNQx/X5aMjnUPsfnyxofSDx7aSlVn9+NJZxiYrP7fanpzNqzBBB45foq+H7u0jrjJS0KzfnB6R7TLm6D2tGXI7zcbcrWRrxouKnSdGfNuBwfjXb8R+R+gA7fx9IQ9s+yvyY" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgFG6isZFDriIl5/QWfeX/ephcYib8ECyTZLAKhCYM05TW6RuaetRbYuH1ieFMmQ2MBcpE5lbjLPAQ181DhH/HohVZILZ/aCd//kT1fJ0Ly1YhcDv+OY6M3G137rVZda0FKbi1fHG2fBRGF+gM+xj" ] }, "ContentHeaders": { "Content-Length": [ "633" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1651" ], - "x-ms-client-request-id": [ "0ac0dff5-dcc3-47d5-a211-64c81f1260f7" ], + "x-ms-unique-id": [ "2379" ], + "x-ms-client-request-id": [ "7921244d-efea-423d-8c24-ae2d51c2c8d0" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -231,35 +231,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d56e89b9-43ea-47a1-a010-d20e46208667" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14084" ], - "x-ms-request-id": [ "d56e89b9-43ea-47a1-a010-d20e46208667" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181528Z:d56e89b9-43ea-47a1-a010-d20e46208667" ], + "x-ms-correlation-request-id": [ "42e8ce32-ee21-40f1-9b52-2a0ef38b1b20" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14165" ], + "x-ms-request-id": [ "42e8ce32-ee21-40f1-9b52-2a0ef38b1b20" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001251Z:42e8ce32-ee21-40f1-9b52-2a0ef38b1b20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:27 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhX/BTS4atlo9cFK6lzKGwg4JzQZcEKFn9AQOKdBf9Wq3fi9NqusEvayiDUI4EUDJb/NxxBu4MQQKL2YHsnFlKi70CsKcJrHSGcVmRPxo0r0n5Y9cqZZL0dTrZ+9UZpEtKWDoeWJpt6b2wOfRNhCo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5pmiX61jA5jcAG9EMKLsuV7yEoidw/uqJ0oT71ULhLLJ3VvhpBiCtqdlHwBK2u53V9jbK+7MD0ZqilI2hPHCMQgcTO2BZfQWCix2glnKE1s0brh9kMEOofL2GM3FWnf4c0TeZsra6IWHTjv9oV3D" ] }, "ContentHeaders": { "Content-Length": [ "629" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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+5": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1652" ], - "x-ms-client-request-id": [ "c95583e7-2998-4a06-9237-72a8cf4659b3" ], + "x-ms-unique-id": [ "2380" ], + "x-ms-client-request-id": [ "2660f6c4-cb34-4aa4-8e1b-8273a9a81eb1" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -273,35 +273,77 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a363c1d1-76b0-4598-994e-c0027f0f930c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14083" ], - "x-ms-request-id": [ "a363c1d1-76b0-4598-994e-c0027f0f930c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181528Z:a363c1d1-76b0-4598-994e-c0027f0f930c" ], + "x-ms-correlation-request-id": [ "95670c57-7219-43cc-bafb-f6206d8c656c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14164" ], + "x-ms-request-id": [ "95670c57-7219-43cc-bafb-f6206d8c656c" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001252Z:95670c57-7219-43cc-bafb-f6206d8c656c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:27 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:51 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvs66C6OPeGinUN+9xYF8hTAR7UPUf/zcSbLfcqGtgYpyNkGBLwoKLee6u5o32ZBcKSIwDjits97htzyFMdG9DuVL75BiRlymS3/qsNDp0ya2Qss7067+sJDXVIs2BJcQxfxtHlxF5emm+h9RuK0AK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxRARK4jJgTN4t1AtHVCqgHPT3oclvrCDsWgl8fLKPvjxlWAQXgfME/gryjNat/TFc1TjfVYLgYI7blifRX0wHNji2KxjUL3q98eP9w1d+A1ZbfqSDxUy5RWPFMstwq4rD3SCHIytAMLhV688tAzN" ] + }, + "ContentHeaders": { + "Content-Length": [ "637" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2381" ], + "x-ms-client-request-id": [ "2e6da2d5-a88b-4439-8b08-1912d07dbb38" ], + "CommandName": [ "Get-AzsVMExtension" ], + "FullCommandName": [ "Get-AzsVMExtension_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": [ "dd6de921-05f9-40fc-b7e4-198fa996497d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14163" ], + "x-ms-request-id": [ "dd6de921-05f9-40fc-b7e4-198fa996497d" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001252Z:dd6de921-05f9-40fc-b7e4-198fa996497d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Fri, 18 Mar 2022 00:12:51 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/uNe96z4XYJ57/rfFNCQbud/iRW72+HKI9fShpl0mlNVXu23jqKyUHVJi8qbD8f8Pcvizb88kw8dhjNnrU32LLfXLUQK6n7vSuAEqVzrNNI2ZHCnDVFJES9wiuoj/xpx6P+/KEcLtkHJDyvMdpUm" ] }, "ContentHeaders": { "Content-Length": [ "625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3?api-version=2015-12-01-preview+6": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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.9.3?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1653" ], - "x-ms-client-request-id": [ "1f86c839-9c46-48fb-a0fb-7ccfc1b7400a" ], + "x-ms-unique-id": [ "2382" ], + "x-ms-client-request-id": [ "b3c84e15-3a88-44ef-9bb9-cc294fa2df2e" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -315,35 +357,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d1b76ac5-ebe8-4465-aebd-9187582d9b5b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14082" ], - "x-ms-request-id": [ "d1b76ac5-ebe8-4465-aebd-9187582d9b5b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181528Z:d1b76ac5-ebe8-4465-aebd-9187582d9b5b" ], + "x-ms-correlation-request-id": [ "5b51e094-ef57-4075-9b86-a745d6c80fb6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14162" ], + "x-ms-request-id": [ "5b51e094-ef57-4075-9b86-a745d6c80fb6" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001252Z:5b51e094-ef57-4075-9b86-a745d6c80fb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:28 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBfjMNT/v9oBfjPh1p4tlLbSS0dhxgMLswFpHwOIeCVg7YbVHDwczNtsIp9d5G6y4ye6oE7yVIneR/rqwVws8x3XivAtn2RFi3g1wOqI4uuRCAMjZTK5BAnZUxJqH/zjjrxu5kpgK3YuHwi+9QLhZ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIvGtAOlQmhTelZVX2NnU6ssBsKt3mARNU1/svEGht9YULUWifrwm1rwxY9kf080iGeYMIyWnwOGGQb7+eqDw23Nez3E4l9/3JmVIugASVi86fwcfNrSB5yVMffMFca3nL3Uv/KOsbca1/mLxkrpl" ] }, "ContentHeaders": { - "Content-Length": [ "619" ], + "Content-Length": [ "627" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.9.3\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4?api-version=2015-12-01-preview+7": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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.4?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1654" ], - "x-ms-client-request-id": [ "d8f869d0-b69f-4215-88de-262812aa9fc0" ], + "x-ms-unique-id": [ "2383" ], + "x-ms-client-request-id": [ "a5596a58-a741-4a51-8cb4-d597380667f7" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -357,35 +399,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4edd644b-5170-4897-9a2f-223297050046" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14081" ], - "x-ms-request-id": [ "4edd644b-5170-4897-9a2f-223297050046" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181528Z:4edd644b-5170-4897-9a2f-223297050046" ], + "x-ms-correlation-request-id": [ "b90e4f5a-8e07-464f-9c8c-67cf399da745" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14161" ], + "x-ms-request-id": [ "b90e4f5a-8e07-464f-9c8c-67cf399da745" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001252Z:b90e4f5a-8e07-464f-9c8c-67cf399da745" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:28 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx46P31AwSbdHFPfu8Lyvc3rXp7HbAmiCaMikITEdW/Ad2doREh9z1Q4dLd1lgyTSn+ItAaGYWxT885jdzuWvzS56im5UILBNEUEnkZxN2KVNULCzm8C00mWbouw/w04QjlQZMFLyhch/L56d1MyG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEQAQM5ifJgtrxKd0OUSCsnHvjVNT7BsFHWMOkEqQ6JvgEQRnBoAkckaGqGentoutNl8WGa2uo2oH7DljkjFUSD2xrirwyLRDvWfAt2sxUXdmJzITx9PxIVeCfGEDZ3PllMTApomOp4CC2l/7cXgb" ] }, "ContentHeaders": { - "Content-Length": [ "620" ], + "Content-Length": [ "624" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"properties\":{\"publisher\":\"Microsoft.Compute\",\"extensionType\":\"JsonADDomainExtension\",\"typeHandlerVersion\":\"1.3.4\",\"vmOsType\":\"Windows\",\"computeRole\":\"IaaS\",\"vmScaleSetEnabled\":false,\"supportMultipleExtensions\":false,\"isSystemExtension\":false,\"sourceBlob\":null,\"provisioningState\":\"Succeeded\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4?api-version=2015-12-01-preview+8": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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.4?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1655" ], - "x-ms-client-request-id": [ "c8384681-0bdf-4b88-bd37-7e77f06b8f63" ], + "x-ms-unique-id": [ "2384" ], + "x-ms-client-request-id": [ "9f183a6f-7af5-408e-a961-10c438f21d29" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -399,35 +441,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c49b1ccf-d45e-41b3-9de3-107b3e710a85" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14080" ], - "x-ms-request-id": [ "c49b1ccf-d45e-41b3-9de3-107b3e710a85" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181529Z:c49b1ccf-d45e-41b3-9de3-107b3e710a85" ], + "x-ms-correlation-request-id": [ "81dc026b-cf24-40a4-b917-0d0a5c572382" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14160" ], + "x-ms-request-id": [ "81dc026b-cf24-40a4-b917-0d0a5c572382" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001253Z:81dc026b-cf24-40a4-b917-0d0a5c572382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:28 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx10ZEFcz747s7OHZ6CmN/5b6HOwF3tnfoS1dZ6WQkzjL1pWWSlksvGdLw02nPF0Rum19JKWF1WT29NqWQkpyIaPn9RRBgCOEJV7PD6bu69EhCqY86/ncniWYhQyfH+dr1TPp/fqQFA1xrGs2yInz" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTTHQ6cjVbd7dM8rsLbg3wLI/y20za8sXbKEf2ZOwdc/u5J/NwWgtufK9NMO9OACxpVprTt6jqsEpqNnCMrMgpL/AZcvcS0inmKn0LMXpxnJ571Bk75NGB7aBA5TLfeA3mbhY0KvNW6JYbpgwIEQC" ] }, "ContentHeaders": { - "Content-Length": [ "603" ], + "Content-Length": [ "607" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.4\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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+9": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1656" ], - "x-ms-client-request-id": [ "dfa96a21-0c4d-4984-85c1-693fe156524d" ], + "x-ms-unique-id": [ "2385" ], + "x-ms-client-request-id": [ "90f53b70-2fb4-43a2-8aad-d28048ad6c29" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -441,35 +483,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f588f107-aebb-413f-9bc0-a8386a20d522" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14079" ], - "x-ms-request-id": [ "f588f107-aebb-413f-9bc0-a8386a20d522" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181529Z:f588f107-aebb-413f-9bc0-a8386a20d522" ], + "x-ms-correlation-request-id": [ "7cfad59c-a5b8-4c5c-9819-e5fc9e96a175" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14159" ], + "x-ms-request-id": [ "7cfad59c-a5b8-4c5c-9819-e5fc9e96a175" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001253Z:7cfad59c-a5b8-4c5c-9819-e5fc9e96a175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:28 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:52 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIUVsGMlfRxiLCJf3iBBo/3XeaZmF321QQ8iFzjUeYCeNorG+WiLn9cMGl0rlXZiKqjsbb8nFMGPczvHuHQeVF3PXr9+gmO0uIkIyZUbpdj0VHkRTD4rPsmriiowCuJErMqVdp9S4ai7GMSKlMaVs" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ92Uhl3pEiDfMMfXS9Q+IeUjOFjAsn9R0waY6LLCL0o9T67UWO8jaDLSCrCXE8XJRdoCxBYa6viLYCet/fpg5dimkwSAYXxhIUlDccw0xF7EFIaeyTgQbXNN5lRkWVlmS4G2SzhXoFP/UJE6KntL" ] }, "ContentHeaders": { - "Content-Length": [ "675" ], + "Content-Length": [ "621" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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+10": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1657" ], - "x-ms-client-request-id": [ "88dbf7f1-a76d-4c52-9a46-0b5e99d14686" ], + "x-ms-unique-id": [ "2386" ], + "x-ms-client-request-id": [ "1f246e89-d09c-416f-903d-821056e2c587" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -483,35 +525,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1bfc7a29-0fd2-47c2-b014-21f376713b70" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14078" ], - "x-ms-request-id": [ "1bfc7a29-0fd2-47c2-b014-21f376713b70" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181529Z:1bfc7a29-0fd2-47c2-b014-21f376713b70" ], + "x-ms-correlation-request-id": [ "012e1651-a11a-450a-9d5a-aa6a887f9ecf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14158" ], + "x-ms-request-id": [ "012e1651-a11a-450a-9d5a-aa6a887f9ecf" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001253Z:012e1651-a11a-450a-9d5a-aa6a887f9ecf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:29 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYb7fk17xJ2O2EwjmnP+KO+nQBRjHi2hAUv8Bwp4h1mdMrZQRWsXs4Eiq6LpfXS5hBNvqc/ZEdzc5rJdTjHQNS6dpTgmmfYcYAT4WdMJloelJfZXxCYxKtB29CrGqe64odHni2N2S53eozbKtoBzF" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvko1HqFWgxpC44Af3b6v1zwTt4mfR5EQYDNGtCsjB9f6iRluF2rEcdUdjmo5GlHQgFCfoKVqbCofldMG29I5cGKxXgZ4Llt5iDsPFPMjoRQcyUDCW4Wxy8Sc8uzRkQTHdsckFIyHolNEBowBlWOmA" ] }, "ContentHeaders": { - "Content-Length": [ "625" ], + "Content-Length": [ "675" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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+11": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1658" ], - "x-ms-client-request-id": [ "f4d444e2-a7bc-43c9-b6ff-95053f767d83" ], + "x-ms-unique-id": [ "2387" ], + "x-ms-client-request-id": [ "52320b25-342f-4e4d-9cbc-3b58bd5bfb00" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -525,35 +567,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f864b39c-0400-4cda-a1e8-8593bf7368e1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14077" ], - "x-ms-request-id": [ "f864b39c-0400-4cda-a1e8-8593bf7368e1" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181530Z:f864b39c-0400-4cda-a1e8-8593bf7368e1" ], + "x-ms-correlation-request-id": [ "b18ba676-91b6-4adf-94a7-f6c688975663" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14157" ], + "x-ms-request-id": [ "b18ba676-91b6-4adf-94a7-f6c688975663" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001253Z:b18ba676-91b6-4adf-94a7-f6c688975663" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:29 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvt/HTwoEzXeYwKyzbXibjpf2+FPdMqSX+8vCR26si2BjfEao0XgPmyKiLv6wfZT29MflfcMqTGc8e8VtXhaStA3/LPI8Ax8cKnkFb3KvdAFdaluWZ5s/Mf62b9eWt3kcC62nXkVfVfqMUfrYTmyMr" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6//oTwq+4W14S2gnLTWf5qohXVd0ZEoi8fEnTWMgZ0jCl8INqlU0UHzdagqRRUHOFCq4R7+rrteV+wjo4byH0kGmf0LCwakEagepVCUICKo5XbL7ULz/+7rq0mEHVm7Tkm7RL+et7+erfcdvhaqy" ] }, "ContentHeaders": { "Content-Length": [ "625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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+12": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1659" ], - "x-ms-client-request-id": [ "512435f1-c351-428c-860b-d9ac10f5be9e" ], + "x-ms-unique-id": [ "2388" ], + "x-ms-client-request-id": [ "1b0cbab8-55c8-4f97-a88c-38d28607cab4" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -567,35 +609,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "54c62c82-6fcd-4f29-9680-492d7fd16b38" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14076" ], - "x-ms-request-id": [ "54c62c82-6fcd-4f29-9680-492d7fd16b38" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181530Z:54c62c82-6fcd-4f29-9680-492d7fd16b38" ], + "x-ms-correlation-request-id": [ "721b3a45-4651-41e4-b3af-6aadeff440f1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14156" ], + "x-ms-request-id": [ "721b3a45-4651-41e4-b3af-6aadeff440f1" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001254Z:721b3a45-4651-41e4-b3af-6aadeff440f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:29 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRwcfuEcC21jGeCtMu3qiOOZsaiLu9aaVo/070j/RWZqkl30JnSLN/Ese03cQ/3lXiaYiu1Cg+IsxMuG2zgho2eVGqvy6uFFyYHunF4OUxXow1oeZKdXk8aDxcanZBt7FI1P5aKDGt0qKjbbwohiU" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPO6X65bVFZZYT2hYm3VRUFZ3n0y6pUWghLKr8pWHXAW9WVrvOJ4L8PW+gYOrv6xXK0OupqkXx6kx56pyJ0ehk+o3/wN0Zk8yMAc6HYlygqBSln66GadaJCkVF5cnZrxy0M4sQJvKYxI6aoKzpG2T" ] }, "ContentHeaders": { - "Content-Length": [ "631" ], + "Content-Length": [ "625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5?api-version=2015-12-01-preview+13": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1660" ], - "x-ms-client-request-id": [ "f91d5206-4787-4a7c-bb19-bd7ea4fb721b" ], + "x-ms-unique-id": [ "2389" ], + "x-ms-client-request-id": [ "0923c68c-3b7a-4e2c-a19f-9772f7c2c3ff" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -609,35 +651,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9dab0054-d266-4f5d-b468-ebb6a411498a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14075" ], - "x-ms-request-id": [ "9dab0054-d266-4f5d-b468-ebb6a411498a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181530Z:9dab0054-d266-4f5d-b468-ebb6a411498a" ], + "x-ms-correlation-request-id": [ "2e0b440b-2404-4f1a-b77f-a18cdcda9251" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14155" ], + "x-ms-request-id": [ "2e0b440b-2404-4f1a-b77f-a18cdcda9251" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001254Z:2e0b440b-2404-4f1a-b77f-a18cdcda9251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:29 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5/IZukG5VnK8bpv8Z7+0VrEAbgknPkVTq0HvoEQ3OprW84CHsdS9LCpQLJljTqyY5nxH0Q48Y/N1cEXqiTPYpULXiCmWAeIbaTlGooW9R5XK4AFFfD00v15LfloFbNOQZspKGy+dJTRgb4t7+ief" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQn0qj1/JCVYlrAcsOvNB4Ovfh5xZPnKQ2BE9MLLItijijaAHKHWR7YKFX9MmQEdNU88FPG/PBS77v7K450mtZeWnQpKn9873k9uA5j4jFOcGxwZlU3MnJjIpd68gvhI0crYKctY/mVRtv5BRrtOY" ] }, "ContentHeaders": { - "Content-Length": [ "629" ], + "Content-Length": [ "631" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/CustomScriptForLinux/versions/1.5.5\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2?api-version=2015-12-01-preview+14": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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.2?api-version=2015-12-01-preview", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1661" ], - "x-ms-client-request-id": [ "30dfd3d1-1426-406e-ae70-5017bf38b1b4" ], + "x-ms-unique-id": [ "2390" ], + "x-ms-client-request-id": [ "4e5c7d0f-ea52-437e-bac8-0068e45d734d" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -651,35 +693,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0faebf9a-c769-472a-826c-364145acf189" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14074" ], - "x-ms-request-id": [ "0faebf9a-c769-472a-826c-364145acf189" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181530Z:0faebf9a-c769-472a-826c-364145acf189" ], + "x-ms-correlation-request-id": [ "bdf84b1e-6e0f-4947-ae2b-71490bdfdafe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14154" ], + "x-ms-request-id": [ "bdf84b1e-6e0f-4947-ae2b-71490bdfdafe" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001254Z:bdf84b1e-6e0f-4947-ae2b-71490bdfdafe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:30 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvITYJYsB32h4Ur9TnYiUOEKK/QYUmHYi/3FH8EMymqkcWZrPBaR8k3iJJOejI7t0tcqqp+OEM+Tn8Wv7FyApgPcJugYRDgmI2fpsdKRPgS0e/X0ShPdW+tZ0Du5TgnuC7KbrxlZgh49VGHNqR41zR" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVNvcgc/s2KiCMVUTjKtR8KnwIHyztbpGFrcE9cZOcMFRZnUyP5iEeoWNtTuJ7/WEZvIW/fdKUbiTH9CY1A2ttFdfJ5Mfb7W2zhDeujWxeCFqe0XtMjjeTjv/XILXrT8biV7O52o52ozjHSE7oIEB" ] }, "ContentHeaders": { - "Content-Length": [ "621" ], + "Content-Length": [ "627" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.2\",\"name\":null,\"type\":\"Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions\",\"location\":\"redmond\",\"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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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+15": { + "Get-AzsVMExtension+[NoContext]+TestGetAllVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1662" ], - "x-ms-client-request-id": [ "69168b25-8842-4e90-8c7a-bd5f13ded15e" ], + "x-ms-unique-id": [ "2391" ], + "x-ms-client-request-id": [ "3fb8ef09-bafd-47a3-adbc-70bf1631ab82" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -693,30 +735,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e2e350eb-39e3-4815-b1db-6da60a0a9921" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14073" ], - "x-ms-request-id": [ "e2e350eb-39e3-4815-b1db-6da60a0a9921" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181531Z:e2e350eb-39e3-4815-b1db-6da60a0a9921" ], + "x-ms-correlation-request-id": [ "4f5fd591-3787-4e66-9ded-77990fdc39c3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14153" ], + "x-ms-request-id": [ "4f5fd591-3787-4e66-9ded-77990fdc39c3" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001254Z:4f5fd591-3787-4e66-9ded-77990fdc39c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:30 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsGcXLxbMwKGxiCRBoGpDudGxQPUpvrEJ4hqrNxO5Nwi/WgaXwGawCGiqaPqCZM4K8T9GMutjZEH7VGaIi0kSWItp087SWa6TrYGykHCxmTjXXuGqEnGVnqvyckOnmaeSf1gzKyg35uJyS6IWHkwi" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTv1HrwyVbGOJphAp9aRxg71KLZo8wHESCCeGq0qIx4ip6idTb6cgh2dVyd0UmBcW/vrmCyQ8pWUktivyBpYvDZBBmNPjkY810IP4cFbCwK+mR+wGFWDxNXYXiMpeRXJYIohy0UrkND5fc9tnfPce" ] }, "ContentHeaders": { "Content-Length": [ "595" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsVMExtension+[NoContext]+TestCreateVMExtension+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -730,35 +772,35 @@ "StatusCode": 201, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "141186ac-9788-408c-ae0b-011f3b360daf" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1119" ], - "x-ms-request-id": [ "141186ac-9788-408c-ae0b-011f3b360daf" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181532Z:141186ac-9788-408c-ae0b-011f3b360daf" ], + "x-ms-correlation-request-id": [ "ef21910d-47a8-433e-802a-c7dba485d853" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1085" ], + "x-ms-request-id": [ "ef21910d-47a8-433e-802a-c7dba485d853" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001255Z:ef21910d-47a8-433e-802a-c7dba485d853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:32 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuz/tNZSENNiXAZYgEgA2EmPVezdiGYuU/6g2XscnF49QYczF9Rc47YJgZZf5oVyMg7/p6EL78pRy4Vna/rXEaVU5QKbhTnjxaJDJEXu68gg9fVH2rbtQcE/O1WfxsHUJwH1yc5xCUAqU+oV8y+UX" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBxBTPWGc9545VJSqQPPcYzI4q2psspqTUOj4fOdJeHRfSEw7Q/de9Fy2aHW0q2kpD+V9gJwMXgGUjWeq2XTxrA4QK0gRtLPoJFvNRDjVtsj8Pqnap2sqNi4Gu6BRc6Lg+6f4osWkuui2oLWg/G0P" ] }, "ContentHeaders": { "Content-Length": [ "668" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/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": { + "Get-AzsVMExtension+[NoContext]+TestDeleteVMExtension+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1664" ], - "x-ms-client-request-id": [ "9aec5fd0-4fbc-4930-ae20-7cd28fe45dcf" ], + "x-ms-unique-id": [ "2393" ], + "x-ms-client-request-id": [ "5c96a333-b1b6-4407-84f0-0fe1feae8047" ], "CommandName": [ "Remove-AzsVMExtension" ], "FullCommandName": [ "Remove-AzsVMExtension_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -772,16 +814,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "38f2d0bb-1b54-4544-a0ca-5222525e337f" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14932" ], - "x-ms-request-id": [ "38f2d0bb-1b54-4544-a0ca-5222525e337f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181533Z:38f2d0bb-1b54-4544-a0ca-5222525e337f" ], + "x-ms-correlation-request-id": [ "65e9ca62-000a-4d97-a8c0-0ce83e6d2580" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14912" ], + "x-ms-request-id": [ "65e9ca62-000a-4d97-a8c0-0ce83e6d2580" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001256Z:65e9ca62-000a-4d97-a8c0-0ce83e6d2580" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:33 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7VFzErhyFnjXBsXxyWJhpulJJUc1bclPFa0gqtoDF1+oERobam4MQwxtwcqB7v4E/2LAFbfo4NUeMHUWIuixuo6f2nyr6v9L1KDhv96SkUW1v0eJyGhbjUt4txR2+GGjJSR5IONTsoeKfPZGJFP6" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWLEpPIEKf2/4Uka4EpWYnygD9vOGtxHPXpPR7BzdMweZ3zjm9mXKUBQ8jO38Lu+kFxWo8vEZH44taSTmMHyQfQIk92915r6lpDJV/kMmxpYcHj1jhKy3qmXZHoZ9auj2Ct4tp/zOENsp3ujX/pqX" ] }, "ContentHeaders": { "Content-Length": [ "0" ], diff --git a/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json index 027eabda..ed84d8b4 100644 --- a/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json @@ -1,13 +1,13 @@ { - "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": { + "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3321" ], - "x-ms-client-request-id": [ "6e9ccc44-e8dd-4c03-a880-954e471ad3b7" ], + "x-ms-unique-id": [ "2394" ], + "x-ms-client-request-id": [ "81872077-325b-439e-a644-f3bdc1e7d9ba" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,31 +21,31 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dac88c58-c349-42ee-820d-35f45629e342" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14132" ], - "x-ms-request-id": [ "dac88c58-c349-42ee-820d-35f45629e342" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192403Z:dac88c58-c349-42ee-820d-35f45629e342" ], + "x-ms-correlation-request-id": [ "6d16f7f7-d264-455f-9257-3ec4457235d1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14152" ], + "x-ms-request-id": [ "6d16f7f7-d264-455f-9257-3ec4457235d1" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001256Z:6d16f7f7-d264-455f-9257-3ec4457235d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:02 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHAwqQ17ix23Ma/oOCLl1DHAfK35l0OaNmp1eob7t6eCygPyvQkNBrbx6cqsX0t1b30MWYFfhWMnNfwM0LmiVmUHD0XJ4caTHLXnD8PyHIAqu23neJK0ZDAG4Gplm9P+V3opCYtxX+7NZPC3eSqdX" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+GOuU/JO9h265GBTwIZ0oT23DKKhDrA4beJHaHCgnGHKMir85WxvTmnNI7xOIRsO2KGlOKZlU5VK785V0tyx9dH3s2ea52BlBkUo555F07oDk+2uKszYhWAquQd9UpwHfs09TOFlHrU7y6+k9YI9" ] }, "ContentHeaders": { - "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { }, @@ -58,16 +58,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bc119376-ecf6-40c5-bcc9-ff31c6510dbb" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1174" ], - "x-ms-request-id": [ "bc119376-ecf6-40c5-bcc9-ff31c6510dbb" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192403Z:bc119376-ecf6-40c5-bcc9-ff31c6510dbb" ], + "x-ms-correlation-request-id": [ "a46bfbe0-979e-4fc4-92b0-7383ab9d3247" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], + "x-ms-request-id": [ "a46bfbe0-979e-4fc4-92b0-7383ab9d3247" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001256Z:a46bfbe0-979e-4fc4-92b0-7383ab9d3247" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWPHBac1igd1UcPmh9lKqs6exb/ir8kFdB0tHy9laZZwqaHATRE/9N/rZnqolqBIiYTQzYow01MH77zzyWhCvWd7S9BN/1tKzPilLbAZjV/qIkwId+uyLtCIaF2HRSYbw6uo7lNQtSD9FtktMynED" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5eU0pbmqBow/5IQgFJRjj5802iyJtly9oJVs4WPKgubiwDQRXxMsfIqcR/6vbNtRHDXMo4p/mbs+sFE5KF2r9l58gABcpa4vhiDcKc8v0Slbjxhurqd3U2Oks1HvWZ2mGF70h+PeGREct7aVZs2P" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -77,11 +77,11 @@ "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": { + "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\": \"95990F40-5F11-490D-B323-9317191D347A\"\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { }, @@ -94,16 +94,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4bf7911d-7b93-4127-b0bc-c45b8a8e2069" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1173" ], - "x-ms-request-id": [ "4bf7911d-7b93-4127-b0bc-c45b8a8e2069" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192403Z:4bf7911d-7b93-4127-b0bc-c45b8a8e2069" ], + "x-ms-correlation-request-id": [ "8f1ccb29-c6d8-4d7a-83f3-87e6fe325146" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1166" ], + "x-ms-request-id": [ "8f1ccb29-c6d8-4d7a-83f3-87e6fe325146" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:8f1ccb29-c6d8-4d7a-83f3-87e6fe325146" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdH9U+5YhP5uBSSH2dGAnZSb08RTaM4/dQCD7o6/Fk48xGkAM6T0ZzAjOCKXPRZ9rzLk2HaZdZvpTrDcL7aPPenRasoXUyqT5UzJ20auYUD2nO6yRM8lHvxi6YrqrX1nG9Wd8TNiS87BwJwYGv35f" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAUHJLz2bzifpgUMZYSHP6KGN0GECxv2cReciUFENAXZA7L0Dd+QaWI2LxH0yBsJ+33HOwqDNNrV7Yfgte7bmYFqLZLAWzSRy4kQ4+s0EfKHoRYdC1CHY8rx/dPEGnwN42nBqiR9P0yzj6Ma3U6H8" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -113,15 +113,15 @@ "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": { + "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3324" ], - "x-ms-client-request-id": [ "9864a8e3-9cbb-4288-8198-6d36e1a99345" ], + "x-ms-unique-id": [ "2397" ], + "x-ms-client-request-id": [ "d1b501f5-2cf8-4618-a17c-a63db92c81db" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -135,23 +135,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b0763a38-d9db-4084-99aa-50f2e768ca0c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14131" ], - "x-ms-request-id": [ "b0763a38-d9db-4084-99aa-50f2e768ca0c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:b0763a38-d9db-4084-99aa-50f2e768ca0c" ], + "x-ms-correlation-request-id": [ "52c51218-fc4d-431a-9a3c-33e7dad43fdf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14151" ], + "x-ms-request-id": [ "52c51218-fc4d-431a-9a3c-33e7dad43fdf" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:52c51218-fc4d-431a-9a3c-33e7dad43fdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv06U54elrequ55LN/0Hv21ykMH4q7E/qEBzrUmY0jOz00QD9gHZ88V++mkJ84/fRvLFTU6/uvz75/ccRuQjz//MT/y5Qku1uEntX/r9Ytswmk8PwgjXMG7xn7KQKL5HvmMnnqzC06eBAhUzhTDQTU" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/tg7zbkLazyRqhlakuJGCuac7eKLcCXhtYBjOSt5JHeihzsxP55MLtmHULruIfVrj6TF8nOBPACJRs3Mk3Q1bOcvpp2Zea8FbhZOTSLlakRKS9/ABF9lxIt7aHIy/taLYq4rbl7J2uu4mmZ5M20X" ] }, "ContentHeaders": { - "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } } diff --git a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json index 6b35d390..ac10bb0b 100644 --- a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json @@ -1,13 +1,13 @@ { - "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": { + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3325" ], - "x-ms-client-request-id": [ "767e1cfe-d6d2-41dd-b13a-f44605bc54ad" ], + "x-ms-unique-id": [ "2398" ], + "x-ms-client-request-id": [ "8c8e60a7-f432-42c7-b85e-5df55ae75513" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,31 +21,31 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1cbe374c-08f0-46c4-bbad-15cc53777e11" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14130" ], - "x-ms-request-id": [ "1cbe374c-08f0-46c4-bbad-15cc53777e11" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:1cbe374c-08f0-46c4-bbad-15cc53777e11" ], + "x-ms-correlation-request-id": [ "5bf86f89-c47f-46f6-9a71-4013184942c3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14150" ], + "x-ms-request-id": [ "5bf86f89-c47f-46f6-9a71-4013184942c3" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:5bf86f89-c47f-46f6-9a71-4013184942c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcAWeNZIAt6rY/n5JRiO9yG4pNNrtnjxdaNtz3fg2EetCeoHa0y0ezCvDd1Oe5i5H50QIZQ/+Qn3IUMLOG0Y5rfZkOxIa4tL2cYR5oqy0jGHNY/QBRtzzdMT6+m3C0sBK4fZ3Lxlvip1Zk2pxXCGx" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvq/xMGymDSblnBIV15XWv/Y9CErmmtcyB3jBdbPg77Enqg8ejbadjw+6Ep5KuyskXYLIe3gESE9hcR+h3kkYXPtGyra3AWJUM47Ar1FSjGneVw68uGiTFyLoxi0DmPcHgn3PVy9whyjXbp+yB8IbV" ] }, "ContentHeaders": { - "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { }, @@ -58,16 +58,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5096a487-7cfe-464e-b597-7520354a32f1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1172" ], - "x-ms-request-id": [ "5096a487-7cfe-464e-b597-7520354a32f1" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:5096a487-7cfe-464e-b597-7520354a32f1" ], + "x-ms-correlation-request-id": [ "fbd3ed59-d1f3-471e-a40e-547aa2605838" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1165" ], + "x-ms-request-id": [ "fbd3ed59-d1f3-471e-a40e-547aa2605838" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:fbd3ed59-d1f3-471e-a40e-547aa2605838" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAYidSRPL4vUrnRisSqZUJZvOFEvi9gX4ktJ9m8DTAIJYqxG9q7GyisWbUpveepMv/PnwjXr1em9aOTUQQVmd2U75vrGaVIa7E7HMDsOYBj6z4NmdBligbBdYfAckri3BVqL7UX+xoL4cF/lrR/Q+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ3Q4BTpvaM36gcdZ6QzRDXeMzuSRl53I9qcjWpLf++qbH7gQPlVfJJ67T13bqzsoufHpFeQmqi+ufKWaceEO3PzdG3BbCTLHXo+RGR3dnPhe7/am3rTqHkHVIs+p+XJoxF2qdc1qhPgoJ7ctxnWr" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -77,15 +77,15 @@ "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": { + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3327" ], - "x-ms-client-request-id": [ "d31e728f-ba07-4447-8ab3-f378eab231f5" ], + "x-ms-unique-id": [ "2400" ], + "x-ms-client-request-id": [ "ddf77892-7586-405a-a8b9-5f402f30706e" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,31 +99,31 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fd9885d9-a1d7-446b-8763-c2e7d14c463e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14129" ], - "x-ms-request-id": [ "fd9885d9-a1d7-446b-8763-c2e7d14c463e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:fd9885d9-a1d7-446b-8763-c2e7d14c463e" ], + "x-ms-correlation-request-id": [ "56507cf1-136c-4f9a-a9d1-88aa53907b63" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14149" ], + "x-ms-request-id": [ "56507cf1-136c-4f9a-a9d1-88aa53907b63" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:56507cf1-136c-4f9a-a9d1-88aa53907b63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXAhQVATjGcC7ju3vv9sY4YMh5n40M85m453C6gLMLww1fWtrm02F572mCV71+QJZt9OXmHoBbnaFZhvk4OMatKNScN4kTFk+z9AkeqlfhsnX5iLFqXNvcWZZ0MPfL8o2urepFtRmKckdyUlQPqOO" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWSR1bRAH3PJ6fgAx1r0PzDL2RiC4nY7+X5yX7anwKY/m2H60VslqT+YusaXQ74OTIx9zSDftcMLPY/4TDKFNI/5Mnp8aUXd85JuPnO3F0H4xnNdHyV/R9xB3AEL3BqYpVEbToK/V2yGE/fsvH2g+" ] }, "ContentHeaders": { - "Content-Length": [ "721" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\",\"95990f40-5f11-490d-b323-9317191d347a\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\",\"4e1684d1-fc6f-42f4-8eb5-e7f3ae1c81aa\"]}}", "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": { + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { }, @@ -136,16 +136,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2cbc4b7c-da7c-4389-863a-81c951424c88" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1171" ], - "x-ms-request-id": [ "2cbc4b7c-da7c-4389-863a-81c951424c88" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:2cbc4b7c-da7c-4389-863a-81c951424c88" ], + "x-ms-correlation-request-id": [ "2b8e56d2-e238-4312-b6f8-e0810b8d0f76" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1164" ], + "x-ms-request-id": [ "2b8e56d2-e238-4312-b6f8-e0810b8d0f76" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:2b8e56d2-e238-4312-b6f8-e0810b8d0f76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1payj4FUGQuGEEU5YLdmgK3YX9qwQFhVYP3aIV8qzDAyP5p2nKzTtM0Qr5RtHnuFvzen0chEYItV9DUeUTznyNqA0mh4Ox6bx/7aoizyOyC6LkAR6YUMM4Ic9ia4yoYTNn8SftmymfIpVm2ayYRC" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvegQxSvcMySsjvLePWJvszeMw0HJFnUR+ZJ3OEoMWuLofYQ/bWrVuEMlGxfhmdSdFCjo3oxBCguB/OUeEGHkfMd1TceOAC2tSAbACed0Xk0TMOu4l9ipzV85w0exuqe6pnLnem/CYHlCPxb5V935J" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -155,15 +155,15 @@ "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": { + "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3329" ], - "x-ms-client-request-id": [ "c6d67afe-b750-41aa-a41f-aaae870b16f5" ], + "x-ms-unique-id": [ "2402" ], + "x-ms-client-request-id": [ "19d89512-1479-40a1-8957-da7d11e4838e" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,23 +177,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f4b5b591-b711-49bd-a53f-54ca198507fd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14128" ], - "x-ms-request-id": [ "f4b5b591-b711-49bd-a53f-54ca198507fd" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192404Z:f4b5b591-b711-49bd-a53f-54ca198507fd" ], + "x-ms-correlation-request-id": [ "2be5a4f2-5248-47f0-b120-7e1bb53a5400" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14148" ], + "x-ms-request-id": [ "2be5a4f2-5248-47f0-b120-7e1bb53a5400" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:2be5a4f2-5248-47f0-b120-7e1bb53a5400" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:04 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkz+7EOQkkJcjArR+heMqFxi9xBXJmVyjWI06u0DwmpVCMtBP1kozcVmo6w8zsfEGnCBuRACf34cdooKOGqoMUUQISx7a39DS559ovUiJoXagSQ9G5IyVN38VjAm7JZCNmIev+u/iCczr5Ea9nHWs" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4qxCLJFKQYPSQnR4UH4lMJua8ZRO7IN9wFT9QdSHK67qGPUQuqsEgdc7IC54rAzJ9a9/6EcL2DY2lmMAoucWAQf2fMgA+VJ9pvKOJc8dZb/fhQOyHSC8jqqjIgGIj+EQ1wLcdn+ME3PcuSeB1h7g" ] }, "ContentHeaders": { - "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } } diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json index 8f6510ef..e00b76c6 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json @@ -1,13 +1,13 @@ { - "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": { + "Get-AzsComputeFeature+[NoContext]+TestGetComputeFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3330" ], - "x-ms-client-request-id": [ "2be80849-1663-453f-a7be-cac228aa9f52" ], + "x-ms-unique-id": [ "2403" ], + "x-ms-client-request-id": [ "4fe712d2-1344-4a7d-bc45-bd571ebe263a" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,23 +21,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "edc50d37-7df1-4bb9-95ea-9e9f64cd1f1f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14127" ], - "x-ms-request-id": [ "edc50d37-7df1-4bb9-95ea-9e9f64cd1f1f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192405Z:edc50d37-7df1-4bb9-95ea-9e9f64cd1f1f" ], + "x-ms-correlation-request-id": [ "de1112b2-fbee-44c7-a91d-049c47a14bb7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14147" ], + "x-ms-request-id": [ "de1112b2-fbee-44c7-a91d-049c47a14bb7" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:de1112b2-fbee-44c7-a91d-049c47a14bb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:04 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOuMGcW9LqC1eowNHcA+bBBzito2g1RYdI1lT0dX+sQl6iUbOKCPTo3x88zBNRjGwLsMR/gyi3/Jqmlvchzn8RVjWqFhtaOyNnA/SKMtNsrMjInWdnO+SQJORA3K/GPx0FvRcb8h2m0nrAKr6tSai" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoyCEJ3w/EmpVlvCsXoORp8yypzaWwah/77RhI5wrGeuoiZXrNEWdUxiUMCA2vmLsf3iXVIhAdhW0tjt7Q0zY/z/qD8NqzydokUKjrdMZ3w2jcPD34yXEwZsxndW0CTBP8D4311ArmQ1wJy/hG0RS" ] }, "ContentHeaders": { - "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } } diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json index 27d25508..9def2430 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json @@ -1,13 +1,13 @@ { - "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": { + "Quota+[NoContext]+TestListQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1671" ], - "x-ms-client-request-id": [ "8ab46a91-36e5-4c81-8524-675604188ab2" ], + "x-ms-unique-id": [ "2404" ], + "x-ms-client-request-id": [ "b86d17aa-e4ba-440e-bb91-223f360cf9c1" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,3607 +21,37 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dcee5e3f-01ce-42d4-a103-ca040aa15e7d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14068" ], - "x-ms-request-id": [ "dcee5e3f-01ce-42d4-a103-ca040aa15e7d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181535Z:dcee5e3f-01ce-42d4-a103-ca040aa15e7d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:34 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu368vc+fECSUAdUwnBKpvomiRdMf4G8vRai7jHYSHfyMAN2Q+FXyTFfTfPO2WjhYu+2BbWa6nio752+7SDM6TSPZFnhDjRxlz5TBpbb9lQVORTFyUOmpR8anv9QtX6NZR7cPt9QZevnzwMKGsZIF" ] - }, - "ContentHeaders": { - "Content-Length": [ "89437" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183\",\"name\":\"crp-test-admin-quota-183\",\"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-295\",\"name\":\"crp-test-admin-quota-295\",\"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-403\",\"name\":\"crp-test-admin-quota-403\",\"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-548\",\"name\":\"crp-test-admin-quota-548\",\"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/crp-test-admin-quota-609\",\"name\":\"crp-test-admin-quota-609\",\"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-666\",\"name\":\"crp-test-admin-quota-666\",\"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-763\",\"name\":\"crp-test-admin-quota-763\",\"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-880\",\"name\":\"crp-test-admin-quota-880\",\"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-930\",\"name\":\"crp-test-admin-quota-930\",\"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-932\",\"name\":\"crp-test-admin-quota-932\",\"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/crp-test-admin-quota-938\",\"name\":\"crp-test-admin-quota-938\",\"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-965\",\"name\":\"crp-test-admin-quota-965\",\"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/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_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"name\":\"TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"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_03e83052-5334-4698-ae99-2d7c920be26a\",\"name\":\"TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a\",\"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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"name\":\"TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"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_0c338586-bd2d-4853-9469-9d777aeda04c\",\"name\":\"TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c\",\"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_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"name\":\"TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"name\":\"TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"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_0fc53db4-6547-49fb-99a9-478fd1854760\",\"name\":\"TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760\",\"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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"name\":\"TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"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_1837cc90-2efd-4a73-9403-8067935dff2a\",\"name\":\"TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a\",\"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_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"name\":\"TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"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_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"name\":\"TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"name\":\"TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"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_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"name\":\"TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"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_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"name\":\"TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"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_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"name\":\"TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"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_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"name\":\"TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"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_241c777d-cea3-421f-8f87-10fad501471c\",\"name\":\"TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c\",\"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_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"name\":\"TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"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_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"name\":\"TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"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_2724109d-2850-4287-aa4a-2fee87856796\",\"name\":\"TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796\",\"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_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"name\":\"TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"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_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"name\":\"TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"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_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"name\":\"TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"name\":\"TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"name\":\"TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"name\":\"TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"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_315e9ea0-41a2-425a-89ad-035934330030\",\"name\":\"TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030\",\"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_35640a91-26b9-4752-a80f-c2ccb1200362\",\"name\":\"TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362\",\"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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"name\":\"TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"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_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"name\":\"TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"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_380ef479-4324-4189-b01d-4ac06415dff4\",\"name\":\"TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4\",\"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_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"name\":\"TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"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_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"name\":\"TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"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_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"name\":\"TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"name\":\"TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"name\":\"TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"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_40a56c01-a2d1-4532-8b31-c55667920160\",\"name\":\"TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160\",\"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_4456bc12-f4b9-468c-b445-debf990183ff\",\"name\":\"TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff\",\"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_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"name\":\"TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"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_46db30e9-0725-471d-96e2-5f99dac411f6\",\"name\":\"TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6\",\"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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"name\":\"TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"name\":\"TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"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_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"name\":\"TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"name\":\"TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"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_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"name\":\"TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"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_4affb4ae-2533-4b91-9669-178a72c28c05\",\"name\":\"TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05\",\"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_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"name\":\"TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"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_50210271-dd89-479e-b2ef-a705d6d5136e\",\"name\":\"TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e\",\"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_531120d4-b389-4576-a76a-ddaefbc7d099\",\"name\":\"TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099\",\"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_5351849c-c628-4716-bd44-d0e596aba50d\",\"name\":\"TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d\",\"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_5367a7df-297e-466f-bd25-70e916a864ef\",\"name\":\"TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef\",\"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_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"name\":\"TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"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_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"name\":\"TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"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_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"name\":\"TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"name\":\"TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"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_5e42ae42-19e7-4173-9637-a2151db79696\",\"name\":\"TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696\",\"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_5f0b1184-4467-41d3-95d2-912a324591c8\",\"name\":\"TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8\",\"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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"name\":\"TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"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_62f98c1d-6944-4881-9340-88f3518ab36a\",\"name\":\"TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a\",\"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_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"name\":\"TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"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_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"name\":\"TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"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_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"name\":\"TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"name\":\"TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"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_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"name\":\"TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"name\":\"TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"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_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"name\":\"TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"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_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"name\":\"TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"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_718a092c-627e-44c9-8b85-afa051604d51\",\"name\":\"TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51\",\"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_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"name\":\"TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"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_74b7ce15-3896-4604-aa77-dd938948d44e\",\"name\":\"TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e\",\"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_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"name\":\"TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"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_75570a55-9a85-4ab6-b307-1729dea80220\",\"name\":\"TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220\",\"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_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"name\":\"TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"name\":\"TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"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_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"name\":\"TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"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_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"name\":\"TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"name\":\"TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"name\":\"TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"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_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"name\":\"TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"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_834ccfc2-c570-486f-9f82-606958969a8f\",\"name\":\"TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f\",\"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_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"name\":\"TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"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_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"name\":\"TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"name\":\"TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"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_8855d8ef-d217-4949-844b-424daaace267\",\"name\":\"TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267\",\"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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"name\":\"TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"name\":\"TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"name\":\"TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"name\":\"TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"name\":\"TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"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_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"name\":\"TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"name\":\"TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"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_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"name\":\"TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"name\":\"TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"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_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"name\":\"TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"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_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"name\":\"TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"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_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"name\":\"TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"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_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"name\":\"TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"name\":\"TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"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_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"name\":\"TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"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_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"name\":\"TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"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_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"name\":\"TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"name\":\"TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"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_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"name\":\"TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"name\":\"TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"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_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"name\":\"TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"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_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"name\":\"TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"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_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"name\":\"TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"name\":\"TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"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_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"name\":\"TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"name\":\"TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"name\":\"TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"name\":\"TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"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_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"name\":\"TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"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_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"name\":\"TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"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_bc07765f-c3f5-403d-8852-a26378a74da1\",\"name\":\"TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1\",\"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_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"name\":\"TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"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_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"name\":\"TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"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_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"name\":\"TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"name\":\"TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"name\":\"TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"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_c3962496-e060-45e6-b892-428bd15fba06\",\"name\":\"TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06\",\"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_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"name\":\"TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"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_c5117940-85df-4e95-8295-08b129c4230a\",\"name\":\"TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a\",\"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_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"name\":\"TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"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_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"name\":\"TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"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_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"name\":\"TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"name\":\"TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"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_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"name\":\"TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"name\":\"TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"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_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"name\":\"TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"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_d47b3132-f356-4b72-a8e9-f915289d622f\",\"name\":\"TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f\",\"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_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"name\":\"TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"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_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"name\":\"TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"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_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"name\":\"TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"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_de07e417-8c58-4079-8494-7f903c93fb3b\",\"name\":\"TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b\",\"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_df78adb7-1839-4e19-aaca-ea67878453da\",\"name\":\"TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da\",\"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_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"name\":\"TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"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_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"name\":\"TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"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_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"name\":\"TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"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_e7148f69-198c-4061-9145-883d70ae5011\",\"name\":\"TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011\",\"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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"name\":\"TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"name\":\"TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"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_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"name\":\"TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"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_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"name\":\"TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"name\":\"TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"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_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"name\":\"TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"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_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"name\":\"TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"name\":\"TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"name\":\"TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"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_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"name\":\"TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"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_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"name\":\"TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"name\":\"TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"name\":\"TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"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_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"name\":\"TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "1672" ], - "x-ms-client-request-id": [ "653f04e9-6a4d-4e9b-987a-9f54ef0467ae" ], - "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d783473b-4fc6-4a93-80d6-4b519fe08ddc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14067" ], - "x-ms-request-id": [ "d783473b-4fc6-4a93-80d6-4b519fe08ddc" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181536Z:d783473b-4fc6-4a93-80d6-4b519fe08ddc" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:36 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnhUY3RP9jlcyRx4pTnJPcYA8LjThDMHJ3iGeD1XPXnAkm9b1vKwjhrZ2zmZLPhXEHWI7BRCT0Ohb+8Dab6HjmIRhQccDNflavdaPYP2Hr0X4bEu145JWPF6yuUy46tmnG8ej3OvNXKftsHmMCb31" ] - }, - "ContentHeaders": { - "Content-Length": [ "89437" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183\",\"name\":\"crp-test-admin-quota-183\",\"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-295\",\"name\":\"crp-test-admin-quota-295\",\"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-403\",\"name\":\"crp-test-admin-quota-403\",\"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-548\",\"name\":\"crp-test-admin-quota-548\",\"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/crp-test-admin-quota-609\",\"name\":\"crp-test-admin-quota-609\",\"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-666\",\"name\":\"crp-test-admin-quota-666\",\"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-763\",\"name\":\"crp-test-admin-quota-763\",\"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-880\",\"name\":\"crp-test-admin-quota-880\",\"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-930\",\"name\":\"crp-test-admin-quota-930\",\"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-932\",\"name\":\"crp-test-admin-quota-932\",\"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/crp-test-admin-quota-938\",\"name\":\"crp-test-admin-quota-938\",\"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-965\",\"name\":\"crp-test-admin-quota-965\",\"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/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_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"name\":\"TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"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_03e83052-5334-4698-ae99-2d7c920be26a\",\"name\":\"TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a\",\"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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"name\":\"TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"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_0c338586-bd2d-4853-9469-9d777aeda04c\",\"name\":\"TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c\",\"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_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"name\":\"TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"name\":\"TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"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_0fc53db4-6547-49fb-99a9-478fd1854760\",\"name\":\"TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760\",\"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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"name\":\"TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"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_1837cc90-2efd-4a73-9403-8067935dff2a\",\"name\":\"TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a\",\"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_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"name\":\"TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"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_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"name\":\"TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"name\":\"TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"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_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"name\":\"TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"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_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"name\":\"TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"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_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"name\":\"TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"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_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"name\":\"TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"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_241c777d-cea3-421f-8f87-10fad501471c\",\"name\":\"TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c\",\"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_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"name\":\"TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"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_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"name\":\"TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"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_2724109d-2850-4287-aa4a-2fee87856796\",\"name\":\"TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796\",\"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_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"name\":\"TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"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_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"name\":\"TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"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_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"name\":\"TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"name\":\"TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"name\":\"TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"name\":\"TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"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_315e9ea0-41a2-425a-89ad-035934330030\",\"name\":\"TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030\",\"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_35640a91-26b9-4752-a80f-c2ccb1200362\",\"name\":\"TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362\",\"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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"name\":\"TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"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_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"name\":\"TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"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_380ef479-4324-4189-b01d-4ac06415dff4\",\"name\":\"TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4\",\"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_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"name\":\"TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"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_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"name\":\"TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"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_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"name\":\"TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"name\":\"TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"name\":\"TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"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_40a56c01-a2d1-4532-8b31-c55667920160\",\"name\":\"TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160\",\"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_4456bc12-f4b9-468c-b445-debf990183ff\",\"name\":\"TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff\",\"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_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"name\":\"TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"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_46db30e9-0725-471d-96e2-5f99dac411f6\",\"name\":\"TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6\",\"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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"name\":\"TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"name\":\"TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"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_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"name\":\"TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"name\":\"TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"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_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"name\":\"TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"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_4affb4ae-2533-4b91-9669-178a72c28c05\",\"name\":\"TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05\",\"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_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"name\":\"TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"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_50210271-dd89-479e-b2ef-a705d6d5136e\",\"name\":\"TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e\",\"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_531120d4-b389-4576-a76a-ddaefbc7d099\",\"name\":\"TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099\",\"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_5351849c-c628-4716-bd44-d0e596aba50d\",\"name\":\"TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d\",\"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_5367a7df-297e-466f-bd25-70e916a864ef\",\"name\":\"TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef\",\"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_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"name\":\"TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"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_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"name\":\"TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"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_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"name\":\"TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"name\":\"TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"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_5e42ae42-19e7-4173-9637-a2151db79696\",\"name\":\"TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696\",\"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_5f0b1184-4467-41d3-95d2-912a324591c8\",\"name\":\"TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8\",\"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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"name\":\"TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"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_62f98c1d-6944-4881-9340-88f3518ab36a\",\"name\":\"TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a\",\"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_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"name\":\"TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"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_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"name\":\"TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"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_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"name\":\"TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"name\":\"TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"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_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"name\":\"TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"name\":\"TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"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_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"name\":\"TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"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_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"name\":\"TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"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_718a092c-627e-44c9-8b85-afa051604d51\",\"name\":\"TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51\",\"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_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"name\":\"TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"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_74b7ce15-3896-4604-aa77-dd938948d44e\",\"name\":\"TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e\",\"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_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"name\":\"TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"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_75570a55-9a85-4ab6-b307-1729dea80220\",\"name\":\"TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220\",\"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_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"name\":\"TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"name\":\"TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"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_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"name\":\"TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"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_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"name\":\"TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"name\":\"TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"name\":\"TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"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_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"name\":\"TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"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_834ccfc2-c570-486f-9f82-606958969a8f\",\"name\":\"TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f\",\"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_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"name\":\"TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"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_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"name\":\"TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"name\":\"TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"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_8855d8ef-d217-4949-844b-424daaace267\",\"name\":\"TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267\",\"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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"name\":\"TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"name\":\"TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"name\":\"TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"name\":\"TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"name\":\"TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"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_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"name\":\"TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"name\":\"TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"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_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"name\":\"TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"name\":\"TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"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_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"name\":\"TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"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_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"name\":\"TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"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_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"name\":\"TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"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_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"name\":\"TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"name\":\"TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"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_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"name\":\"TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"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_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"name\":\"TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"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_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"name\":\"TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"name\":\"TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"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_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"name\":\"TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"name\":\"TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"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_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"name\":\"TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"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_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"name\":\"TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"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_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"name\":\"TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"name\":\"TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"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_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"name\":\"TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"name\":\"TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"name\":\"TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"name\":\"TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"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_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"name\":\"TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"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_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"name\":\"TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"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_bc07765f-c3f5-403d-8852-a26378a74da1\",\"name\":\"TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1\",\"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_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"name\":\"TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"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_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"name\":\"TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"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_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"name\":\"TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"name\":\"TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"name\":\"TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"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_c3962496-e060-45e6-b892-428bd15fba06\",\"name\":\"TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06\",\"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_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"name\":\"TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"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_c5117940-85df-4e95-8295-08b129c4230a\",\"name\":\"TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a\",\"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_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"name\":\"TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"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_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"name\":\"TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"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_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"name\":\"TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"name\":\"TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"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_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"name\":\"TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"name\":\"TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"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_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"name\":\"TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"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_d47b3132-f356-4b72-a8e9-f915289d622f\",\"name\":\"TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f\",\"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_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"name\":\"TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"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_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"name\":\"TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"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_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"name\":\"TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"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_de07e417-8c58-4079-8494-7f903c93fb3b\",\"name\":\"TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b\",\"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_df78adb7-1839-4e19-aaca-ea67878453da\",\"name\":\"TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da\",\"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_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"name\":\"TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"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_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"name\":\"TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"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_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"name\":\"TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"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_e7148f69-198c-4061-9145-883d70ae5011\",\"name\":\"TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011\",\"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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"name\":\"TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"name\":\"TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"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_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"name\":\"TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"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_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"name\":\"TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"name\":\"TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"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_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"name\":\"TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"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_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"name\":\"TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"name\":\"TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"name\":\"TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"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_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"name\":\"TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"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_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"name\":\"TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"name\":\"TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"name\":\"TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"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_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"name\":\"TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183?api-version=2021-01-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1673" ], - "x-ms-client-request-id": [ "8eb27417-16d8-4f26-89eb-344c9a77957e" ], - "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": [ "859566be-0849-4454-ae0d-4d15da72a712" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14066" ], - "x-ms-request-id": [ "859566be-0849-4454-ae0d-4d15da72a712" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:859566be-0849-4454-ae0d-4d15da72a712" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:36 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGDMJTvGsjsXNbfnyA9aQElv9mQ3UF67h1scxXi1POCiZNcTfpiWMG3FwD4kXUf+P8xf+da1pGS4/p3QZyb2z+1IaOu/eQBHKZ1u38A/ZJaooXsDRxc2mHrrGGlZSFLuUAN9WZJ74wx6arlPwdNlN" ] - }, - "ContentHeaders": { - "Content-Length": [ "483" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183\",\"name\":\"crp-test-admin-quota-183\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "1674" ], - "x-ms-client-request-id": [ "a4ff54c5-1ad4-496d-81d3-5cc86276f27e" ], - "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6192b22b-51da-4ee3-b57c-73214cb2d50f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14065" ], - "x-ms-request-id": [ "6192b22b-51da-4ee3-b57c-73214cb2d50f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:6192b22b-51da-4ee3-b57c-73214cb2d50f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvlBlhiVxyyYd9fSWq1Q9D7Q3N3w5CmLX2tQW0EaKZQfp8lPJHIKNVoI+AbjDYy1e+2VLLDBBI7NI2oP9jYainV5a2dczQGFsUcwbyQXY+BuaYD/bwWeyakc1anQ43/GrkPC2MyvrK5llT2OnQWoQ" ] - }, - "ContentHeaders": { - "Content-Length": [ "89437" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183\",\"name\":\"crp-test-admin-quota-183\",\"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-295\",\"name\":\"crp-test-admin-quota-295\",\"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-403\",\"name\":\"crp-test-admin-quota-403\",\"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-548\",\"name\":\"crp-test-admin-quota-548\",\"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/crp-test-admin-quota-609\",\"name\":\"crp-test-admin-quota-609\",\"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-666\",\"name\":\"crp-test-admin-quota-666\",\"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-763\",\"name\":\"crp-test-admin-quota-763\",\"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-880\",\"name\":\"crp-test-admin-quota-880\",\"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-930\",\"name\":\"crp-test-admin-quota-930\",\"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-932\",\"name\":\"crp-test-admin-quota-932\",\"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/crp-test-admin-quota-938\",\"name\":\"crp-test-admin-quota-938\",\"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-965\",\"name\":\"crp-test-admin-quota-965\",\"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/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_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"name\":\"TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"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_03e83052-5334-4698-ae99-2d7c920be26a\",\"name\":\"TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a\",\"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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"name\":\"TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"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_0c338586-bd2d-4853-9469-9d777aeda04c\",\"name\":\"TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c\",\"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_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"name\":\"TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"name\":\"TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"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_0fc53db4-6547-49fb-99a9-478fd1854760\",\"name\":\"TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760\",\"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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"name\":\"TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"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_1837cc90-2efd-4a73-9403-8067935dff2a\",\"name\":\"TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a\",\"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_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"name\":\"TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"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_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"name\":\"TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"name\":\"TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"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_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"name\":\"TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"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_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"name\":\"TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"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_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"name\":\"TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"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_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"name\":\"TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"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_241c777d-cea3-421f-8f87-10fad501471c\",\"name\":\"TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c\",\"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_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"name\":\"TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"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_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"name\":\"TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"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_2724109d-2850-4287-aa4a-2fee87856796\",\"name\":\"TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796\",\"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_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"name\":\"TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"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_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"name\":\"TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"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_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"name\":\"TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"name\":\"TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"name\":\"TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"name\":\"TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"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_315e9ea0-41a2-425a-89ad-035934330030\",\"name\":\"TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030\",\"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_35640a91-26b9-4752-a80f-c2ccb1200362\",\"name\":\"TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362\",\"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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"name\":\"TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"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_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"name\":\"TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"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_380ef479-4324-4189-b01d-4ac06415dff4\",\"name\":\"TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4\",\"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_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"name\":\"TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"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_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"name\":\"TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"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_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"name\":\"TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"name\":\"TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"name\":\"TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"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_40a56c01-a2d1-4532-8b31-c55667920160\",\"name\":\"TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160\",\"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_4456bc12-f4b9-468c-b445-debf990183ff\",\"name\":\"TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff\",\"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_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"name\":\"TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"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_46db30e9-0725-471d-96e2-5f99dac411f6\",\"name\":\"TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6\",\"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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"name\":\"TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"name\":\"TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"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_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"name\":\"TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"name\":\"TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"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_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"name\":\"TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"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_4affb4ae-2533-4b91-9669-178a72c28c05\",\"name\":\"TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05\",\"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_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"name\":\"TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"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_50210271-dd89-479e-b2ef-a705d6d5136e\",\"name\":\"TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e\",\"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_531120d4-b389-4576-a76a-ddaefbc7d099\",\"name\":\"TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099\",\"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_5351849c-c628-4716-bd44-d0e596aba50d\",\"name\":\"TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d\",\"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_5367a7df-297e-466f-bd25-70e916a864ef\",\"name\":\"TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef\",\"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_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"name\":\"TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"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_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"name\":\"TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"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_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"name\":\"TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"name\":\"TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"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_5e42ae42-19e7-4173-9637-a2151db79696\",\"name\":\"TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696\",\"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_5f0b1184-4467-41d3-95d2-912a324591c8\",\"name\":\"TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8\",\"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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"name\":\"TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"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_62f98c1d-6944-4881-9340-88f3518ab36a\",\"name\":\"TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a\",\"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_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"name\":\"TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"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_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"name\":\"TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"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_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"name\":\"TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"name\":\"TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"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_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"name\":\"TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"name\":\"TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"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_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"name\":\"TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"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_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"name\":\"TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"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_718a092c-627e-44c9-8b85-afa051604d51\",\"name\":\"TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51\",\"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_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"name\":\"TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"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_74b7ce15-3896-4604-aa77-dd938948d44e\",\"name\":\"TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e\",\"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_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"name\":\"TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"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_75570a55-9a85-4ab6-b307-1729dea80220\",\"name\":\"TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220\",\"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_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"name\":\"TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"name\":\"TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"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_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"name\":\"TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"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_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"name\":\"TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"name\":\"TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"name\":\"TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"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_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"name\":\"TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"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_834ccfc2-c570-486f-9f82-606958969a8f\",\"name\":\"TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f\",\"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_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"name\":\"TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"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_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"name\":\"TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"name\":\"TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"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_8855d8ef-d217-4949-844b-424daaace267\",\"name\":\"TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267\",\"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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"name\":\"TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"name\":\"TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"name\":\"TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"name\":\"TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"name\":\"TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"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_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"name\":\"TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"name\":\"TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"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_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"name\":\"TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"name\":\"TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"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_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"name\":\"TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"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_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"name\":\"TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"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_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"name\":\"TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"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_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"name\":\"TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"name\":\"TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"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_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"name\":\"TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"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_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"name\":\"TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"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_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"name\":\"TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"name\":\"TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"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_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"name\":\"TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"name\":\"TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"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_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"name\":\"TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"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_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"name\":\"TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"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_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"name\":\"TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"name\":\"TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"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_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"name\":\"TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"name\":\"TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"name\":\"TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"name\":\"TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"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_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"name\":\"TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"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_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"name\":\"TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"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_bc07765f-c3f5-403d-8852-a26378a74da1\",\"name\":\"TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1\",\"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_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"name\":\"TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"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_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"name\":\"TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"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_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"name\":\"TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"name\":\"TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"name\":\"TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"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_c3962496-e060-45e6-b892-428bd15fba06\",\"name\":\"TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06\",\"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_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"name\":\"TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"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_c5117940-85df-4e95-8295-08b129c4230a\",\"name\":\"TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a\",\"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_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"name\":\"TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"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_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"name\":\"TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"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_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"name\":\"TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"name\":\"TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"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_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"name\":\"TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"name\":\"TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"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_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"name\":\"TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"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_d47b3132-f356-4b72-a8e9-f915289d622f\",\"name\":\"TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f\",\"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_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"name\":\"TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"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_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"name\":\"TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"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_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"name\":\"TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"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_de07e417-8c58-4079-8494-7f903c93fb3b\",\"name\":\"TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b\",\"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_df78adb7-1839-4e19-aaca-ea67878453da\",\"name\":\"TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da\",\"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_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"name\":\"TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"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_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"name\":\"TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"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_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"name\":\"TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"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_e7148f69-198c-4061-9145-883d70ae5011\",\"name\":\"TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011\",\"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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"name\":\"TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"name\":\"TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"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_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"name\":\"TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"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_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"name\":\"TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"name\":\"TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"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_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"name\":\"TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"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_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"name\":\"TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"name\":\"TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"name\":\"TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"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_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"name\":\"TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"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_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"name\":\"TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"name\":\"TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"name\":\"TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"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_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"name\":\"TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"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/crp-test-admin-quota-183?api-version=2021-01-01+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1675" ], - "x-ms-client-request-id": [ "9d250ed9-ed77-4215-b6ac-ed0d0fff0bcf" ], - "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": [ "e6d77957-9bf6-41ed-93e6-ad8f09fe83f2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14064" ], - "x-ms-request-id": [ "e6d77957-9bf6-41ed-93e6-ad8f09fe83f2" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:e6d77957-9bf6-41ed-93e6-ad8f09fe83f2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZxXrQBrZKUvEHIdw8ASh4a1fbQ+Ae8PcLdcgz8pwQgBSAejl7ylMvTIyjhsbhr5I+EFJ3yuwG4533hDGrBR7mh3ndjPxVQL23cAFxtlkPIXdX2w7ia3fzE85qdeytsgnswmZpbu6DIKC4FDmO0UL" ] - }, - "ContentHeaders": { - "Content-Length": [ "483" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-183\",\"name\":\"crp-test-admin-quota-183\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-295?api-version=2021-01-01+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-295?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1676" ], - "x-ms-client-request-id": [ "0f0dd62d-7dc7-414d-b39f-91ac98a9f4a6" ], - "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": [ "bde8fd92-2378-41d8-ad79-4a36d56a4d15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14063" ], - "x-ms-request-id": [ "bde8fd92-2378-41d8-ad79-4a36d56a4d15" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:bde8fd92-2378-41d8-ad79-4a36d56a4d15" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAZh8x2CuRp12RW/iW6B6aYpRtCtsXi5dcH+w3T5kuRrRfoUvr9AB7ZAvyr8viN8WRfeSBl2qdy3wKyEaUVxEC8+2VNM41ULarzIxepPLSERU9eL+CfEPjn2XeuF89StN0C5arltnbgm1CsLrtuzr" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-295\",\"name\":\"crp-test-admin-quota-295\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-403?api-version=2021-01-01+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-403?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1677" ], - "x-ms-client-request-id": [ "a0a5182d-ce8a-4e32-bc45-10f1bca77c20" ], - "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": [ "b79c2029-b9e9-4795-aba9-91728d026a2c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14062" ], - "x-ms-request-id": [ "b79c2029-b9e9-4795-aba9-91728d026a2c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:b79c2029-b9e9-4795-aba9-91728d026a2c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv58WKyT6JlZDb7gEBiZjqgQqoR+ZIiTM9JWKpqCPbChBHRZJAMwrEq3m2yh0dQUNwYnnNMp1uBzI/fkEJWZ1FegNC9LtLzXRd6rNLPvSt4eu1mKpO2IjMJp3B3epdsluwLRUM+WtiNNLLY7ATEqKy" ] - }, - "ContentHeaders": { - "Content-Length": [ "483" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-403\",\"name\":\"crp-test-admin-quota-403\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-548?api-version=2021-01-01+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-548?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1678" ], - "x-ms-client-request-id": [ "c6bd0999-2b62-4cea-b8e1-3f67a6c95702" ], - "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": [ "5775815e-e20f-4d1a-83e8-d8e3cceae164" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14061" ], - "x-ms-request-id": [ "5775815e-e20f-4d1a-83e8-d8e3cceae164" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181537Z:5775815e-e20f-4d1a-83e8-d8e3cceae164" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJce1Z4D5oJuqhHAgko3dRp3GnyFqPLiwEtTUf0PbQgLlpgmBbm3cHxy6SWA3Q5pxy+aLb8nQt8NQWhNFj56RrY7tqk0/rSu+IyXdw6Zq/dZFPgrIgwV6YZ5YHDubyX83KfWihyNq5cEHpqGHTPcU" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-548\",\"name\":\"crp-test-admin-quota-548\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-609?api-version=2021-01-01+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-609?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1679" ], - "x-ms-client-request-id": [ "5ae5863f-6a43-4e97-82fa-760e7bf45851" ], - "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": [ "b07165aa-56ee-425a-8181-5166910b1880" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14060" ], - "x-ms-request-id": [ "b07165aa-56ee-425a-8181-5166910b1880" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:b07165aa-56ee-425a-8181-5166910b1880" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtvLhxvsR6Q3e9cttccN/DAdEYRVHSaKiTrBECVmGNwdweYKyo8SKJgP7zRiLdZtXey4oQX1goluKrBRQfypvXjs+JQJXifhNb9EZGSpe8I0QXh/vm0lAYNOHhQ1vGLh0AXVZQNFFr0F2y9Ow/YxC" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-609\",\"name\":\"crp-test-admin-quota-609\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-666?api-version=2021-01-01+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-666?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1680" ], - "x-ms-client-request-id": [ "5aafd6d0-8a1b-4322-87e2-0ba46212a639" ], - "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": [ "41f976ef-0c17-4079-9505-607e585a0692" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14059" ], - "x-ms-request-id": [ "41f976ef-0c17-4079-9505-607e585a0692" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:41f976ef-0c17-4079-9505-607e585a0692" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:37 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoK9ZKFlmJqyXnCwO5dXeEwsll7aW3p/80VO1y13dAa2Yi9aZt/D72H4Ra8c05/RWeMCpVKJWOd9l6B/+AMB/hr+PIjzowRi3Cu/yHayFnrEAVcGOhIPM8RrXeYiGXHegr1Md1YIA/xttRzYR56AF" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-666\",\"name\":\"crp-test-admin-quota-666\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-763?api-version=2021-01-01+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-763?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1681" ], - "x-ms-client-request-id": [ "c2996065-927e-4a00-8673-ff41e9e9c144" ], - "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": [ "5b07ac0e-b496-4efd-a26d-5fe2a94892c4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14058" ], - "x-ms-request-id": [ "5b07ac0e-b496-4efd-a26d-5fe2a94892c4" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:5b07ac0e-b496-4efd-a26d-5fe2a94892c4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5HpcRe+cH7NAP1iUJcVUOAav5uFPu9EnPNXE1A6GZbiU0pId0aAQJWo3FTITJataAvHZcbauHV8DM7o0WzIaIyIlQhw/MC/BD9IvefUhgXK59yCVVb1V15cid1MFg86s00C/AKjJocTAhK+tRLKJ" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-763\",\"name\":\"crp-test-admin-quota-763\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-880?api-version=2021-01-01+9": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-880?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1682" ], - "x-ms-client-request-id": [ "6c1b7437-f5ac-45ee-87c9-908046f0535e" ], - "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": [ "9d3d0a9c-c7b3-4735-b87d-9759d6d6ccf8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14057" ], - "x-ms-request-id": [ "9d3d0a9c-c7b3-4735-b87d-9759d6d6ccf8" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:9d3d0a9c-c7b3-4735-b87d-9759d6d6ccf8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvh/7qvR5wlM6QR0IIdRktk21WlaVgUqcbKW1kluNBZmMY+fy5nkcc30uZymAhMVNEe1nSjVN7wZ7t/aVniJLXWkH68WOGpk6reO9FNeupUQ3TXrlh02coC4qosakCHMZuFEt5cb4GcuaxNKKXSxDG" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-880\",\"name\":\"crp-test-admin-quota-880\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-930?api-version=2021-01-01+10": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-930?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1683" ], - "x-ms-client-request-id": [ "878d3066-5ae0-4934-8268-ba477d6565a4" ], - "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": [ "c6e922ea-8f6a-451a-9ffe-c51a9f97401b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14056" ], - "x-ms-request-id": [ "c6e922ea-8f6a-451a-9ffe-c51a9f97401b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:c6e922ea-8f6a-451a-9ffe-c51a9f97401b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvqKyRi9cIYqePaONhCbxnqO/tl2LkBM598j7YmXP3wXY5zgQDRXVIN95bAialm3O9KhOMCmubYMNrnHVsRRNfAnYHOA64giEs/gCPuam/TdxLkEopsUNQz50W4UXEBWgSl9XPSw2f20CAddx9I6v" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-930\",\"name\":\"crp-test-admin-quota-930\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-932?api-version=2021-01-01+11": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-932?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1684" ], - "x-ms-client-request-id": [ "bb503b42-def3-48ee-b4ee-7afcf8573cc4" ], - "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": [ "a8db74ce-6b07-4a10-b4fc-40b4d1c34d23" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14055" ], - "x-ms-request-id": [ "a8db74ce-6b07-4a10-b4fc-40b4d1c34d23" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181538Z:a8db74ce-6b07-4a10-b4fc-40b4d1c34d23" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrZbyJvnxbFtFH3IuYod0MJBPr0d7Yht5YGuaPqM5O3eetKCqmBO5kLBoEqUHGLOHu1wEz0FGUomAJ99Ht3KpAqVPZc4cgYhJrDUtV5FCD27a/zcrlrrQuwm/e/tOtvFucw+ZGS3omd72XuzTpr4Y" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-932\",\"name\":\"crp-test-admin-quota-932\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-938?api-version=2021-01-01+12": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-938?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1685" ], - "x-ms-client-request-id": [ "1497c18d-d40c-466a-9a9e-e48edf1bab2e" ], - "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": [ "acd64f21-c80a-48dc-88a2-53318d167856" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14054" ], - "x-ms-request-id": [ "acd64f21-c80a-48dc-88a2-53318d167856" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:acd64f21-c80a-48dc-88a2-53318d167856" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDdeyVaFyCKYypvejR7Km/5ZAXHKQnCeUCaG6j90q/TWP3SSm3npa5VilqSaI+SE5Wj55N0+EHBONhNgpxN693FLIIwooXRYHJbu4zw6BOHxR/0FeJVEixh89/7Qqh+5wYzJNavJU+Fa+JClehMTm" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-938\",\"name\":\"crp-test-admin-quota-938\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-965?api-version=2021-01-01+13": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-965?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1686" ], - "x-ms-client-request-id": [ "349d13be-de7e-4a84-8d4e-abf757ad6866" ], - "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": [ "66d5ca2a-5c4b-4042-ba43-be2a4178b275" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14053" ], - "x-ms-request-id": [ "66d5ca2a-5c4b-4042-ba43-be2a4178b275" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:66d5ca2a-5c4b-4042-ba43-be2a4178b275" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxI13Hq3xaM9yZTPrG8SignV9h+R5v/YXHsFMrusn1kqWX6ZOYSxoJUjah6VNcgzS4h6O2yePHizvkPrxefwMNMvrJ1QzFiCN5BCYz0dSRb9Xb5yP5JZZg5nUHWla/kOL0BvxFf3Y7kTVACiwEz6i" ] - }, - "ContentHeaders": { - "Content-Length": [ "484" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-965\",\"name\":\"crp-test-admin-quota-965\",\"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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default Quota?api-version=2021-01-01+14": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "1687" ], - "x-ms-client-request-id": [ "3d2d55c7-ff77-488f-9ffa-487bc0fa366f" ], - "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": [ "18bec46b-a007-44b4-aaaa-b278b6ece463" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14052" ], - "x-ms-request-id": [ "18bec46b-a007-44b4-aaaa-b278b6ece463" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:18bec46b-a007-44b4-aaaa-b278b6ece463" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:38 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHCxhZDb33aXN8dZReD1yZnJnAuQDx1ytGtvkhtgBQZTDSM21GhkGFs+LOVUy219mq4MUcSG4hPIeT005QqKrDz3MAfTIk+G9U/JlyQD1hzbhvzOrMQMcXn0E0IK4FEhN6+58tDB5oE5hWaZjIHcC" ] - }, - "ContentHeaders": { - "Content-Length": [ "465" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota?api-version=2021-01-01+15": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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": [ "1688" ], - "x-ms-client-request-id": [ "6f1b047c-1c8a-4ff2-a935-20ddc8085363" ], - "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": [ "4f49d55f-bea9-4acf-b8eb-0e005453fff0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14051" ], - "x-ms-request-id": [ "4f49d55f-bea9-4acf-b8eb-0e005453fff0" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:4f49d55f-bea9-4acf-b8eb-0e005453fff0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:39 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+fLhPfsN7FFYpmwZiNZxj0mhrSfCjDRe9Zza5WRrD/BiurrZdTSbm8whqej9o4jZKGSQ+nudawpfJqItF7LWhJ9A9PQs/rX04SHL/Jelypm7VF3Zabmu2zXOIUm72VxGMV9AhIIBWEqrxrdnaUN1" ] - }, - "ContentHeaders": { - "Content-Length": [ "443" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e?api-version=2021-01-01+16": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1689" ], - "x-ms-client-request-id": [ "9405e890-dab4-40fa-a76d-ced131b7a121" ], - "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": [ "faa567a6-b108-4650-951d-082feed3d8bc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14050" ], - "x-ms-request-id": [ "faa567a6-b108-4650-951d-082feed3d8bc" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:faa567a6-b108-4650-951d-082feed3d8bc" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:39 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3/pLpDCFh71//7n/SuLe8rYIlJJJoUzOMNbDTFG2s8pxD8VyVIUhbE4TlMm4mHMsCys5Ad4RAuZvcAqdt6Me8RiivPBcQHWAWpWSU1zP+nVHb1LVn8ZEU9RwHBnt/nfNmRNIoV7T32e8DT7c1cp8" ] - }, - "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_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"name\":\"TipCrpQuota_023d3563-4fac-4995-8fe3-091d8ee4c69e\",\"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_03e83052-5334-4698-ae99-2d7c920be26a?api-version=2021-01-01+17": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1690" ], - "x-ms-client-request-id": [ "a40b64cb-f39d-4e8a-ab6d-8e16561a81ff" ], - "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": [ "6ccd46dc-0e52-415b-a3ba-a08251d4f69c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14049" ], - "x-ms-request-id": [ "6ccd46dc-0e52-415b-a3ba-a08251d4f69c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:6ccd46dc-0e52-415b-a3ba-a08251d4f69c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:39 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNssb9AgKZu0Ds4DTFedf479A+HdOFKquUoSOGHRDYe2TFEDw3p8M8K0NjFr4yFSaLlJ3O+fPLIxUGUvBpiwBiRTMogoJHBAhxiP46siiwRU1VvgmE1qxAEDXTRaIQ8lAUJEBxSB5YNmrVS2ir4gh" ] - }, - "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_03e83052-5334-4698-ae99-2d7c920be26a\",\"name\":\"TipCrpQuota_03e83052-5334-4698-ae99-2d7c920be26a\",\"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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563?api-version=2021-01-01+18": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1691" ], - "x-ms-client-request-id": [ "49d9fe03-c800-4cff-b00a-5c36780e6bc2" ], - "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": [ "f3c92b6c-f604-4d8d-9f6d-21b17143432d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14048" ], - "x-ms-request-id": [ "f3c92b6c-f604-4d8d-9f6d-21b17143432d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181539Z:f3c92b6c-f604-4d8d-9f6d-21b17143432d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:39 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyTmr3rxNrFtlrmxkG9Q81MA4hY1UEDIBZ1nx1dZTweGALb9geuycMhFT/Lb+UHk4TO9aoqrkI/byx5Iw5UPWxEE1ev/3BD677QAbBYZJMkry50/KBEJwGX0f8c0j38r/PclMqTBGkBPtN0OEcCtP" ] - }, - "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_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"name\":\"TipCrpQuota_0ab9e961-3c68-44f2-8a75-1cbcb30ff563\",\"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_0c338586-bd2d-4853-9469-9d777aeda04c?api-version=2021-01-01+19": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1692" ], - "x-ms-client-request-id": [ "dd6062ea-b920-4c51-94b5-ccaf5a629f0d" ], - "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": [ "e46db59f-8518-42fc-966a-6a64eceb1557" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14047" ], - "x-ms-request-id": [ "e46db59f-8518-42fc-966a-6a64eceb1557" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181541Z:e46db59f-8518-42fc-966a-6a64eceb1557" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRva/WCfUgmG81Ks0ub98UmA7plzLpN1Bs63luBH79WYlnRYVOhT2SzlUsEnaADlk+iz+IG6F6zxiSPSHAkwMaG1KiXRTrg37OKSHLApivssszr4DvCEJOBmNP78iytnO27QCL+6FMAIBQhwokHNSQF" ] - }, - "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_0c338586-bd2d-4853-9469-9d777aeda04c\",\"name\":\"TipCrpQuota_0c338586-bd2d-4853-9469-9d777aeda04c\",\"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_0d989332-5d79-4fe9-8431-a80051f12ecb?api-version=2021-01-01+20": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1693" ], - "x-ms-client-request-id": [ "9941dd01-5185-440e-a1db-51e6054209b1" ], - "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": [ "1ae6762f-583a-46d0-b4a1-ff9e213da692" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14046" ], - "x-ms-request-id": [ "1ae6762f-583a-46d0-b4a1-ff9e213da692" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181541Z:1ae6762f-583a-46d0-b4a1-ff9e213da692" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQIyxyPseOBg5lZKHRW1A82QDRDad4BqtVK41LC2t0lLXq4WI1xTlanKSKQVEZqeXKIUVAgQFNeK4hWGGMPA6PKV9Pl019TCiWcKcluSBt0ACU9QV5IjFyjuZqSgLLIYNCZXeK8So08MaNA2oqECq" ] - }, - "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_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"name\":\"TipCrpQuota_0d989332-5d79-4fe9-8431-a80051f12ecb\",\"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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25?api-version=2021-01-01+21": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1694" ], - "x-ms-client-request-id": [ "e12546a2-d50b-46b3-88cd-81e2326a7fbd" ], - "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": [ "5ca07570-3bde-4a0e-8881-46cd3d6a8203" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14045" ], - "x-ms-request-id": [ "5ca07570-3bde-4a0e-8881-46cd3d6a8203" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181541Z:5ca07570-3bde-4a0e-8881-46cd3d6a8203" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyt1gubVDWUuDAB2ZtJhAYBF+ZRntKZNWb+2xhB4Ht2fy5gwMMGx7GXEU1d/1ebiF00BEP5IPAlcuT0ZFoDMyUNyR/fMcle8F/UQ+H9Rg2qxSW74RbgvyKpl722386nJH1UHLe9qz1+05S4oaWxPi" ] - }, - "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_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"name\":\"TipCrpQuota_0fa3b3b8-7647-46d0-ab6b-0c552220dd25\",\"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_0fc53db4-6547-49fb-99a9-478fd1854760?api-version=2021-01-01+22": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1695" ], - "x-ms-client-request-id": [ "75286814-9498-4afc-9f8d-dcc0bf28be38" ], - "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": [ "e83e37ed-2853-491b-aa6a-c3b9e883d77e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14044" ], - "x-ms-request-id": [ "e83e37ed-2853-491b-aa6a-c3b9e883d77e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181541Z:e83e37ed-2853-491b-aa6a-c3b9e883d77e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTd2KxJ78Ecoys5Og1iwVxXZyWXRZ7Vujg8J9cw4ZT9b8XTzG4dXVeRimi6ZwY8qOBahoTXOT/OSB5gN3VoDTOW1V3jIOzoH/JvKR2Iv9AdcwOzMjbzSWaWaUZMAQ6JCu92E25d77vk8du+AGVllw" ] - }, - "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_0fc53db4-6547-49fb-99a9-478fd1854760\",\"name\":\"TipCrpQuota_0fc53db4-6547-49fb-99a9-478fd1854760\",\"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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c?api-version=2021-01-01+23": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1696" ], - "x-ms-client-request-id": [ "6e6dce9a-5d70-42e0-b62e-67e97ef4d5c8" ], - "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": [ "8a94de0f-95e3-4fc2-a1a6-54d09952ab7f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14043" ], - "x-ms-request-id": [ "8a94de0f-95e3-4fc2-a1a6-54d09952ab7f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:8a94de0f-95e3-4fc2-a1a6-54d09952ab7f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPd16AGpfDRUSb6KNmaBilhGplpP1OG/+MjOS2sfpv1Bb5A0YQxCTVk2Oew0QZEYBhjZiOOQwN6QSk/rc+mQGxCQWgccL7jVLuTvJ+Xx1H0H3RaGeRY+c1PpQVSoBM4pPXFVFwcW4/Tq7rO+Q4VxV" ] - }, - "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_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"name\":\"TipCrpQuota_10d842cb-7a01-47ed-bdef-4a8f15dcd35c\",\"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_1837cc90-2efd-4a73-9403-8067935dff2a?api-version=2021-01-01+24": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1697" ], - "x-ms-client-request-id": [ "d4a63b7b-2ce2-42c4-af5e-becf4f2da87c" ], - "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": [ "e214cfba-7c2c-4a23-b07d-a76760e2c433" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14042" ], - "x-ms-request-id": [ "e214cfba-7c2c-4a23-b07d-a76760e2c433" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:e214cfba-7c2c-4a23-b07d-a76760e2c433" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:41 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrcC46qdPauf7+6Z3nNJP4SIXZk0xm4Uqq+fhWF1JtXZmH++CF4AZ8r58csTIfNTIwpDssovpSYOf1G4Xik5aUql6XfQwA6+4YQMr5rNQ4mAlc5ut9StmcDMwmF04qraIyZyVXyQ6ozqEHnp6E9TW" ] - }, - "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_1837cc90-2efd-4a73-9403-8067935dff2a\",\"name\":\"TipCrpQuota_1837cc90-2efd-4a73-9403-8067935dff2a\",\"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_1b3f54b9-9c23-4885-ab08-3692300c6db3?api-version=2021-01-01+25": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1698" ], - "x-ms-client-request-id": [ "825e3368-eefc-4650-aeae-7698d6ae0865" ], - "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": [ "e4f05c36-deae-4b82-9bd7-d877920a3858" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14041" ], - "x-ms-request-id": [ "e4f05c36-deae-4b82-9bd7-d877920a3858" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:e4f05c36-deae-4b82-9bd7-d877920a3858" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveCuRXvt7qbulvv32i8G8GGvWu+Xbkkk875jWNMx5tLVJgO/RjyuhkED8XLD3/Jaw/dbWuzfXzeXalylTaEmJgf3GeTWpZdNQp8V1uXII4E9o2ZfUe03avKr2ELqkwjEv2oLhxJEiYjaMNxKbcj4y" ] - }, - "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_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"name\":\"TipCrpQuota_1b3f54b9-9c23-4885-ab08-3692300c6db3\",\"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_1da01b70-953d-4e8c-91eb-e91b742fbe9b?api-version=2021-01-01+26": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1699" ], - "x-ms-client-request-id": [ "12d8325c-efa8-4580-b48f-89f75ea2d4a9" ], - "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": [ "e215c40d-0b3b-4ffb-bfb0-296ba8695fe1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14040" ], - "x-ms-request-id": [ "e215c40d-0b3b-4ffb-bfb0-296ba8695fe1" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:e215c40d-0b3b-4ffb-bfb0-296ba8695fe1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjTiCfHT9PkWI3srXSv/C6mCSnqFqIAxD1a6IZlDeTAY08aLGoPxPMkHvIV1+xqmWhJay1Bb6gHqbHPlBOFAh96IKqfnEz1AGD3nH34Jd5iS3MbtYohYU3GaRUIkgi4UGi5QH/BunPzZ5kMWzMROw" ] - }, - "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_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"name\":\"TipCrpQuota_1da01b70-953d-4e8c-91eb-e91b742fbe9b\",\"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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c?api-version=2021-01-01+27": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1700" ], - "x-ms-client-request-id": [ "d3368113-3d80-4df2-8ece-64347d2f414a" ], - "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": [ "a2385a23-0eed-4fbc-aa61-ac8c49c9e45f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14039" ], - "x-ms-request-id": [ "a2385a23-0eed-4fbc-aa61-ac8c49c9e45f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181542Z:a2385a23-0eed-4fbc-aa61-ac8c49c9e45f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNIezUE/AmLyPx51PoTb1GeaQcj4muvoH7CoHXsXXC5fFBrRoMxbApUnhwa1v+3/0Kb6f/Eej0YAvdGBhbGicptc2HdtTzQ4E7Ysz5yPIbFHfa580Ax8DA/VbYGaqSoUhezhWKe64ssxB+cG6cwNA" ] - }, - "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_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"name\":\"TipCrpQuota_1fb0c25e-3e03-42a1-8a31-8cb410f1ca1c\",\"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_20ca0054-0d9d-48af-86cc-33f2f86485fe?api-version=2021-01-01+28": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1701" ], - "x-ms-client-request-id": [ "6b35a4aa-0d52-4246-81ec-5a89521b6c78" ], - "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": [ "4fd95061-3671-422b-b309-503dbb3d485a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14038" ], - "x-ms-request-id": [ "4fd95061-3671-422b-b309-503dbb3d485a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181543Z:4fd95061-3671-422b-b309-503dbb3d485a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv78VWpgUoEhbxVi5bs3M22aaOtLjE8DBVjIwC/tVdu/Jbzd3+UpbDk0LGyHcOj25qVA2mTqZqbb83x8qD2ZDE/GbbTdGF1bQ/3i6MVoeT0noVAHNuMC5BR6nWvlhfFuTIxaZ9Zi5O5/4qtuQNFHbT" ] - }, - "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_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"name\":\"TipCrpQuota_20ca0054-0d9d-48af-86cc-33f2f86485fe\",\"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_220c9d89-f22d-4b6f-9ddb-888fa227c389?api-version=2021-01-01+29": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1702" ], - "x-ms-client-request-id": [ "e22e695d-c58b-4196-b7dd-92149aa81014" ], - "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": [ "c854b7bd-aee0-49f0-8a05-ed5781eb4ef9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14037" ], - "x-ms-request-id": [ "c854b7bd-aee0-49f0-8a05-ed5781eb4ef9" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181543Z:c854b7bd-aee0-49f0-8a05-ed5781eb4ef9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxbcFJFLloo+pQ1st05wP0nY3y9bO9TZjsKqpmPjRRJGM3EUX3BJKi4p33N3+qQu617d/sCH5qLVemQ+Jj2cbObW5+uypuB5VgU/OfctNAk2QFxftLThIUApjE//enE+OTzgOqLJns0Q5ae2i64q8" ] - }, - "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_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"name\":\"TipCrpQuota_220c9d89-f22d-4b6f-9ddb-888fa227c389\",\"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_2272ee6c-97d4-446c-a80b-1da594c9e783?api-version=2021-01-01+30": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1703" ], - "x-ms-client-request-id": [ "384a2cf6-93bb-4147-8962-2f06a91b55f6" ], - "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": [ "c5f1ac60-7b76-46ab-8d8c-2507bf1f101b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14036" ], - "x-ms-request-id": [ "c5f1ac60-7b76-46ab-8d8c-2507bf1f101b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181543Z:c5f1ac60-7b76-46ab-8d8c-2507bf1f101b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:42 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIVqef0seOjq439LfU78l26lM+JLE/iiDZ+xBlG9cOS127g5iwXBJkVRNcQQV3jLJXUu9+DEur8Xj9e+K7a3cvwvJiXrxAuMFoKXh9UXfO42h2s0KSyh3nzpWvu2FwUZ3b0mvj+w8TkmWUmb6VcRB" ] - }, - "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_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"name\":\"TipCrpQuota_2272ee6c-97d4-446c-a80b-1da594c9e783\",\"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_23ce0d46-1ed0-40ba-9b73-7a33d6846677?api-version=2021-01-01+31": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1704" ], - "x-ms-client-request-id": [ "73f6304c-56e4-4e69-8e78-e33c24a1bd7c" ], - "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": [ "0eb9acb2-0d30-4e71-8ed9-776ebc60e677" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14035" ], - "x-ms-request-id": [ "0eb9acb2-0d30-4e71-8ed9-776ebc60e677" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181543Z:0eb9acb2-0d30-4e71-8ed9-776ebc60e677" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:43 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvO/zvaa8hCZeEZII207mpLrVk9qMyDVLe/+VZYaxRp+mZeaFatkaOmpaOfu2lJdF6vzlz599e04JUazu5McG6stw04X1JLzj5GblPjsA207DzYXCGv/4OgOdfqTgvAc5RoOs5a3kTCMrxTv2rmhw6" ] - }, - "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_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"name\":\"TipCrpQuota_23ce0d46-1ed0-40ba-9b73-7a33d6846677\",\"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_241c777d-cea3-421f-8f87-10fad501471c?api-version=2021-01-01+32": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1705" ], - "x-ms-client-request-id": [ "bb08d6f0-8eac-44a2-a05d-6647a799e597" ], - "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": [ "0f471e2c-3acf-4c1b-8745-d0715846dfde" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14034" ], - "x-ms-request-id": [ "0f471e2c-3acf-4c1b-8745-d0715846dfde" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181544Z:0f471e2c-3acf-4c1b-8745-d0715846dfde" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:43 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvRqMC4NeRcEMkN9kKK9wUy7vlAn6ZwBOE/e8cvC8P51ZsNJwyYV08c9MtIeeQQp4vKBSb0m6d1xIqqKD4wAxBu9wXSqJ2c5HZfrfujwvUsySQ2rCEk1avzet2s6KbJn+klj3jPC+Vp6w8QDxw5HM" ] - }, - "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_241c777d-cea3-421f-8f87-10fad501471c\",\"name\":\"TipCrpQuota_241c777d-cea3-421f-8f87-10fad501471c\",\"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_24ad96f8-2e56-4ce6-b657-c615f53e49cc?api-version=2021-01-01+33": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1706" ], - "x-ms-client-request-id": [ "e0f65050-b11b-4223-b592-63fd86982324" ], - "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": [ "0cc7bbd6-1c49-4090-bda9-ef16e3c52a8e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14033" ], - "x-ms-request-id": [ "0cc7bbd6-1c49-4090-bda9-ef16e3c52a8e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181545Z:0cc7bbd6-1c49-4090-bda9-ef16e3c52a8e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEG3sDaWDy4NarGHldtgjDoOekQjcY51eDegAYwYOeDvegxIte3aaXVci7V5jksZbOfEsxnytVn9E02/1dcuMROz7hDohLXtklVu8BB7DIARmXC2p/HteB/n0bFO7jXyOXGPuQHqwz3AcFNZl+T0Y" ] - }, - "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_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"name\":\"TipCrpQuota_24ad96f8-2e56-4ce6-b657-c615f53e49cc\",\"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_271a6140-49ea-42bd-ba20-f7bcdf4036e8?api-version=2021-01-01+34": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1707" ], - "x-ms-client-request-id": [ "590a2d2f-fbbe-455e-b8e3-cab1cabd85a6" ], - "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": [ "0c5cae0c-3f42-4f94-9a67-2f5bcab63a44" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14032" ], - "x-ms-request-id": [ "0c5cae0c-3f42-4f94-9a67-2f5bcab63a44" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181545Z:0c5cae0c-3f42-4f94-9a67-2f5bcab63a44" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzsZM/76WD1x/s2Jzr7jdUq8ZnUw54Ki0jpLvdGyZU7Q4p4oGJ43HZg0XoxBzGk9nUBYiMOqY/1Im9y1etRjIYQGiP3URHaUGc3sHf0ZD/4G0qKGQ7XKUlXkCDCvrIVpKzT/R/la8CJwqRzDMa2+q" ] - }, - "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_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"name\":\"TipCrpQuota_271a6140-49ea-42bd-ba20-f7bcdf4036e8\",\"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_2724109d-2850-4287-aa4a-2fee87856796?api-version=2021-01-01+35": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1708" ], - "x-ms-client-request-id": [ "b6965eb4-9438-415c-93b2-c3a791b7e778" ], - "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": [ "2df0cb87-dd97-4dee-be22-a36d596569af" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14031" ], - "x-ms-request-id": [ "2df0cb87-dd97-4dee-be22-a36d596569af" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181545Z:2df0cb87-dd97-4dee-be22-a36d596569af" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Df2NvfTfbw5xUWs+IQKW7I7VZRz631zU/Glq/l+iHp6/BkDEvk7Agn2q6Os47VCUpPYHkGdcbyvrh1Wn6Lr77sgl9Wz7y/ja84TnAsbc7sa3XLg2Sg+7D90CD67efRzpZq8RxC+lUP2qHyWZNfs" ] - }, - "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_2724109d-2850-4287-aa4a-2fee87856796\",\"name\":\"TipCrpQuota_2724109d-2850-4287-aa4a-2fee87856796\",\"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_2a4653c3-fd47-4be1-886e-03fa8a908cd6?api-version=2021-01-01+36": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1709" ], - "x-ms-client-request-id": [ "93cd74b8-7175-429a-8022-7512940c9614" ], - "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": [ "7c301e78-ab45-4002-86f4-517c5d544c93" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14030" ], - "x-ms-request-id": [ "7c301e78-ab45-4002-86f4-517c5d544c93" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181545Z:7c301e78-ab45-4002-86f4-517c5d544c93" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUnFCQRdI0QRa9AYhcgFADG7AP7mPa0ix5enzx9ILSH7GC5WubRbjA37L/3vBuLmNm6Bz/Zm1n2eD/fmhkrqCneGz+tpvC1tek9Js/zVXFWMfdLRjtVTQ3dSGy1biumGIf3FekcVEqVMoOYhJPiri" ] - }, - "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_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"name\":\"TipCrpQuota_2a4653c3-fd47-4be1-886e-03fa8a908cd6\",\"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_2ad03a15-d45b-4f3d-91d9-24714832d99c?api-version=2021-01-01+37": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1710" ], - "x-ms-client-request-id": [ "0267b1c4-bb2b-4bd8-a334-98ba9a1ccbe0" ], - "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": [ "90b7a0e0-0401-4904-b950-d60ffb2862d7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14029" ], - "x-ms-request-id": [ "90b7a0e0-0401-4904-b950-d60ffb2862d7" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:90b7a0e0-0401-4904-b950-d60ffb2862d7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:45 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdcR4y9dEcabeUEivLK63onxMrhDJ1ZjDFOOhY4sF0HISQh7TAfX+1yXOxpAvbZYWRTQ/RSq2m+sZIVqsw/XnNQyweNJ+1R2Xbu2Nq+XSWpaAYPifoia2iAOfDB7/Wer8EngDiwR1t615qFJ23A3m" ] - }, - "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_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"name\":\"TipCrpQuota_2ad03a15-d45b-4f3d-91d9-24714832d99c\",\"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_2bfa0d93-6210-4930-957f-004bc4776cc6?api-version=2021-01-01+38": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1711" ], - "x-ms-client-request-id": [ "909fdd4b-3d7b-4668-9b17-de29e1976dc8" ], - "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": [ "82e8c644-5d22-431a-a22b-4bf84898e80c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14028" ], - "x-ms-request-id": [ "82e8c644-5d22-431a-a22b-4bf84898e80c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:82e8c644-5d22-431a-a22b-4bf84898e80c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbm7CASUObqtQUSMtTLZ6kOMBkpuMwSFZik+Doqo9hI/JcSK9pPQVqJ5T1/rhOGMirlk175cw1lUpWVe8+1QJHNu4gkl/Z/n+fqoBv8/A58rVDqPSDudnbBwWreg3v0y79gWZgdSG2WBT2WdyXuap" ] - }, - "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_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"name\":\"TipCrpQuota_2bfa0d93-6210-4930-957f-004bc4776cc6\",\"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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c?api-version=2021-01-01+39": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1712" ], - "x-ms-client-request-id": [ "513e7796-e043-413d-844e-98ecf6583ce9" ], - "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": [ "979cea44-69ae-455f-ac04-054311bf579d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14027" ], - "x-ms-request-id": [ "979cea44-69ae-455f-ac04-054311bf579d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:979cea44-69ae-455f-ac04-054311bf579d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJxsz+sTVPfHjJNI+DKk9KETY0iYvTUdJxyStmh6GjW4qo0rs+Lz5duezm4O9guNc0zGkPGFvC3rFrfh9YzrR9omSbwVfgqMjEfeS5mexhbPgismuErtYhZB82G60izF4j6sxz91LvmWD9BVMfrzy" ] - }, - "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_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"name\":\"TipCrpQuota_2c5206b3-aabf-41f7-8bdc-9a763cff4c7c\",\"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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef?api-version=2021-01-01+40": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1713" ], - "x-ms-client-request-id": [ "a841d478-22ec-4703-98a7-4e9d78d7afff" ], - "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": [ "b6596456-0d09-4893-a433-9c722106b7df" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14026" ], - "x-ms-request-id": [ "b6596456-0d09-4893-a433-9c722106b7df" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:b6596456-0d09-4893-a433-9c722106b7df" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDhqLXzZGqeJ9asZv8yD/GPpfDklOXwyInCOeKSkR67G3qt8iWGsvZrmIzpfsgZ/kIWNwGv//knM+eWaCSICBfj7Kyx6GjNImd8gxEQjKssGDhMV5bcGNh3Fz7sbHgYySrkBfiIkJElSCdxZeZMSd" ] - }, - "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_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"name\":\"TipCrpQuota_2c6435c4-ee9a-4f5a-a4fc-441adb5f24ef\",\"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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa?api-version=2021-01-01+41": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1714" ], - "x-ms-client-request-id": [ "22efb691-f138-4111-916e-6a400be63006" ], - "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": [ "4e11290c-d4f6-4462-9bfe-ad077ba4f72e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14025" ], - "x-ms-request-id": [ "4e11290c-d4f6-4462-9bfe-ad077ba4f72e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:4e11290c-d4f6-4462-9bfe-ad077ba4f72e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv59xkSis7gsKwW2CBYnBRGaUIDuotfDgDhoTCYkG+NK/VKgtSvb/GAgeTWyLuiBO/YFFX9U3SYoCdLIKVFmoM3GZVOFXFmwN5XalqANILr4fCEkaQPQD0AfgqblVaVJla3VIWpN1QRo1Qj1B9urSy" ] - }, - "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_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"name\":\"TipCrpQuota_2d8ba290-6a4f-4f8d-a632-fdd8768f79aa\",\"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_315e9ea0-41a2-425a-89ad-035934330030?api-version=2021-01-01+42": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1715" ], - "x-ms-client-request-id": [ "7d28314c-ab89-4a24-8fe0-4902c58e4221" ], - "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": [ "15696521-047b-4bde-a5eb-a3a6324fd235" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14024" ], - "x-ms-request-id": [ "15696521-047b-4bde-a5eb-a3a6324fd235" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181546Z:15696521-047b-4bde-a5eb-a3a6324fd235" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvO3uS5nyNsLnlYLgPMMAG68NUWZIZNMIQK/BvDJJaD/HoxTu2/xPQCDld77t0R52Gf7JSv/SJOZzz9xsy4lApEs+uSBCCq0DvW3x5fDwcGMTcXHuN1w0C6z/HHn5SmAthsJzhWhBiy3AEXR/5Awat" ] - }, - "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_315e9ea0-41a2-425a-89ad-035934330030\",\"name\":\"TipCrpQuota_315e9ea0-41a2-425a-89ad-035934330030\",\"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_35640a91-26b9-4752-a80f-c2ccb1200362?api-version=2021-01-01+43": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1716" ], - "x-ms-client-request-id": [ "2e6f39e7-09a1-4c4e-9af9-e4188eb69fee" ], - "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": [ "c27ad7c7-449e-4664-882c-afed681561a5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14023" ], - "x-ms-request-id": [ "c27ad7c7-449e-4664-882c-afed681561a5" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:c27ad7c7-449e-4664-882c-afed681561a5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:46 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH9PdBAf1iMjjUtUjhSChQVK9nKbmTwQc+famNshrpCn9MDIO8j/eNnzHLeGqAtp+yTsKjNjWa1QU1MqlWmDvT1hKwd8RT7ZYrhPRYcKeuuz1n1gW/BzXCuirp/OG560gywWZCpWJOXawEywNsDHP" ] - }, - "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_35640a91-26b9-4752-a80f-c2ccb1200362\",\"name\":\"TipCrpQuota_35640a91-26b9-4752-a80f-c2ccb1200362\",\"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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5?api-version=2021-01-01+44": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1717" ], - "x-ms-client-request-id": [ "bbe06e4a-b23a-4a35-8c1a-9f8e5774d7c6" ], - "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": [ "913a7654-d891-4587-b8f9-e8e5e2006a61" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14022" ], - "x-ms-request-id": [ "913a7654-d891-4587-b8f9-e8e5e2006a61" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:913a7654-d891-4587-b8f9-e8e5e2006a61" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9NPb8p8Q2kOArIC6tSzKpmqVtf5STy/uCFx18Cs8U6+xHWuok/XrzssTJQqbAnPzWQ/Q8nPMPUF7SgpI7YL8nHI3Az2RdLk/Sv9QMOSx2p+z97fyOh6tqZRdGu0VXPK1/U4eQatRl5Q1T0UYN1Ct" ] - }, - "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_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"name\":\"TipCrpQuota_368110e6-0f56-4dd7-96f2-4d680cb4f8b5\",\"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_36e9193c-7137-44f1-a0c0-505a1aa9164c?api-version=2021-01-01+45": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1718" ], - "x-ms-client-request-id": [ "37481700-fcd6-4411-8da9-d0463673694a" ], - "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": [ "c8f1ab64-803e-4b6a-b21e-e7f3dd69653a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14021" ], - "x-ms-request-id": [ "c8f1ab64-803e-4b6a-b21e-e7f3dd69653a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:c8f1ab64-803e-4b6a-b21e-e7f3dd69653a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhiI1rW2v2almCoAkdpgotBFTYh/x3IMf3bEl9fdah7BKk9vb/dWiwWdz/6l/Ub5h2sOt0M9b7MwW4RkpIN30wSVsaJ1CU4hcXRVT+gx47zH7w8VWXLoxCTmmJUN2GLRGo/jFfTgbbwPoCLK1kNN7" ] - }, - "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_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"name\":\"TipCrpQuota_36e9193c-7137-44f1-a0c0-505a1aa9164c\",\"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_380ef479-4324-4189-b01d-4ac06415dff4?api-version=2021-01-01+46": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1719" ], - "x-ms-client-request-id": [ "b0b07e36-ed29-4046-8820-695e2c95910e" ], - "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": [ "ef2da082-2a85-490d-929c-87ad0f2db862" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14020" ], - "x-ms-request-id": [ "ef2da082-2a85-490d-929c-87ad0f2db862" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:ef2da082-2a85-490d-929c-87ad0f2db862" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMPMen8VWGaOLQQF59mwf7G8IdXg/SaCU0DbDI4ZEYbZFNJB9fAcBB8+S3gyI6Z+vjHbtXKC0fWsXj+HBz6SL+1A6FRB77CayT9lbJG2HC/qcRtUkJGol4UeYj5IVImWREwK3RcyRIdGc0bcEo/0e" ] - }, - "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_380ef479-4324-4189-b01d-4ac06415dff4\",\"name\":\"TipCrpQuota_380ef479-4324-4189-b01d-4ac06415dff4\",\"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_38c55638-39f7-4a11-8fd6-dffe0cb594a8?api-version=2021-01-01+47": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1720" ], - "x-ms-client-request-id": [ "099fe73d-40d0-4690-8128-a4612c989cfc" ], - "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": [ "14f3ef60-1c5f-4e98-92ad-7f5321fab76e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14019" ], - "x-ms-request-id": [ "14f3ef60-1c5f-4e98-92ad-7f5321fab76e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181547Z:14f3ef60-1c5f-4e98-92ad-7f5321fab76e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv23+T0vSKKkLdYAXLGcfh51mNgxhxH21911f+TbzymH35WpUC8D37kxacNd16oxETlFBPfHo2T3vKBjT4wyh3e/GBVCCB3MWtbhOGwDO58TFTZNgy3JpCAyExA3p2BZPRlUdB4voqQQx9XZJV9sq5" ] - }, - "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_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"name\":\"TipCrpQuota_38c55638-39f7-4a11-8fd6-dffe0cb594a8\",\"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_3c45ca77-35bd-48ab-a66f-b7e774363a20?api-version=2021-01-01+48": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1721" ], - "x-ms-client-request-id": [ "49e8d6cd-692e-4f32-a2b3-d9817d272f1f" ], - "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": [ "e038351e-26bd-4b8e-86cf-2c13bf96c74a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14018" ], - "x-ms-request-id": [ "e038351e-26bd-4b8e-86cf-2c13bf96c74a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:e038351e-26bd-4b8e-86cf-2c13bf96c74a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:47 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMsWrR6qop7VVwi27vaz7vuEZSgty8NbSUAZHYFCNsOXkgIdoZHaPmB0TboEY/QPK0JgcaZh/xVaRy0smf+DUEWP/rq9fyi82d7HV2TFW8k9a14+N797DBXzvccnsIjK3eCCNIQAHZ6+4o/KFPhU/" ] - }, - "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_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"name\":\"TipCrpQuota_3c45ca77-35bd-48ab-a66f-b7e774363a20\",\"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_3cd96c63-f55c-4c55-87dc-5c3827b45243?api-version=2021-01-01+49": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1722" ], - "x-ms-client-request-id": [ "ccee93e0-14a4-4ec0-86c1-1bb33340db1a" ], - "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": [ "888e610b-4765-4325-9d54-e44f7a8989e2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14017" ], - "x-ms-request-id": [ "888e610b-4765-4325-9d54-e44f7a8989e2" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:888e610b-4765-4325-9d54-e44f7a8989e2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWW/37j2fZkpQ1NW1c3FQdyt0kLnbhXSd16Gn8bRLRMBzpwhPjsU2B3b7buR1QtbQXeY/qikIQqmqs1hYzx7kRPCgU0+UabXsuCkVz2CT9Co8reE9EejEPNKaMYpFcHrpqBOxXCyFSkch5pg5uNR9" ] - }, - "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_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"name\":\"TipCrpQuota_3cd96c63-f55c-4c55-87dc-5c3827b45243\",\"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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc?api-version=2021-01-01+50": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1723" ], - "x-ms-client-request-id": [ "72112c55-238f-4661-8f58-6b34d9e56bae" ], - "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": [ "d28e434a-03a9-43dd-83e0-66aee59a36dd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14016" ], - "x-ms-request-id": [ "d28e434a-03a9-43dd-83e0-66aee59a36dd" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:d28e434a-03a9-43dd-83e0-66aee59a36dd" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRSDHnCGsNerm0dEH9oCZCBHaCJ+KneN16LQU8kY+8RLZ9K3k8ZGuOwljlJG2jyuOZrZeQp+FoxcPszlR6Cj/exzI6njWiSeOW8iW8dyb8CGNZKn7z74nJfHFdMgA1N5o7LNMcLwuYnEK+ycayz+T" ] - }, - "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_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"name\":\"TipCrpQuota_3e5d6e90-4ca3-48b2-8cb7-3fa5b3966ecc\",\"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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69?api-version=2021-01-01+51": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1724" ], - "x-ms-client-request-id": [ "6394793a-e812-45a1-836b-cd8585cbf695" ], - "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": [ "9a69e814-4032-457a-bc2f-1e3d91d57694" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14015" ], - "x-ms-request-id": [ "9a69e814-4032-457a-bc2f-1e3d91d57694" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:9a69e814-4032-457a-bc2f-1e3d91d57694" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHQ0EbCb+dZP8xXFe2z5tAcDHquydBUktGoNrPv7fVCRbRPexqO8iS3kXYf0uF5eerMpPOTfzSJND46ezdKxZJtqzxGleQtFwgGNUIGOb4zaeGTXT8Yxsh5X2VaTIu5YCmqw/n2BC4pYv7D51Lidb" ] - }, - "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_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"name\":\"TipCrpQuota_3e9edafe-5fe2-4d4a-b9a1-bc4aeb8afc69\",\"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_40a56c01-a2d1-4532-8b31-c55667920160?api-version=2021-01-01+52": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1725" ], - "x-ms-client-request-id": [ "8349878f-3a3e-426d-b845-9eb3cbe2171a" ], - "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": [ "8ebb4161-f817-4976-a2d1-6b1d5fae0250" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14014" ], - "x-ms-request-id": [ "8ebb4161-f817-4976-a2d1-6b1d5fae0250" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181548Z:8ebb4161-f817-4976-a2d1-6b1d5fae0250" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoD4qXxBvgY09ITKaPDCjB0odLO5Sflf+GFvc1Tr6cPPv3NXSdgjLE+csUJAJj1D7LlrL6hxE+k82WYbrjV7oWYRchZIXT5pC2mZf2WpDX6B+S0PH0tjAinsABJ5pE4QO5Zws3KkVzUM48AQbPZp2" ] - }, - "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_40a56c01-a2d1-4532-8b31-c55667920160\",\"name\":\"TipCrpQuota_40a56c01-a2d1-4532-8b31-c55667920160\",\"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_4456bc12-f4b9-468c-b445-debf990183ff?api-version=2021-01-01+53": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1726" ], - "x-ms-client-request-id": [ "3db8a3c6-4361-4aa0-8a19-b8c46d4ac4f6" ], - "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": [ "3b35f148-90ff-4911-b71c-f54177cd7cd9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14013" ], - "x-ms-request-id": [ "3b35f148-90ff-4911-b71c-f54177cd7cd9" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:3b35f148-90ff-4911-b71c-f54177cd7cd9" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGWDRE6jW+tEVb2uvqg5CA5nlTq10azAcuj0SyNNLwo6n8T7jB3uTMeZh0eVDG2wtRxEs61WRIl1vF+/7rugi1Y7uz0MLAGEzP0WrKrsGbedE/km7e+unWh9eF9kHDYNwDeBMEa4EAGZ63gwctcYO" ] - }, - "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_4456bc12-f4b9-468c-b445-debf990183ff\",\"name\":\"TipCrpQuota_4456bc12-f4b9-468c-b445-debf990183ff\",\"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_464d9e8b-1621-49f8-b47b-2d899ac49bd6?api-version=2021-01-01+54": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1727" ], - "x-ms-client-request-id": [ "4a4b0986-48f7-4c41-b0f8-1e62f1bebcf5" ], - "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": [ "05adf622-97b9-40cd-95e6-56cf87a43dd7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14012" ], - "x-ms-request-id": [ "05adf622-97b9-40cd-95e6-56cf87a43dd7" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:05adf622-97b9-40cd-95e6-56cf87a43dd7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:48 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvy5ZCLMN6E4EJkpFEM9vf3MKVKK2n/BlgfwjPV8pxR/lSfK2CylD8HocDTLAeOOkptVNHhVExZ6MvIzvXdk0XdSbhdk2SmrVNzCZpzfrTUoH7WMXNZHXKrV90V5rFAl/vJ0SPQTiznWfLqpCHvy2e" ] - }, - "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_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"name\":\"TipCrpQuota_464d9e8b-1621-49f8-b47b-2d899ac49bd6\",\"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_46db30e9-0725-471d-96e2-5f99dac411f6?api-version=2021-01-01+55": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1728" ], - "x-ms-client-request-id": [ "0e2675e8-0b4c-4196-828e-43289de1a683" ], - "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": [ "e07a9736-d327-420d-97f3-a6464d24d82a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14011" ], - "x-ms-request-id": [ "e07a9736-d327-420d-97f3-a6464d24d82a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:e07a9736-d327-420d-97f3-a6464d24d82a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfICd3Vf9HE/9g7ejDcen28l/c+PpwmLyvS2o0762PRM5zJaGMTm3PVjIxcVe8fYVbbFS+EcluGKAHRNYj7YQc3FsxaLpeGf/8C0CfxgUYyQ71amnsYdzQcudJ6WMLbUvAWvIN87YH/5MnzECSsBL" ] - }, - "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_46db30e9-0725-471d-96e2-5f99dac411f6\",\"name\":\"TipCrpQuota_46db30e9-0725-471d-96e2-5f99dac411f6\",\"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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7?api-version=2021-01-01+56": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1729" ], - "x-ms-client-request-id": [ "655fd14d-5a7d-494d-892d-fd3f20e74977" ], - "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": [ "0a7f1351-f108-448c-a6e9-7bbd75b11b81" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14010" ], - "x-ms-request-id": [ "0a7f1351-f108-448c-a6e9-7bbd75b11b81" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:0a7f1351-f108-448c-a6e9-7bbd75b11b81" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjbtYS4alK/otk47FMtH9+rJJZHPhPX2JhB4MGQV0heBE5VQ0J9kEwZJknJWfOczNlUkEGALkS8dPECsy2VGmNcxKe8DzO927BQ2zzNLpJg0VlM+glMDlPa667GPeYIrfhpMrkq4Rz2CZg2ayiVOZ" ] - }, - "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_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"name\":\"TipCrpQuota_46e7cdd3-e4a9-4dda-8ef8-f165071ff6d7\",\"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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935?api-version=2021-01-01+57": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1730" ], - "x-ms-client-request-id": [ "2d3741d3-38bd-4fc1-8bc7-5f3912ef46a4" ], - "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": [ "42b69db2-e692-4c6f-aead-4f2a192ac364" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14009" ], - "x-ms-request-id": [ "42b69db2-e692-4c6f-aead-4f2a192ac364" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181549Z:42b69db2-e692-4c6f-aead-4f2a192ac364" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvN2IRkYPj7ZOhooaPinrchD2Pcq7Sijns8u1lzaHaBJ8gzA4Bs+qLSbscsZCHRTrEppfGgZXxXH79y6fiuwCEcHx/gS+8MejFsjBUPtmNHcOaqEv8snbzBZwFn5xxteCKGR2euhlw5YTSMrxutiR3" ] - }, - "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_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"name\":\"TipCrpQuota_47a8290b-e8f9-42d0-8972-9a4ef8eaa935\",\"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_47ee4c19-0eb5-48db-bb5a-4d9d94436582?api-version=2021-01-01+58": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1731" ], - "x-ms-client-request-id": [ "897083d5-20b5-484e-8225-352360b94242" ], - "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": [ "fd51d1f9-b916-48f9-8af8-c3d4dc29ed07" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14008" ], - "x-ms-request-id": [ "fd51d1f9-b916-48f9-8af8-c3d4dc29ed07" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:fd51d1f9-b916-48f9-8af8-c3d4dc29ed07" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYA0DVhMEHsvn33YLrOTOiW/NQ9qvRJtwhdX3vaoEDYtoEqhvEfvEbMPEYN9v+NPrwR070VVcqwr3w5bimCmnhgygIPyZPtarFoipPtdBzttcrDb8RAdp1pV5CrOwBy7RVAmryuDUOzV8+jjL1qWz" ] - }, - "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_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"name\":\"TipCrpQuota_47ee4c19-0eb5-48db-bb5a-4d9d94436582\",\"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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a?api-version=2021-01-01+59": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1732" ], - "x-ms-client-request-id": [ "1217188e-1ed1-4f4c-89ec-548afdb7d8b8" ], - "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": [ "7b22be95-0e53-499e-bfeb-33f4c5a1977d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14007" ], - "x-ms-request-id": [ "7b22be95-0e53-499e-bfeb-33f4c5a1977d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:7b22be95-0e53-499e-bfeb-33f4c5a1977d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6Cacj4JX4Pr5YB3LDqQ4IHhWSsDRzI4WSQb8LrFQadikw+3xzhJ6FCka18kKGZWiJO1QZaZt35IQNhNeUosp25Yi8+TlswOsewCOWAftnQ/bTL/PTSz5z+O3zdoCCsSoDTq1Y+TsrdprdO7KbsZR" ] - }, - "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_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"name\":\"TipCrpQuota_4a1ccb90-7b2c-431b-9bbc-87f58500f48a\",\"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_4a8e3933-4820-48e4-8d33-319cdb998edb?api-version=2021-01-01+60": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1733" ], - "x-ms-client-request-id": [ "5e844cf5-5f18-46ae-a61b-3d12bbfa3c2f" ], - "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": [ "673d54a3-d936-42de-8476-1411d1cf95a1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14006" ], - "x-ms-request-id": [ "673d54a3-d936-42de-8476-1411d1cf95a1" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:673d54a3-d936-42de-8476-1411d1cf95a1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:49 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBozRzX+t9iP2tY2g5lBkiwkAFZtG3rzMXhk81+u4Vxm97FHMbZ/BcrlPVLf3ZScgcQZT9E8ryyrH9LPedOYaY0wF7k/MiwN809RkD8jR4pTOFR7QsFA3aCyer0ER9JbfcT+w2qWuJJP7O7hOco3M" ] - }, - "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_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"name\":\"TipCrpQuota_4a8e3933-4820-48e4-8d33-319cdb998edb\",\"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_4affb4ae-2533-4b91-9669-178a72c28c05?api-version=2021-01-01+61": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1734" ], - "x-ms-client-request-id": [ "b11cd354-f5b0-4621-b316-6b83c2ce2912" ], - "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": [ "70454aad-c5d6-4c11-9ec2-51bb5d92f140" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14005" ], - "x-ms-request-id": [ "70454aad-c5d6-4c11-9ec2-51bb5d92f140" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:70454aad-c5d6-4c11-9ec2-51bb5d92f140" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8ZePaFVaICcw6wTpTNlkjTRDHNlxVMivFj0Lw7cU0N7kKcXtwWFlIqvGqI6XO/NqNOaRBd8EC3fXi+IFuiIXOIE6Wy7fOmX5LQBK4ocZAb/ZsvA4+GrhsV1SBtvNJRIZ7pe+f3o8Jm1JuzVrbBfc" ] - }, - "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_4affb4ae-2533-4b91-9669-178a72c28c05\",\"name\":\"TipCrpQuota_4affb4ae-2533-4b91-9669-178a72c28c05\",\"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_4d8e8c00-bb31-450a-b148-82d6bf9d0211?api-version=2021-01-01+62": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1735" ], - "x-ms-client-request-id": [ "f59ac61c-a341-4623-8d4e-f3c51221234e" ], - "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": [ "6c2456ec-3f99-4f22-a8d5-dda1b4403b2b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14004" ], - "x-ms-request-id": [ "6c2456ec-3f99-4f22-a8d5-dda1b4403b2b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:6c2456ec-3f99-4f22-a8d5-dda1b4403b2b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhzdMXJ5hvKlUgnAhDjX0rZ+xcV1GkjeKAs7Mdp4J3YHLT2sC/THEVUgkznnwJwQ0PqI6jYG2uMjpkVmiIPBN0G6hsuKln6qJTNGs1tIPWhGB60kapG8P7d85L8NIanFklcbDIWqJk+xjP//wGiK4" ] - }, - "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_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"name\":\"TipCrpQuota_4d8e8c00-bb31-450a-b148-82d6bf9d0211\",\"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_50210271-dd89-479e-b2ef-a705d6d5136e?api-version=2021-01-01+63": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1736" ], - "x-ms-client-request-id": [ "f4246889-f325-4acc-bc79-d1cf4fdbca5a" ], - "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": [ "6daf6e2b-55aa-4de9-9646-ae7e6081bf06" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14003" ], - "x-ms-request-id": [ "6daf6e2b-55aa-4de9-9646-ae7e6081bf06" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181550Z:6daf6e2b-55aa-4de9-9646-ae7e6081bf06" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNheo1ycTGM5H8r92dEnwWGI1DAT0DZniXQurkcLSnV8zjcPFVbBrKLnaLTLuB6/EajcWsHnnEaMCFPnQ9VQS7jVAbRawkKoGAxRzMyNOPO5Qlnj1j+uDl4eBKRW+glLcIefMvEr5RrP+EFfYc5pM" ] - }, - "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_50210271-dd89-479e-b2ef-a705d6d5136e\",\"name\":\"TipCrpQuota_50210271-dd89-479e-b2ef-a705d6d5136e\",\"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_531120d4-b389-4576-a76a-ddaefbc7d099?api-version=2021-01-01+64": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1737" ], - "x-ms-client-request-id": [ "3e6d09fe-8e73-43ee-b105-62a5bf1edb99" ], - "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": [ "253d4059-d32f-4530-a48e-5318f109268f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14002" ], - "x-ms-request-id": [ "253d4059-d32f-4530-a48e-5318f109268f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:253d4059-d32f-4530-a48e-5318f109268f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBY68sLcxsvFa7bcDZd1vcS8Ai4MXCkfTgeUliDzd971cWOsAmuzH7F5IDpoZhbDIBLEw+z34YT96R05nDiAqs/JRLCiOczio2rOo+2AyQEPLXfY5Me9x43ZuGdqY+NlL7dcgFlV0nt6NlBJ8aGOO" ] - }, - "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_531120d4-b389-4576-a76a-ddaefbc7d099\",\"name\":\"TipCrpQuota_531120d4-b389-4576-a76a-ddaefbc7d099\",\"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_5351849c-c628-4716-bd44-d0e596aba50d?api-version=2021-01-01+65": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1738" ], - "x-ms-client-request-id": [ "295e7881-6dcc-4048-93b0-6cb92081bbdd" ], - "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": [ "fa8ab875-0ef8-462e-9c5a-a7f17390bd58" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14001" ], - "x-ms-request-id": [ "fa8ab875-0ef8-462e-9c5a-a7f17390bd58" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:fa8ab875-0ef8-462e-9c5a-a7f17390bd58" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQmGdE/egs0kYU+40PvnR6AnbfwlHty5FKHaYw6DPxajVQGpoOLq674VOzW8zyq76+zsNS60oEIDcPT/q6LksWnYsWNDRhSWXYnt0Bp+qTnL1PN823mjAokLvON383eU8dQWKDjszuN3RqkP/8IuV" ] - }, - "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_5351849c-c628-4716-bd44-d0e596aba50d\",\"name\":\"TipCrpQuota_5351849c-c628-4716-bd44-d0e596aba50d\",\"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_5367a7df-297e-466f-bd25-70e916a864ef?api-version=2021-01-01+66": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1739" ], - "x-ms-client-request-id": [ "b7975912-435e-494b-845f-28a242a219a4" ], - "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": [ "4d944ada-a0b6-410c-863f-64b06f3b9bcd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14000" ], - "x-ms-request-id": [ "4d944ada-a0b6-410c-863f-64b06f3b9bcd" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:4d944ada-a0b6-410c-863f-64b06f3b9bcd" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:50 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF4R63z68DDVwBXugeSR8gptglo8Fc/tZmYWraIVki/VQ1Xgjrqr5H9j4f+7pykM2JcqoBFSyZYpvbmbz1bgnhhGY5P90Go6efXty8S5qFFpA22RhDUCxJu82EOwNGe9Ux4ll72GGFNgClgF3SAGM" ] - }, - "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_5367a7df-297e-466f-bd25-70e916a864ef\",\"name\":\"TipCrpQuota_5367a7df-297e-466f-bd25-70e916a864ef\",\"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_54867ae7-cb9f-46de-bd58-1e46393ff1eb?api-version=2021-01-01+67": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1740" ], - "x-ms-client-request-id": [ "c99888ee-f63c-4f07-84e0-63b1a5bec38f" ], - "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": [ "6f0941b6-8568-4402-9ea5-f5be6e636693" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13999" ], - "x-ms-request-id": [ "6f0941b6-8568-4402-9ea5-f5be6e636693" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:6f0941b6-8568-4402-9ea5-f5be6e636693" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcGbIOGuxT4WL9LYGizqPy9VUubasso2G39yUGHP7GmBkOvIeFFf6y3KZTHBLZ67upJMaQ2VTtnaHfqyw8/+AWlWvh4RXUqw5p4qsp4JayXo5dAXNP9n9knxNq5w6vlva2Qw4uKgLcGW85iThvIHr" ] - }, - "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_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"name\":\"TipCrpQuota_54867ae7-cb9f-46de-bd58-1e46393ff1eb\",\"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_54f82435-055e-42d7-9da5-57d99e4f75bb?api-version=2021-01-01+68": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1741" ], - "x-ms-client-request-id": [ "add7b031-4d8c-4c0e-9a6c-92dcf6fb0db3" ], - "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": [ "1aa9a7cd-93d5-4d1c-8a05-2df14ef1558f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13998" ], - "x-ms-request-id": [ "1aa9a7cd-93d5-4d1c-8a05-2df14ef1558f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181551Z:1aa9a7cd-93d5-4d1c-8a05-2df14ef1558f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviJ/aOVTP37Cuo8ja0Gw5Ieqxdg1v+lCR3PnervIUKfJ/RRyPtX7hcpAa1ZGLC11bsB8llt6UyWZ6rB5tLVTaS0ThKYk315yCNsCQTKDZ9sClWzXvuxo0XORyFuyrF1U1aPxRPBhtKVFo1JMTqNQ7" ] - }, - "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_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"name\":\"TipCrpQuota_54f82435-055e-42d7-9da5-57d99e4f75bb\",\"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_5b6a9a8b-3fde-4917-9455-963fbb771e2e?api-version=2021-01-01+69": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1742" ], - "x-ms-client-request-id": [ "1b1b920b-1fd8-4575-be5d-10349fff347c" ], - "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": [ "3cab078c-6e19-4304-9941-b2b39874ad49" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13997" ], - "x-ms-request-id": [ "3cab078c-6e19-4304-9941-b2b39874ad49" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:3cab078c-6e19-4304-9941-b2b39874ad49" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIzzJaXnFBxQOrVWgbFGbxd3OXCmDeQARF02hZTe0DMb4hmOAA003kZzLXG/SpBQokwFBGsGkuOHnK6990IKDAqapj7SeA9NgCfZ3XM4QVFGFLaqia2oKs5wg4cIaf837EAuVwPYN6scabszepsf9" ] - }, - "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_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"name\":\"TipCrpQuota_5b6a9a8b-3fde-4917-9455-963fbb771e2e\",\"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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f?api-version=2021-01-01+70": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1743" ], - "x-ms-client-request-id": [ "22a88b13-3735-4842-ad57-25a2445410aa" ], - "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": [ "7e14a3c6-387e-426e-a9f6-2be8392176f6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13996" ], - "x-ms-request-id": [ "7e14a3c6-387e-426e-a9f6-2be8392176f6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:7e14a3c6-387e-426e-a9f6-2be8392176f6" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGTKD0DWuYrKvTgNxDNdygt5ooxG2pJrA1mN25/lX8fQ0OP1HHpjhVGPmDvdSoSG2tU72GcCAU0jhYBKhKTuQOsAVFZdZ0H9/kTbiY6jymsajWb7EyWIM/fHdfGjLb/2m6KIKvPDhD6iDjfaPaKoQ" ] - }, - "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_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"name\":\"TipCrpQuota_5d3c58fe-e9e6-4483-be8f-a4bcc3cea72f\",\"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_5e42ae42-19e7-4173-9637-a2151db79696?api-version=2021-01-01+71": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1744" ], - "x-ms-client-request-id": [ "b568e367-022a-4fd6-8494-b71bde65d627" ], - "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": [ "d0880efb-c69c-4433-a655-27b5073caa28" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13995" ], - "x-ms-request-id": [ "d0880efb-c69c-4433-a655-27b5073caa28" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:d0880efb-c69c-4433-a655-27b5073caa28" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZ8zTuJ7YNLFdwB25rCxZNpsSjQWg4jSMOwASqhrBVxJfSTcXh4mIE+tbsOa0lrsjIXNdISMkWczpbg1toS/ILTebFh84w5/kh+pcGpLIhQ/txr3zjgFdAD+Ni5k5w2/uyUadZbSmr/2eqsJMvWwY" ] - }, - "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_5e42ae42-19e7-4173-9637-a2151db79696\",\"name\":\"TipCrpQuota_5e42ae42-19e7-4173-9637-a2151db79696\",\"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_5f0b1184-4467-41d3-95d2-912a324591c8?api-version=2021-01-01+72": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1745" ], - "x-ms-client-request-id": [ "88c8cfed-547e-4187-9a91-f014c4996987" ], - "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": [ "3b093f4f-c6d7-40b0-be30-974bc0576630" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13994" ], - "x-ms-request-id": [ "3b093f4f-c6d7-40b0-be30-974bc0576630" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:3b093f4f-c6d7-40b0-be30-974bc0576630" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:51 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAqP7f/GURC6BxKJ5uzLZwB9nAGW8OETfEdbMRBylDFQfTYc+SLYQMN5m+yHbSpOQsRHym14srAU0d0Oi+vQinY6a2Fk117DmuqB1jzjvJv2/Q/CZ6wrd9J1BxowhtsaJbxpmgMxzYfhDDwmH94+x" ] - }, - "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_5f0b1184-4467-41d3-95d2-912a324591c8\",\"name\":\"TipCrpQuota_5f0b1184-4467-41d3-95d2-912a324591c8\",\"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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a?api-version=2021-01-01+73": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1746" ], - "x-ms-client-request-id": [ "82f7938a-0201-471a-b955-e2d45b0e2a4c" ], - "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": [ "a85dd078-b134-4942-9e57-a9a1c942be7b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13993" ], - "x-ms-request-id": [ "a85dd078-b134-4942-9e57-a9a1c942be7b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181552Z:a85dd078-b134-4942-9e57-a9a1c942be7b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG4E6yOnWE/ngosh+9mh6cAbJePKfQRJCvUpYAaD6ByOY4jhytEarZ5F4My4c/rL6u9Y1ZSgF+OZNuzMtjgF1RndNVTmNcLn/QztbbZxsyccz8eMVPcPDyAAQr6DylEntZ3KBIvRpJEkvJc/TjO7k" ] - }, - "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_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"name\":\"TipCrpQuota_5feb5efe-4c87-46d8-bb5b-63fd3ed9975a\",\"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_62f98c1d-6944-4881-9340-88f3518ab36a?api-version=2021-01-01+74": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1747" ], - "x-ms-client-request-id": [ "627417b9-3d03-4bcb-94c6-55851f12f78d" ], - "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": [ "5e7d78b6-8f7a-4a2a-a4bd-85daa164595e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13992" ], - "x-ms-request-id": [ "5e7d78b6-8f7a-4a2a-a4bd-85daa164595e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:5e7d78b6-8f7a-4a2a-a4bd-85daa164595e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVG8BASjF5ANAp3nm/F8wB5e2CskR+d23i5oPLyFnPXY7wJCiGHrVZv9Fr+iTsRA6O2lxnibhrByZrgChhpz2DNlTkObh/FSafgS+IMsWG545V6a7oHEHAar0Nvh2S/EoHfv93m4JHXbCx995ZbhC" ] - }, - "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_62f98c1d-6944-4881-9340-88f3518ab36a\",\"name\":\"TipCrpQuota_62f98c1d-6944-4881-9340-88f3518ab36a\",\"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_6459e246-995e-454b-8e2d-2b8ae9c78229?api-version=2021-01-01+75": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1748" ], - "x-ms-client-request-id": [ "6484c362-e46e-4edf-8bed-616f7a194d3a" ], - "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": [ "41676d18-1edd-42c8-9156-1d27e4acbfdf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13991" ], - "x-ms-request-id": [ "41676d18-1edd-42c8-9156-1d27e4acbfdf" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:41676d18-1edd-42c8-9156-1d27e4acbfdf" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvb/sqCmNQqspGhOzE0DHB5YXvoClTeiH4KW8yMpkzIneorUT+0AwVjA/4B7T5fugJ4sF50lFIs5G9VnYfdJ5Hqpc4FL83tAv8KlzWhwCKsL6WTl1NaoUR7orJ9ZA/xvXvx8eb94Heo8DovooHHylg" ] - }, - "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_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"name\":\"TipCrpQuota_6459e246-995e-454b-8e2d-2b8ae9c78229\",\"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_6515844c-b7b1-460b-97ee-eb1eb2d34609?api-version=2021-01-01+76": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1749" ], - "x-ms-client-request-id": [ "5cafc891-9603-49f5-b0af-31f535cc9b59" ], - "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": [ "0247de01-10df-4f97-97e9-66063e32a428" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13990" ], - "x-ms-request-id": [ "0247de01-10df-4f97-97e9-66063e32a428" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:0247de01-10df-4f97-97e9-66063e32a428" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtYars/+ZB+3XVMr64od6R4djHiZkYa9GuR3ck9xa/Sgq8L6z4rlQO4bvm+fs3JZEMpG7gQHuKjM0eGzpCtAWodNqKvEGIovzHp7hbwEajP6d/d0OHHEgasuTPJxlcjSlaUHCiZ1K8MGp9yOBDE/D" ] - }, - "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_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"name\":\"TipCrpQuota_6515844c-b7b1-460b-97ee-eb1eb2d34609\",\"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_68f87362-b5d6-49f8-a1c2-56211a903d15?api-version=2021-01-01+77": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1750" ], - "x-ms-client-request-id": [ "56158556-ab4b-4e08-98a7-15303302db8c" ], - "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": [ "a970f1bd-eb96-4acd-b075-e580a307e409" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13989" ], - "x-ms-request-id": [ "a970f1bd-eb96-4acd-b075-e580a307e409" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:a970f1bd-eb96-4acd-b075-e580a307e409" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:52 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDfr4+McMYhs+rxgtsZPe9zUsbXvnnbIJu4c+Bv3jqAJvrG7kaG/3MsN/TxQkM/P3QQAsePMDsvy9m/IPb7ZSry/txfkOO/6CfJo8Kgha5Ln4E3LXukQZ+/SZuNhU7ZZ1v8kUveI4ZVAEWiPH2QHB" ] - }, - "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_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"name\":\"TipCrpQuota_68f87362-b5d6-49f8-a1c2-56211a903d15\",\"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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052?api-version=2021-01-01+78": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1751" ], - "x-ms-client-request-id": [ "20559d8c-a517-485a-846a-fa05e851262e" ], - "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": [ "be815e96-aa14-4b13-923a-59f02304f5be" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13988" ], - "x-ms-request-id": [ "be815e96-aa14-4b13-923a-59f02304f5be" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181553Z:be815e96-aa14-4b13-923a-59f02304f5be" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvm73o8xuSGO2UD5/um2MGaPI1mcIAnXIZeA32kGH6Bf4w9xI9l9246p/pAmYYaJxmM3Ym8c88tzi17hD/2HuyVA8yaPiRT6UIcYIpbiEpr0G7exllENZUnlpX68PsghU9/oJO7F0RhohbYT2lL+oK" ] - }, - "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_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"name\":\"TipCrpQuota_6b9862bd-0b1f-48a4-ad5d-ad6ae4974052\",\"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_6c9e22d3-2c45-4672-948f-f47eb09f9912?api-version=2021-01-01+79": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1752" ], - "x-ms-client-request-id": [ "0b85a32e-80fa-4ed4-acaa-705f229201a9" ], - "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": [ "40033b51-b2ec-4bc2-a15b-a05f8bc8a852" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13987" ], - "x-ms-request-id": [ "40033b51-b2ec-4bc2-a15b-a05f8bc8a852" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:40033b51-b2ec-4bc2-a15b-a05f8bc8a852" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOETF7dUcNKFHHNzfETr7EH3vxdGfkOO2DqL27BZaInL/Uppm9IUfPAwgdLW49vmt52K58qjApDREPXUZPod+Wu6WtrZo8HP2qyc5apEuEn9f+ej19ZvJauIlk0Wk9MOfTfb9As5ACmUZ6oOiWkvv" ] - }, - "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_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"name\":\"TipCrpQuota_6c9e22d3-2c45-4672-948f-f47eb09f9912\",\"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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9?api-version=2021-01-01+80": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1753" ], - "x-ms-client-request-id": [ "484ea326-4896-41bc-9cbe-b9d54becc2b1" ], - "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": [ "978b5881-bdc8-4c77-8849-7978621323c5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13986" ], - "x-ms-request-id": [ "978b5881-bdc8-4c77-8849-7978621323c5" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:978b5881-bdc8-4c77-8849-7978621323c5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwMroJb/U+WynyYZ4LnvYOP17z+bVDhpRkBxLBUh7pO8KMha+zAeeFpVT+3dRD4x5RqpbJE4aIAUgXff0Ailc7s2i3mFJZxi00Gi4/+XDLyexctYo+7S6mnezdpQ00ri15PZkWpPV4WHAzsL7raxQ" ] - }, - "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_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"name\":\"TipCrpQuota_6cb99583-dec7-416d-92ec-c0c0acbfd7c9\",\"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_6cbf1844-9133-4d24-96d8-5951e2b22e11?api-version=2021-01-01+81": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1754" ], - "x-ms-client-request-id": [ "0de294fb-ccd7-473c-80e7-0d3fbfa5705b" ], - "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": [ "3db33d9e-f33c-41c8-b37e-72e976d3ddb3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13985" ], - "x-ms-request-id": [ "3db33d9e-f33c-41c8-b37e-72e976d3ddb3" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:3db33d9e-f33c-41c8-b37e-72e976d3ddb3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvujau/HvSn+6M//Sl5J8fAEwy4nI48qLcjLq24vK4V2q9zR8u0XJ9VPAl8gBP+S2ZZFUAdrfk/qlUBLokxPA6wa9vm/hx3Zx7JKK/1vVu0QZ18jYRagrxuPiwsGQKG0IGK6PEFX/u5ydOC+zZR8Zp" ] - }, - "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_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"name\":\"TipCrpQuota_6cbf1844-9133-4d24-96d8-5951e2b22e11\",\"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_6d5f01fb-abc0-436b-8f04-3c8b70697945?api-version=2021-01-01+82": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1755" ], - "x-ms-client-request-id": [ "a3684758-ff99-4469-a475-9d0cbbe59f69" ], - "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": [ "fd0b64de-c0d3-40db-bd9d-0cec76af911d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13984" ], - "x-ms-request-id": [ "fd0b64de-c0d3-40db-bd9d-0cec76af911d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:fd0b64de-c0d3-40db-bd9d-0cec76af911d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrcC8hoCEIHsNqdO4M6JyN25MESXtlOuMEQ+oaLUzFFNaFb9jIdSq6nxXH++tCrAgHUvtkZAdtYENOVUz43c2E9IXeFf92yRsJMAUt0kWSX8IsLxbdLQmfxtbkno+xV8HxT/AdSa9ueuaAM8eHosA" ] - }, - "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_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"name\":\"TipCrpQuota_6d5f01fb-abc0-436b-8f04-3c8b70697945\",\"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_718a092c-627e-44c9-8b85-afa051604d51?api-version=2021-01-01+83": { - "Request": { - "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51?api-version=2021-01-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "1756" ], - "x-ms-client-request-id": [ "160298c1-2c5c-4ae6-b5b0-9df088bde65f" ], - "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": [ "a68f3f18-945b-40fb-a2f9-a45369b5c89e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13983" ], - "x-ms-request-id": [ "a68f3f18-945b-40fb-a2f9-a45369b5c89e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:a68f3f18-945b-40fb-a2f9-a45369b5c89e" ], + "x-ms-correlation-request-id": [ "fe51820f-4f96-4f69-8e75-64e5e687bc15" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14146" ], + "x-ms-request-id": [ "fe51820f-4f96-4f69-8e75-64e5e687bc15" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001258Z:fe51820f-4f96-4f69-8e75-64e5e687bc15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:53 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTOWKsGaiXeekDB8LuGvQdXfX2ISGmQRpUqxlFN3YJsAeAC44KA0wQak0G959auNKpsTCepdYXPlrxqVGzSuVoHYiTyYHcQpuAJbI6e60h2cBKSFe4++qy6+ciQmeerV/1MnRDXCRV4CFMKGSB41M" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+rxX5E3i/PHxoS5SrseGUBx7McSFXt5e+OE+WJJvAOHkfJDfOLISllI/etZIkfH0A+nr805hu1grQKtnNR0X6ZhRCKii1Ai5EEd62JSG+yDxZl915lAyM5SWpuy4D5HGRuKFupKUmqcrfwuMpKRH" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "44189" ], "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_718a092c-627e-44c9-8b85-afa051604d51\",\"name\":\"TipCrpQuota_718a092c-627e-44c9-8b85-afa051604d51\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2?api-version=2021-01-01+84": { + "Quota+[NoContext]+TestGetQuota+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1757" ], - "x-ms-client-request-id": [ "a5107920-bab8-4a11-a636-a22d22bff3fc" ], + "x-ms-unique-id": [ "2405" ], + "x-ms-client-request-id": [ "3559aa86-8ee8-45e7-a9f8-7ebf16da357a" ], "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] @@ -3633,35 +63,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "84083e29-7954-4be4-bdef-82fb9f4bafd6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13982" ], - "x-ms-request-id": [ "84083e29-7954-4be4-bdef-82fb9f4bafd6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181554Z:84083e29-7954-4be4-bdef-82fb9f4bafd6" ], + "x-ms-correlation-request-id": [ "6da480b3-13b7-4b4c-9e93-093739f8e192" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14145" ], + "x-ms-request-id": [ "6da480b3-13b7-4b4c-9e93-093739f8e192" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001258Z:6da480b3-13b7-4b4c-9e93-093739f8e192" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6aO4cWgTXTbZD2JlOr/R2lpStqSsp3NV/jJE9h2h8qbpkvWLJVSIC4dWTpyzxYc/u8+Un6VfO3Yjfk9TZ9G7mSgY0/Wwg3VJSI0tNBOzXWHWDoZeUPZehEzFyOKDO2QZviY5dk/f8EGjAcBikdbv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMWcWL86VCo21/W5yUUZJkK8Qm5Gpni+OzYOcx1XqCWHtv2NMPN8GZHemMVSIIOIUmSImc4fHI7K2Uj8sTllSESKfuq1tZuPfrpH7Ljla8SbgD4zvowaAC18kxhj4ZXHQanXu4a8dg9F+p7BAaAhI" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "44189" ], "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_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"name\":\"TipCrpQuota_7243a72d-a5aa-473a-908e-dde40123ffa2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e?api-version=2021-01-01+85": { + "Quota+[NoContext]+TestGetQuota+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?api-version=2021-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1758" ], - "x-ms-client-request-id": [ "d739cd51-0820-4a34-a87a-f9f20e199e7e" ], + "x-ms-unique-id": [ "2406" ], + "x-ms-client-request-id": [ "49645673-f4ea-4683-89d3-18b2b65eed48" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3675,37 +105,37 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5da110b6-e77e-4ea9-9fb9-908ef5b49e44" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13981" ], - "x-ms-request-id": [ "5da110b6-e77e-4ea9-9fb9-908ef5b49e44" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181555Z:5da110b6-e77e-4ea9-9fb9-908ef5b49e44" ], + "x-ms-correlation-request-id": [ "9ca69861-cc9d-4182-b1a0-ba94be85e080" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14144" ], + "x-ms-request-id": [ "9ca69861-cc9d-4182-b1a0-ba94be85e080" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:9ca69861-cc9d-4182-b1a0-ba94be85e080" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRXSHfJg+jihG6yvwcVP37azBymRX0juISpbS7OIWXPDjEh5KMHM/fNGvWaOTmLj+2YKxJ6+yY0oyAAty6z2Fl5rd/uqvY01hs+urxQHgJIyakHzmGhL7MVVwhHSLP1bv5T/ZWb7nIN1L7q4bVXqW" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTzCsMhacZV+yIYKptxgRMfshf9AdS2XidDk88b6OhcajZEM/ueC2ivJ+J30gFEi0HbvQdK/qO68XDMfbKA5haihZBCb/F0E5X/ibp2SjsrGzbQI7JNxN9oksNYtMRmOsxPKA2qp5Qlpr11tane1x" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "498" ], "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_74b7ce15-3896-4604-aa77-dd938948d44e\",\"name\":\"TipCrpQuota_74b7ce15-3896-4604-aa77-dd938948d44e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da?api-version=2021-01-01+86": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1759" ], - "x-ms-client-request-id": [ "55235820-0928-460f-a259-742eecd62df5" ], + "x-ms-unique-id": [ "2407" ], + "x-ms-client-request-id": [ "d54a5054-1809-4c5f-8a89-367d91eb3b34" ], "CommandName": [ "Get-AzsComputeQuota" ], - "FullCommandName": [ "Get-AzsComputeQuota_Get" ], + "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], "Authorization": [ "[Filtered]" ] @@ -3717,35 +147,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c13996c3-a095-449a-9404-8a3a41f58d39" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13980" ], - "x-ms-request-id": [ "c13996c3-a095-449a-9404-8a3a41f58d39" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181555Z:c13996c3-a095-449a-9404-8a3a41f58d39" ], + "x-ms-correlation-request-id": [ "b16578ca-462c-48a9-aa52-2aa4f58987e2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14143" ], + "x-ms-request-id": [ "b16578ca-462c-48a9-aa52-2aa4f58987e2" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:b16578ca-462c-48a9-aa52-2aa4f58987e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxzt51cF64ov3Q4zf4PiGrE5wdrdbf8CyJj7Ec33L7Ek6UPjqDrjQbIG1vISqcm/pQSr6DOJ/CFlg0+S9uhneNxiNKEgSB/1mGl25oAdW5Dx8kp/OIuwhsUVTvmsM8fKAIig0VjFfQlwQH4Cv1Q6S" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzI1k05dT9TJdQ/m2RMtqLXSBRZ3Pe9WwzDJep8uYrR3WrDlqkTGTgTJrkCE/YnEzhVeG1BnRTsUEBrr1p7RCyMRphvzxqCbQlNaiESxYUOv9z0krdEUo7ASDDFZqYjjRSu3p/mNugbx8k2yKnwUP" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "44189" ], "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_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"name\":\"TipCrpQuota_753d15bf-1be6-4c74-bbf4-cce40527c9da\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220?api-version=2021-01-01+87": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?api-version=2021-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1760" ], - "x-ms-client-request-id": [ "80b4a697-dda6-473f-b29e-0ce69f5a45ac" ], + "x-ms-unique-id": [ "2408" ], + "x-ms-client-request-id": [ "65f362bc-0854-4c6b-a9d1-15fe4094e13c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3759,35 +189,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7a20c616-2bcd-4b1e-9ae8-d6c81c77f6b9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13979" ], - "x-ms-request-id": [ "7a20c616-2bcd-4b1e-9ae8-d6c81c77f6b9" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181555Z:7a20c616-2bcd-4b1e-9ae8-d6c81c77f6b9" ], + "x-ms-correlation-request-id": [ "dfef6b2e-68b4-4522-9e5b-41329ca1faad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14142" ], + "x-ms-request-id": [ "dfef6b2e-68b4-4522-9e5b-41329ca1faad" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:dfef6b2e-68b4-4522-9e5b-41329ca1faad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbpkq0dsD8DquWlYJxbSLR7CRJIP1mH97Zu7eCaC1oJzs9a7vv+6DlKwuhMRjCzDXa9+MzhiYnjhR+y8BSvsvXSR3yoyyF8svr136e0bNygqJuTKeBWN2O+I1EojBRaiZNC74QxNss72lintGizK5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7yEO4adNNINa3H7/Tt3zkL8Km/hSOyu32GdQrUpYWatk6V9JTJTgfQx919XIs5TseDWFz97qwp6Y/thWjOMshE0ZoRwdX1a1ZhHBhawU/Bt4gS9BnfRjADya65IO0/9o13wcy9yy8+RnB8FpjP33" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "498" ], "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_75570a55-9a85-4ab6-b307-1729dea80220\",\"name\":\"TipCrpQuota_75570a55-9a85-4ab6-b307-1729dea80220\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7?api-version=2021-01-01+88": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286?api-version=2021-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1761" ], - "x-ms-client-request-id": [ "020544bf-da02-4f81-99bf-c8b1eb3c9e8a" ], + "x-ms-unique-id": [ "2409" ], + "x-ms-client-request-id": [ "60ff347a-81fb-4e70-9b0c-ff69fc3914b1" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3801,35 +231,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "27a6fe66-df7f-4c0c-9720-6a936d20bd4b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13978" ], - "x-ms-request-id": [ "27a6fe66-df7f-4c0c-9720-6a936d20bd4b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181555Z:27a6fe66-df7f-4c0c-9720-6a936d20bd4b" ], + "x-ms-correlation-request-id": [ "c467f538-e85d-4e6f-bd9c-2a0cfc816974" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14141" ], + "x-ms-request-id": [ "c467f538-e85d-4e6f-bd9c-2a0cfc816974" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:c467f538-e85d-4e6f-bd9c-2a0cfc816974" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:54 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJNgZ39IdjcaF1LCwn6/gCKy8vtK/CQwWKvuZkUzi7Xv5xb58UNVo7BJYCPMkKjzK4ROMnqhq5PKLUKHrNsWD6F5nri6tdoPV7x6PbegZzoZJ0mSde/a+Ot8+9ko5njJHTyo3TizPN9gO6PFqJqwO" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQBKjBVCD0PdejQHbcBp9QJx/kBZcJux4Cx8oG2IealekQt0a6b4PMMr3WvNuVU2gRnLiL0Rl0HYl9x9qpDBsfEnjL1QaUCkcKtVqwNWQ0DP3h3mGdoJS8IjMTnmcnrMwOUw2I2NKkBgHaCb0sH9n" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "498" ], "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_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"name\":\"TipCrpQuota_75bc06a6-a5c2-4f25-bea9-63d517a528e7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6?api-version=2021-01-01+89": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284?api-version=2021-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1762" ], - "x-ms-client-request-id": [ "c6385da5-3c0d-463b-b25c-78eb84f29ef9" ], + "x-ms-unique-id": [ "2410" ], + "x-ms-client-request-id": [ "a8401c15-8928-4d31-b305-c410f88885e7" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3843,35 +273,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7fba77b6-4c68-4f06-98f8-b82cbe17218b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13977" ], - "x-ms-request-id": [ "7fba77b6-4c68-4f06-98f8-b82cbe17218b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:7fba77b6-4c68-4f06-98f8-b82cbe17218b" ], + "x-ms-correlation-request-id": [ "44d0ec4a-44fa-4883-b5c9-9fccecc0d869" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14140" ], + "x-ms-request-id": [ "44d0ec4a-44fa-4883-b5c9-9fccecc0d869" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:44d0ec4a-44fa-4883-b5c9-9fccecc0d869" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvW08Nk8nzpg7ss4NrG0Yhc2BkZ3l/mReashsq5TF4cX8S+CMy/ZLQOvOAFourj3wCyR80VENSVLZ6w5Tg/42fUtg0QH9oz2BPVXlKEGyXxFIjycL5zkQanajIg/e75o26543TDQ3i2MJzRwoqqRS5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvirAyvQNBrf/nBOWIWm75JV4e/F7CLJr5HmntfbyodjGXaoyGQYvG5XwLf57QH1VGuzUreQR/ltjXU2RMXlwCgGZyV0wlcuJHsOQyjm/v6F74Ilre9xSbmsgqRcVY56h4mAyv5TrRGXJzmNHbfmuu" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "497" ], "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_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"name\":\"TipCrpQuota_77260dee-ce7b-4742-8cb3-99d5ff17e9d6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8?api-version=2021-01-01+90": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515?api-version=2021-01-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1763" ], - "x-ms-client-request-id": [ "a29e0d42-8123-4592-bcbc-9fa1f7d91fb0" ], + "x-ms-unique-id": [ "2411" ], + "x-ms-client-request-id": [ "7fc03213-0161-4968-b697-45300c342354" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3885,35 +315,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d7957921-ec39-42d3-bba5-a40374a9a5e4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13976" ], - "x-ms-request-id": [ "d7957921-ec39-42d3-bba5-a40374a9a5e4" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:d7957921-ec39-42d3-bba5-a40374a9a5e4" ], + "x-ms-correlation-request-id": [ "bf0ad453-eb0a-4216-9ff4-688c0f6527b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14139" ], + "x-ms-request-id": [ "bf0ad453-eb0a-4216-9ff4-688c0f6527b4" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:bf0ad453-eb0a-4216-9ff4-688c0f6527b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOOE7i5gi5bL/GdAXKJPT+v0XiOCxq4YETAkNd8VxA5fY3utn3csw2s0WzBadrx8mRMyNDC9uDk9/MnLUWriwzyAUx/kq2Tt/kAke0qbZ5mqWTQC1OHm2zx2jqDbWUN7hjQzWQFfy/6TxfKXwpjAq" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmghMsjNqPwZND3HpwfjvjCWhatO2Uayu009IjepGCldTJhg+TJS58MVPgL2RI6nMNAQYn3zK38/696sJleA0R1zus86n++Z4/dObbxDst2ED2le5FPtvUcsOgPKCtvmBKW3vRmV7cdbUjwmmWsk0" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "498" ], "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_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"name\":\"TipCrpQuota_7893266b-c7de-45c9-8afd-ca21cf7a5be8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905?api-version=2021-01-01+91": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579?api-version=2021-01-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1764" ], - "x-ms-client-request-id": [ "b88b3f78-5e8a-42d9-91b6-3cbc27578a28" ], + "x-ms-unique-id": [ "2412" ], + "x-ms-client-request-id": [ "16c1b067-0938-4c65-804e-b982de57aead" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3927,35 +357,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a918e1e5-4590-44c3-af74-b735dda3a2c6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13975" ], - "x-ms-request-id": [ "a918e1e5-4590-44c3-af74-b735dda3a2c6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:a918e1e5-4590-44c3-af74-b735dda3a2c6" ], + "x-ms-correlation-request-id": [ "a3307bbd-59c4-4abe-895a-cba4c038cb00" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14138" ], + "x-ms-request-id": [ "a3307bbd-59c4-4abe-895a-cba4c038cb00" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:a3307bbd-59c4-4abe-895a-cba4c038cb00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvra7arNZk4nUCNZ0o4QUw66mEeDJ00P6HIiCjhoW3UVlt9Sg4sD2yECeWj1gxju3p8H+fSXiNY/aL/PnKo/uxSYnnlCT+A2oO/5p6TMyaLhIEwyhp70Ww5X4Mqdalnu2AIT+XWOHa3wKl4UkcboBi" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEpObDQapL2j4c4SVUgDmKXYFPft8t4crVE6/x0qDb8N3UdF5CoN106j51czMVXFhexEwOmrZRlZyeKPckuVenRxZ5H12Lb8QzRTRiiGdJKAt3OpOJsprDuU+KqPw4PqAxgiQ1pNHuoYgzI/gayt3" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "498" ], "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_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"name\":\"TipCrpQuota_7d75bbf0-22e8-40a3-8665-38afcb699905\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006?api-version=2021-01-01+92": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036?api-version=2021-01-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1765" ], - "x-ms-client-request-id": [ "4610e485-0a1d-43f9-b059-d4718bdf8b29" ], + "x-ms-unique-id": [ "2413" ], + "x-ms-client-request-id": [ "d84fe1b0-9295-433f-b6be-474519ae1b05" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3969,35 +399,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c2ede6b5-e48e-4a34-a0c0-6700f8f092a9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13974" ], - "x-ms-request-id": [ "c2ede6b5-e48e-4a34-a0c0-6700f8f092a9" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:c2ede6b5-e48e-4a34-a0c0-6700f8f092a9" ], + "x-ms-correlation-request-id": [ "c078ab12-23d4-45e1-9f60-a16a60ba65f7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14137" ], + "x-ms-request-id": [ "c078ab12-23d4-45e1-9f60-a16a60ba65f7" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:c078ab12-23d4-45e1-9f60-a16a60ba65f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrCYwce9mpQMSSEc1llqmnVEXEGznVDmVvxMBqdQSggZzvV5ioUKzecaWMkGbgaqmYVEf+pj9Utvc6Vhp2yS+v7GCQK7YBmn6Bf0KfAqKJiW5Zhb+QzWAXJSV2/JMJCh7YyWriYtDxV7EwDOsr5X7" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQUvBoBf+mmuOZpEur2H6tkWpWPcEYMKORCus0Y1JmZtaFlBTFFhGortwjd1EmrThYbkcDOFg0eKzs49DSFwxC/6ezeXtWR/mwSeMf5vImvlcC83dUaxtoOGXKY/jkjpEe66u/yZYkF5+mIEQ1Tn3" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "498" ], "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_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"name\":\"TipCrpQuota_7f16ab44-9d13-4fbc-b8fe-4bd389ea5006\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35?api-version=2021-01-01+93": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default Quota?api-version=2021-01-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default%20Quota?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1766" ], - "x-ms-client-request-id": [ "6349e844-d27d-49d1-beb0-4dbbbc165875" ], + "x-ms-unique-id": [ "2414" ], + "x-ms-client-request-id": [ "0f69ab6d-f151-4020-9cb0-fb6947c6b2b7" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4011,35 +441,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8817bbf8-3a54-4af4-929a-ccc512bbf967" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13973" ], - "x-ms-request-id": [ "8817bbf8-3a54-4af4-929a-ccc512bbf967" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181556Z:8817bbf8-3a54-4af4-929a-ccc512bbf967" ], + "x-ms-correlation-request-id": [ "02289852-1b82-4af2-b1af-edd34c417ec2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14136" ], + "x-ms-request-id": [ "02289852-1b82-4af2-b1af-edd34c417ec2" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:02289852-1b82-4af2-b1af-edd34c417ec2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmIE/YDdViPYfQ1G5saWVqva2yLhNvcQCvRVWcqPv2Yce7nYQUNlwDT7I7Wva2CuQfg/9WDGUWMAOZL5ZdxsawdJXPYptrBJtAtVV/n+cbehOZsOBgNUwlyX1afto/d2mbucxw152WBIfvl4bFVuC" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+lx911Ss6xB4o1zrowVdBkuueryu5miz2VjiN9WStgQ/KOjdpHj3Kt3UpaBF1kNGURePhpuo/7sLIc9o363od9DvhIRrO94sfoarmdz/VZuzXoBOC27p8dCJOVESkp9pc3vq0G+udeUQl0qO45wk" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "465" ], "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_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"name\":\"TipCrpQuota_80ac7b27-6ad5-436e-9e45-dbfae2ee2e35\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7?api-version=2021-01-01+94": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota?api-version=2021-01-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1767" ], - "x-ms-client-request-id": [ "3e7114a3-cdd3-43a8-84ca-7d3b22242435" ], + "x-ms-unique-id": [ "2415" ], + "x-ms-client-request-id": [ "a2b18a4e-0e66-4359-aa38-6c9dc9513776" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4053,35 +483,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fcebd4f2-2ec9-4861-a671-9d1a10129448" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13972" ], - "x-ms-request-id": [ "fcebd4f2-2ec9-4861-a671-9d1a10129448" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:fcebd4f2-2ec9-4861-a671-9d1a10129448" ], + "x-ms-correlation-request-id": [ "23093d8b-e692-40e0-8805-e68e099e32ad" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14135" ], + "x-ms-request-id": [ "23093d8b-e692-40e0-8805-e68e099e32ad" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:23093d8b-e692-40e0-8805-e68e099e32ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPDXMm1ENX0rXWXG4mbsbNhD+VwMs1HXUApnDZa8w4ytox1yQzlv+oaU2i8vt6ky7SKfLxR04hmgeZlsNfNvcs1nYfXtUKrbQ3ISjQg81L0T1l5O7aTMh0yYmAy3VF8rwLkhVxoN0pTToRETsb1VP" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYMF6UQAAULxWlayv5rwlk//eOwBfBqChHSEWfeZyEs9oZeiuYCAx1aU/BiFPVm0YRs04fYPVAXakko9Dlci22PZcyeW+FIKzReV69sgu1NXrraxcT5P5YajS+bsKEIm2g6Wx74kQK2N4CSTcTTe2" ] }, "ContentHeaders": { - "Content-Length": [ "536" ], + "Content-Length": [ "443" ], "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_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"name\":\"TipCrpQuota_82af7a96-167d-4157-a651-526cf2f1b0c7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f?api-version=2021-01-01+95": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c?api-version=2021-01-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1768" ], - "x-ms-client-request-id": [ "00891502-ee99-4d89-bdf5-b1ca2237ce09" ], + "x-ms-unique-id": [ "2416" ], + "x-ms-client-request-id": [ "aa974406-aa83-485e-abeb-9ea00a788707" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4095,35 +525,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "73e0a39c-fc2c-4dc9-a291-dbc6ce7ade42" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13971" ], - "x-ms-request-id": [ "73e0a39c-fc2c-4dc9-a291-dbc6ce7ade42" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:73e0a39c-fc2c-4dc9-a291-dbc6ce7ade42" ], + "x-ms-correlation-request-id": [ "20d0f589-e458-45be-a14d-4e7a7725396f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14134" ], + "x-ms-request-id": [ "20d0f589-e458-45be-a14d-4e7a7725396f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:20d0f589-e458-45be-a14d-4e7a7725396f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLaDt5IKG1LjizHG2phFa7JA6w9L+kRLxlQelxH3x6mWRvOa4J8H9Rxx5bD0yzuw4kufS8vqeaxxfPg1By+MWWo5WAeY02mRN30A6UYCUXh8X9hkdf6kXh4bUTJOBsK9x4PeiOSGBZA6wiPl697sJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoiKUeEWREpgkf+/ZjDkNhLYAgOEToO0Jic/yB7e3LF80pDzx2H+qVvwNtcATGi1ptSB+ii6/F2EqueXUAMjegVddi/vCSBXry1RppMfHcU1wW/OS4pf/XeLQqgc6Na4GhAeGZZd91qPycN7zlYcv" ] }, "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_834ccfc2-c570-486f-9f82-606958969a8f\",\"name\":\"TipCrpQuota_834ccfc2-c570-486f-9f82-606958969a8f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997?api-version=2021-01-01+96": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b?api-version=2021-01-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1769" ], - "x-ms-client-request-id": [ "ac8fd9f0-699b-4f37-b4cd-f6ea13f82c3c" ], + "x-ms-unique-id": [ "2417" ], + "x-ms-client-request-id": [ "bef410f4-6a2e-4ff8-a5ef-7e74ef49e568" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4137,35 +567,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0691984b-26b9-41bb-9f1e-bb1949d3cbcc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13970" ], - "x-ms-request-id": [ "0691984b-26b9-41bb-9f1e-bb1949d3cbcc" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:0691984b-26b9-41bb-9f1e-bb1949d3cbcc" ], + "x-ms-correlation-request-id": [ "f679a36d-13f1-42c7-8cd7-3f230d5d7b6e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14133" ], + "x-ms-request-id": [ "f679a36d-13f1-42c7-8cd7-3f230d5d7b6e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:f679a36d-13f1-42c7-8cd7-3f230d5d7b6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviOSmBoJZKYtzfdQK7SBMtQqWpq7iXWc8Tj9d3vdc9L1fdJObOgSh4QDVifvlNLNQQQuAqPF4jSm/THyIL8zC3DogpCf+/q1gb3t5nevNBpKFYTcoAh0IFguSa10Nt8B7dgdz2ctJGEWE6H5BDLqd" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtm7NlajcVJ8XVBH30WnbOZPIsZyHWSn2UYB6vTwxjPA3QYfiTMSC30DMT/y6/4LxgNGDXHpSG7HyGrrIsmIcXKDCRECFFccCyMqXyT/Wy1XnnB3I/LZtiMcXAh9E9zZgl6FZ3yg8i3gSNNjlG7w2" ] }, "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_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"name\":\"TipCrpQuota_843ea88a-f1ce-420d-bf63-c0e8f79e1997\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf?api-version=2021-01-01+97": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670?api-version=2021-01-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1770" ], - "x-ms-client-request-id": [ "2970e9f6-2abf-4011-b773-b6851d42f3be" ], + "x-ms-unique-id": [ "2418" ], + "x-ms-client-request-id": [ "a6f41e5d-10d7-4ad1-b9a1-86296fc0d354" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4179,35 +609,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "13b9636b-143b-45c1-9807-0ca554d5ba22" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13969" ], - "x-ms-request-id": [ "13b9636b-143b-45c1-9807-0ca554d5ba22" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:13b9636b-143b-45c1-9807-0ca554d5ba22" ], + "x-ms-correlation-request-id": [ "f9187d75-0ae4-439f-a17f-1ef262ec3995" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14132" ], + "x-ms-request-id": [ "f9187d75-0ae4-439f-a17f-1ef262ec3995" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:f9187d75-0ae4-439f-a17f-1ef262ec3995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv05X3YGLiLp3fejrB03+D0kJh22Rf4c3lNkpOAk/K7nTf3IDNIf0RoH5V2SOh98X3Mxz0hAHgaKI9VxSofp03uSzuqQXh95ojzPqcaCLab0ele7SIukfjKPOSD+8AsC3PptbSfAQATV3wzIaTwV9P" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqHluCKgHz0jzWP7eJt0u8Uw2FhxpV+CzzCcSnpwEGzUplK0rxl59CTfeeHEXNFjDa/kuQ8oZOgNw19rL14qoiV/gKxct2M/21tsfzScYGrbQOclxwvXwp7X5X7dA9sAthc914S+gfh0R7ugK1Chb" ] }, "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_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"name\":\"TipCrpQuota_8568b95a-9722-4f9b-82ef-52cc8398febf\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18?api-version=2021-01-01+98": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004?api-version=2021-01-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1771" ], - "x-ms-client-request-id": [ "74d014e1-2063-4fdd-830d-a153c326e99f" ], + "x-ms-unique-id": [ "2419" ], + "x-ms-client-request-id": [ "3fca6d6c-75af-4fde-8a13-50f0945bb7de" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4221,35 +651,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "88852da5-4525-404d-bc98-a79088fa9084" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13968" ], - "x-ms-request-id": [ "88852da5-4525-404d-bc98-a79088fa9084" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181557Z:88852da5-4525-404d-bc98-a79088fa9084" ], + "x-ms-correlation-request-id": [ "6de24f55-0245-4ae9-99d5-375a25b8fb5a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14131" ], + "x-ms-request-id": [ "6de24f55-0245-4ae9-99d5-375a25b8fb5a" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:6de24f55-0245-4ae9-99d5-375a25b8fb5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:57 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0gqDB4YKOgnDEi4HHtXF6yfgGLDeoe84E2iQIVmPkmhCPnnx1FtXcqigZLmIEEjG7nYcba11JeOutQATtt2RZjcjSILiHrGB54rdOQfbY9k4DpeIfnsFViIYHjzVksQZ/jdBk/qGNDSmg6pN0zog" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxI1QOuAGmswWw4+2ZvkPJOKvqfQmQxdxHuMBz5aWomR4HL1TC+CpjXCSU3jT/HFWaBw7xnBIwvymnCL1fHRUtqyAEZ+ngNvZFvTFb78lOKRaEFceEihshpCu6YbpO3Om0/+TvaA162CuM42C4rbh" ] }, "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_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"name\":\"TipCrpQuota_877a34a1-dfa5-4af0-9ae8-140ecdbc4d18\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267?api-version=2021-01-01+99": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847?api-version=2021-01-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1772" ], - "x-ms-client-request-id": [ "2c85a328-1b22-407d-a637-b63917381973" ], + "x-ms-unique-id": [ "2420" ], + "x-ms-client-request-id": [ "d8a68208-e6e2-4b7f-8089-77a77128f869" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4263,35 +693,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a7ddab71-be9a-4e63-86ae-fd24790df39e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13967" ], - "x-ms-request-id": [ "a7ddab71-be9a-4e63-86ae-fd24790df39e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:a7ddab71-be9a-4e63-86ae-fd24790df39e" ], + "x-ms-correlation-request-id": [ "b9375df0-9d1f-4fb0-891d-a69bc019d2a8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14130" ], + "x-ms-request-id": [ "b9375df0-9d1f-4fb0-891d-a69bc019d2a8" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:b9375df0-9d1f-4fb0-891d-a69bc019d2a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXbJyFwO4F5KQS5LSOfZSmGNEZd8Wt/KJVn4VdRrnL6jQU8qp3uMvP52BSY2+eRHTEl9hzXZef3cQRb3SEKeAA2XZsZ5lmFDF+o/A2+NTynb5IeDG9lpKb1/LG3viTr0R5ehIVcN4JLGBX4IQyd3f" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUseecZOeHmfZIOIsz6XX/3jUPWqD2iL3JmPiZnG22qUpjn76QU/BNKblztK63m2zKQibYJR9CVrQn1ltDhQk+VnTwT2wnQBaJbw1AcDkfeWVgASq4a/NX0FXuf/VHrAIs19FJS9zp3MyHNNvqf0s" ] }, "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_8855d8ef-d217-4949-844b-424daaace267\",\"name\":\"TipCrpQuota_8855d8ef-d217-4949-844b-424daaace267\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7?api-version=2021-01-01+100": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0?api-version=2021-01-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1773" ], - "x-ms-client-request-id": [ "b86f68be-e7e3-4d07-8581-5fd6a65d02ce" ], + "x-ms-unique-id": [ "2421" ], + "x-ms-client-request-id": [ "29b3f355-1d42-4d37-aa10-1c352ed87470" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4305,35 +735,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "663d5529-4017-4329-b632-02c22e837b46" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13966" ], - "x-ms-request-id": [ "663d5529-4017-4329-b632-02c22e837b46" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:663d5529-4017-4329-b632-02c22e837b46" ], + "x-ms-correlation-request-id": [ "6fe1b01f-813a-40b8-96e7-e60915305dfa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14129" ], + "x-ms-request-id": [ "6fe1b01f-813a-40b8-96e7-e60915305dfa" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:6fe1b01f-813a-40b8-96e7-e60915305dfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTC+mnLhBdlq9/KrpGZW7ujCDcMx4ZhNvspP4w4w9u6wtbPKd9XPQMWkKtsZuuNaOv5B8d9lELnyOngi57NTPPJIzXPhEIVP1ckTk9CZ5rtpykW/tzp4gIysJPa2WbT0lS44+1FlTmZ7oavZLyCOc" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzZWoyDrRD4NpiYQXpB/HdPGofkK5M5tW0t59X8o9pK0hCZUhmGY08zWPVnhxXgAHZGc9jNdnY89HK/n3mRW4QP6H5crqNcD88Jkd9pvOo82OjQNU2l5T5vHjXZiDJG+yvZOZQW1XPJ/TD6tqfPVX" ] }, "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_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"name\":\"TipCrpQuota_889d3f7a-81b7-4a38-b0b7-62b7b9b359f7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3?api-version=2021-01-01+101": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8?api-version=2021-01-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1774" ], - "x-ms-client-request-id": [ "735ac9ee-80e0-4eac-9d96-39b2d309172a" ], + "x-ms-unique-id": [ "2422" ], + "x-ms-client-request-id": [ "ceb519ee-43f9-4664-ac6a-5dfce99dd8aa" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4347,35 +777,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "70e365f8-6b5c-4e83-bbfb-281cc6dff815" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13965" ], - "x-ms-request-id": [ "70e365f8-6b5c-4e83-bbfb-281cc6dff815" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:70e365f8-6b5c-4e83-bbfb-281cc6dff815" ], + "x-ms-correlation-request-id": [ "8cfb8521-8eea-44e4-ab4e-1241dbded5b5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14128" ], + "x-ms-request-id": [ "8cfb8521-8eea-44e4-ab4e-1241dbded5b5" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:8cfb8521-8eea-44e4-ab4e-1241dbded5b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMGIX32R8S/gnoynaHghq/1xaQo5IWXO8Guiz+iySUC7GJUhYV0xoWYDCUf5MA0IpEDLoKLnvYos48qJNGfAkaTcIMHryQVIFQY+6/gUBC6wL9HbSqBdXfs9GDLDNIgnkIKafI3nZSUC4XqODpxce" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/lIDxUD5E3/ic8IF8AIEpz3fgBfqGYhu8bfueMQytT/jVa5b/KIJO5DdqlewiZl2AHVGXwu5J/gzUX1BGtGVKD6z2RBqNZFpKk5PXWBtWW4LA2VrZBDpOgzZq89CVhQZcCy+jkm9/2bp8I7a+9yu" ] }, "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_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"name\":\"TipCrpQuota_8941b2e9-f186-41bb-8b7b-e4be0322a8a3\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46?api-version=2021-01-01+102": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8?api-version=2021-01-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1775" ], - "x-ms-client-request-id": [ "01237fc6-c303-4e40-a29a-0cd960da7c61" ], + "x-ms-unique-id": [ "2423" ], + "x-ms-client-request-id": [ "bf25b7d9-c4dc-4e59-aea5-140fe4421bde" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4389,35 +819,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7cecb37c-280e-4835-865b-bc861761096c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13964" ], - "x-ms-request-id": [ "7cecb37c-280e-4835-865b-bc861761096c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:7cecb37c-280e-4835-865b-bc861761096c" ], + "x-ms-correlation-request-id": [ "5bca06a9-110b-4a99-a313-1d8528cea828" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14127" ], + "x-ms-request-id": [ "5bca06a9-110b-4a99-a313-1d8528cea828" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:5bca06a9-110b-4a99-a313-1d8528cea828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrf0izlieALrRvUNicLNkwQ36To5aVU5auxWJjt+cU0xIRWZ+Y3sro832eoAi470GPoy39GtzoiD1fJGlnEay/1Ov6Ti0lkLpo4VzSv0XqN8VcSdEo11YwQAOgxDnv7lvPvrqJ2CXQk4fhhuN8wQA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpgiaZhyNsREsg7gigTe2EBqf5mjSPofBkZ/47+rosUFEi2jPWD8IW+cVZzPZk8u548/CINKMd/MxuE38n3AyXn6zs8oLvd8uMdg1hKkuEQ4sM1lgOrfDqObKBf9ce+Q+Y5wRYnHy5vz5rZPHmFmb" ] }, "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_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"name\":\"TipCrpQuota_89cef4ce-73fe-4bbc-ae1b-61b92f641a46\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1?api-version=2021-01-01+103": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5?api-version=2021-01-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1776" ], - "x-ms-client-request-id": [ "40038763-333f-4c8c-9021-a4bd67a553af" ], + "x-ms-unique-id": [ "2424" ], + "x-ms-client-request-id": [ "0ebb9b78-2916-4458-83f3-e94fc7ce5979" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4431,35 +861,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "28800105-b5f0-4386-a894-7405a3e2fd18" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13963" ], - "x-ms-request-id": [ "28800105-b5f0-4386-a894-7405a3e2fd18" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181558Z:28800105-b5f0-4386-a894-7405a3e2fd18" ], + "x-ms-correlation-request-id": [ "dc83348d-33b5-4881-974b-b69016adc297" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14126" ], + "x-ms-request-id": [ "dc83348d-33b5-4881-974b-b69016adc297" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:dc83348d-33b5-4881-974b-b69016adc297" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8NbBtq8OIWx+nzwTDzaTqcA+p3Syqa019lDo5iqKmjHlVuinz1XDAA4LyLxiig5SX8J+pxckZOfu7JE1Ypl2JnP+O5fdz1VPz2bipLSkSxAH5U/B/Bs/HXVz9yFZ6qR/tuqhr8QCeYED+X56Fknb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvurOscBg/44sZfom/peH+yYVAJf0pZ7TGzfQz7UIxNNvbgkYmO/IorEHZNHqs62yqpFYpPIZXoGgXft4C/ith2zMbCU726IFFTSI0a7bGwSw1UdpJ2iz53N1uSIDSclgmo5bT3PQVYYaQADJVjt5i" ] }, "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_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"name\":\"TipCrpQuota_8ad1d43a-78e6-4694-ae95-14f8b2ae98c1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe?api-version=2021-01-01+104": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8?api-version=2021-01-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1777" ], - "x-ms-client-request-id": [ "783a53c6-4243-4f36-8a0e-1f6ff88cd448" ], + "x-ms-unique-id": [ "2425" ], + "x-ms-client-request-id": [ "41d94bb6-ce50-4105-a02e-d3139312406d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4473,35 +903,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "84d81ab5-4d5d-4c0b-ae38-4f38a7284546" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13962" ], - "x-ms-request-id": [ "84d81ab5-4d5d-4c0b-ae38-4f38a7284546" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181559Z:84d81ab5-4d5d-4c0b-ae38-4f38a7284546" ], + "x-ms-correlation-request-id": [ "598f12c8-2e89-4f0b-a1c4-7f7ab5f6f010" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14125" ], + "x-ms-request-id": [ "598f12c8-2e89-4f0b-a1c4-7f7ab5f6f010" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:598f12c8-2e89-4f0b-a1c4-7f7ab5f6f010" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:58 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGkQvjuhiKSuMwJdmplgVtkPINjz/qe0BjVVuJc6kqJYZdtz6mDJMAe3bGSgOUbfM6fbHodt4YSkkdbg5SsdQAyUbK5k8ybSBuoTFFUuv1pEPddLJJyYDsGKvbae3SzSMLNFMXbuwyULH0QF/ekYN" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRdprnSRAaM5QnsRCIxL5zGJ6N3tKb+V69hSxiAUd3G5Kw1tfNlNbyVX5MVKuccNgqSusLSsZHKcydR6rJcnNWV673CxPM0VYHf6Zmh9pdZXKIRWwf2JybgeZrYNR0EZtbJxJSWoiWloM6wWCuYdK" ] }, "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_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"name\":\"TipCrpQuota_8b5192fd-bb03-430d-8f3c-4cc01e6874fe\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d?api-version=2021-01-01+105": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493?api-version=2021-01-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1778" ], - "x-ms-client-request-id": [ "16b06677-ddd6-4ffe-b5cb-2a3e2c3a2754" ], + "x-ms-unique-id": [ "2426" ], + "x-ms-client-request-id": [ "6f417bb0-56a1-46d1-b84a-0c0c74fd7924" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4515,35 +945,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "44fe08f8-dfa5-4da4-ad31-e8dac7e72adb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13961" ], - "x-ms-request-id": [ "44fe08f8-dfa5-4da4-ad31-e8dac7e72adb" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181559Z:44fe08f8-dfa5-4da4-ad31-e8dac7e72adb" ], + "x-ms-correlation-request-id": [ "9ee650f2-10a3-4d02-b14f-4ee48fdcbf9d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14124" ], + "x-ms-request-id": [ "9ee650f2-10a3-4d02-b14f-4ee48fdcbf9d" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:9ee650f2-10a3-4d02-b14f-4ee48fdcbf9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:59 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyI7A8yrkS4F0uigx/OL/eI3OjuG/CPZXDH/qEEnLw96vRZ1k1/A32ZfxfjeDyRpPj0DkdPH79ZLzztgiQQDtW+B+hCzM1AhSLsKw7WzVVJsaKaYmkGRuRnGeI5lspMbQ4xxLlaCyzpKm1No/JwK1" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvqrUxnXPfs3OahPfj77uVkoRkYTq8+AaEFtofGUvWrysFEGNf+KnN7GUQmx/5y4MzkPNvPhuhPpOq/Z147aga7S7M2CnvpdQMJpKqnDQQ3Q6GJ2Tt09OfLMaX56UQ5it9130oJIrBqb8I/zgvyFy" ] }, "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_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"name\":\"TipCrpQuota_8ef96b18-f937-4c49-9f4b-888634f1065d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12?api-version=2021-01-01+106": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2?api-version=2021-01-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1779" ], - "x-ms-client-request-id": [ "ecf021ef-3adf-44f1-b8ad-b1d0fa3886a2" ], + "x-ms-unique-id": [ "2427" ], + "x-ms-client-request-id": [ "6196f3f4-1725-4837-a7a0-4c8978688f99" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4557,35 +987,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c968b4b4-641f-44d3-a113-7e39b3d6e417" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13960" ], - "x-ms-request-id": [ "c968b4b4-641f-44d3-a113-7e39b3d6e417" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181559Z:c968b4b4-641f-44d3-a113-7e39b3d6e417" ], + "x-ms-correlation-request-id": [ "e815c677-45cc-44cf-9586-4f9bf8d3cb94" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14123" ], + "x-ms-request-id": [ "e815c677-45cc-44cf-9586-4f9bf8d3cb94" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:e815c677-45cc-44cf-9586-4f9bf8d3cb94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:59 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+Y8baUD0WHWLSvxOqfuFGWcS6gIc46AQv3n49Q6cOVlxxhbdgz8J4PPLTiVK5eoIge2tmP0cFilozaTDVYsPA5Z4KSufwEZrUtUalsh96aa/wY4uKqizY1MJT6B94snadQU0wU1kCanYgfN1mI7g" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHx47VKMfINlsU43WIfqXvwZFGo+i2RCCu/Dd4YN6N2Iz9dsGuAwGGXYQd9LUvdEdLuGafv/tcDJrXnQhjMm+D8noNl/gADrstYD54MGcBA8IfNl1mHmIXoiVsLjR9jvF26qee0E/TEyax3opI9Tv" ] }, "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_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"name\":\"TipCrpQuota_945c3f6b-3dbe-4ae8-a0e0-a6436f087b12\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6?api-version=2021-01-01+107": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6?api-version=2021-01-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1780" ], - "x-ms-client-request-id": [ "1aadf4dd-dcce-414b-aa83-cf283211038f" ], + "x-ms-unique-id": [ "2428" ], + "x-ms-client-request-id": [ "8c4877f0-ee96-4526-8981-4dbaff2fa871" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4599,35 +1029,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7f8386aa-d2cc-420b-9fbf-018971a0b1ea" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13959" ], - "x-ms-request-id": [ "7f8386aa-d2cc-420b-9fbf-018971a0b1ea" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181559Z:7f8386aa-d2cc-420b-9fbf-018971a0b1ea" ], + "x-ms-correlation-request-id": [ "4a18726f-c5e9-4a70-841a-688ceb740db8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14122" ], + "x-ms-request-id": [ "4a18726f-c5e9-4a70-841a-688ceb740db8" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:4a18726f-c5e9-4a70-841a-688ceb740db8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:59 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvftDpHjxK57yEL0lYxrhrP7UrizaEx8CgIctfbQjaPxfPQdhkeXTvI/WxgcwzqDzB7qitO0hHVVXef29lqzawTBgijdTpbjtz9bKSnwUp313U4S/gt21OU0hxVKA2QQKxBRzMXd4jtsS4Zoiu2+tt" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQIi7vgyztJYqUYoy5JyY7oVPFqinjeKJfJDxlm31sh2R2HqiJck9RU5eAAnMyryeuUJErsdwzqIkh9gE8bPgjpGfIMlf14PppWG/Jk1r3gFJmDEJUBGurCzGMFnbwt+4vmp260PDFcvqISPuOIvO" ] }, "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_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"name\":\"TipCrpQuota_9474e1c3-914e-430a-85e5-b2c25ee211a6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5?api-version=2021-01-01+108": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0?api-version=2021-01-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1781" ], - "x-ms-client-request-id": [ "591a2ccf-c2f2-4357-bd2a-68d9b3c58ec4" ], + "x-ms-unique-id": [ "2429" ], + "x-ms-client-request-id": [ "b77e4468-c350-4640-a9f3-a02eb8e9264e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4641,35 +1071,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "128cfcba-0230-4141-a08d-5ea8bd3e9994" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13958" ], - "x-ms-request-id": [ "128cfcba-0230-4141-a08d-5ea8bd3e9994" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:128cfcba-0230-4141-a08d-5ea8bd3e9994" ], + "x-ms-correlation-request-id": [ "47034c54-f301-4cf4-bb51-a518324720ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14121" ], + "x-ms-request-id": [ "47034c54-f301-4cf4-bb51-a518324720ef" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:47034c54-f301-4cf4-bb51-a518324720ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:15:59 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/LtnRCZbzG+vzn798WkUTMYXbOEdDEWmrsngxsg7VCm1qKFtoaNBQVj9R9PHcxY/pNXPvMT8vN2mzZMmj5/HDkMwzNmrNGFEn+OdH8kQRTFWS/AI4BQx4FlyVxk7JH0080M34B62jBsopiH2rAEM" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjn4NAEalIGfk0nBrSmckD0N38z9DOFrPVUHskvkNEjypSE/txcYGcAsASyOlfAJ9S9F/UUDHvTjDeiwpZ9ClkVtSTWeycjiXxlKxF7nP3jg/QGll2TutbKoh8bcPWEgNoipbZv1IDrXihpC6lXEY" ] }, "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_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"name\":\"TipCrpQuota_98fe6468-1ed9-4fee-a0a1-65c962ddb1b5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533?api-version=2021-01-01+109": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508?api-version=2021-01-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1782" ], - "x-ms-client-request-id": [ "cb237f57-f08a-4fab-b871-9e9bc7266b9f" ], + "x-ms-unique-id": [ "2430" ], + "x-ms-client-request-id": [ "c43b82ee-1390-4343-b7dd-0db3f3e372f4" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4683,35 +1113,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "69a51d29-fd62-4a4c-a95b-08d8c9781a4e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13957" ], - "x-ms-request-id": [ "69a51d29-fd62-4a4c-a95b-08d8c9781a4e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:69a51d29-fd62-4a4c-a95b-08d8c9781a4e" ], + "x-ms-correlation-request-id": [ "40ab2c7b-5b63-43d3-a5bb-de2dd5ce2759" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14120" ], + "x-ms-request-id": [ "40ab2c7b-5b63-43d3-a5bb-de2dd5ce2759" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:40ab2c7b-5b63-43d3-a5bb-de2dd5ce2759" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF60xGS29p8oEamhViEZ6NpLlpyNEbrfrND/D4k8/lTiXNJJkw1YohZrUqdfab+McFCEGJ0PcfHlxj6D5DyfPiFAtbgcxhCaW2nrbwMho8A0UvN5m1EgiuhmX9GgMrHusmeg8YKTwVo3AYae0uk3o" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfo1c9CHZxq79shlzpIAm5cyEzpcFHCFIwrrCCDN47uPBp2xJsPb0e3Emxh621pSUiRAFo7+rwr/nE8APE7c+SPhIaniszhWW57daziQRyF6s5361M+nsMFjWXEk25N30vQFwylVK1Cs13goLIfzV" ] }, "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_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"name\":\"TipCrpQuota_99b3f92d-8fca-4e9d-b304-66ccfacfb533\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c?api-version=2021-01-01+110": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d?api-version=2021-01-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1783" ], - "x-ms-client-request-id": [ "bab437e2-86e0-42d7-bcbd-d727f63c0602" ], + "x-ms-unique-id": [ "2431" ], + "x-ms-client-request-id": [ "fc6a40d9-1844-4550-b42e-d1bceb10219e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4725,35 +1155,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f51d63e1-f4d4-4c2b-b028-5ab4176e41ee" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13956" ], - "x-ms-request-id": [ "f51d63e1-f4d4-4c2b-b028-5ab4176e41ee" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:f51d63e1-f4d4-4c2b-b028-5ab4176e41ee" ], + "x-ms-correlation-request-id": [ "dea2a19f-1805-470e-9ffc-819f0bc3e3ab" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14119" ], + "x-ms-request-id": [ "dea2a19f-1805-470e-9ffc-819f0bc3e3ab" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:dea2a19f-1805-470e-9ffc-819f0bc3e3ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+Fp1icAJbl0E8Rw8Dw2wdN9lOf1cr/Pbex+uX3v9raj3IlFp+pSbK8ZUoK8gCg/49XmjxPRGggsZBdRO670zKge1kpVACWGBFHGa1eBkRwlGZCDusdYxhHks4cBZbkjGeJfs6qinDHbTfkR4MKJb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8OKB88cRWVnfic75lS76E6CjfP1Cbo4fPwLSSjWwcqxe7ODs3ZDdvsa8XuOg6tImIB69jSA+l3vtWcMS+HTlSQhlNlvw+L7Hr/147KIpqJby00DIYxG8NYbjOdALQGvmodV32+YGnTlr0aeSII7M" ] }, "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_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"name\":\"TipCrpQuota_9b850701-8c60-4271-8a63-4d6bfa55fe7c\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a?api-version=2021-01-01+111": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9?api-version=2021-01-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1784" ], - "x-ms-client-request-id": [ "9fe146e1-4219-4174-afdb-c400d01e8c4a" ], + "x-ms-unique-id": [ "2432" ], + "x-ms-client-request-id": [ "81b9e3a5-c1ad-47e3-8122-a568a6560f97" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4767,35 +1197,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "87af7ef9-e93c-4a4b-9f85-5f29c31d59ad" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13955" ], - "x-ms-request-id": [ "87af7ef9-e93c-4a4b-9f85-5f29c31d59ad" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:87af7ef9-e93c-4a4b-9f85-5f29c31d59ad" ], + "x-ms-correlation-request-id": [ "aa4995b1-82c8-4796-ba77-9fc85dde6b13" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14118" ], + "x-ms-request-id": [ "aa4995b1-82c8-4796-ba77-9fc85dde6b13" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:aa4995b1-82c8-4796-ba77-9fc85dde6b13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVytaT0OEUVnQOqmHrBDs4mP0sNP80mDkmUQVZuhgUbWRYVfGSWWbhXOLAzlPlhUfgNelM+pe8y/yWI4xYVWM+Xc7Qefl94zyyUiEWQeKdjUmDRSSUmvp0EoAirYzZnI0RmYqmjeJcjx9EujS72MK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0eKKwFf2bTnbPM+7di6pNK+qIUb0XOts62BdcaW2d6T9gyRb2r0eM2Mppwq7jrUzCkuckJfDyQTW/5mTRKmi8pK8Ur2Eadijr+szKJWV7cqS9S6gl3fAeKwpWFV20RkmAvg5qjbalqnLkmHJcD2W" ] }, "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_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"name\":\"TipCrpQuota_9b9eafbf-c19b-4a02-b041-966e6619145a\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c?api-version=2021-01-01+112": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e?api-version=2021-01-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1785" ], - "x-ms-client-request-id": [ "0cdd81bc-0464-4aa8-91d7-e23994138bf2" ], + "x-ms-unique-id": [ "2433" ], + "x-ms-client-request-id": [ "fe0f4be3-f3c0-4864-a111-afe7c4419187" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4809,35 +1239,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bff999a2-aace-455f-8bc0-76b1a981f11a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13954" ], - "x-ms-request-id": [ "bff999a2-aace-455f-8bc0-76b1a981f11a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181600Z:bff999a2-aace-455f-8bc0-76b1a981f11a" ], + "x-ms-correlation-request-id": [ "15af1995-d9a0-41d2-9d84-0a1bcfd616b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14117" ], + "x-ms-request-id": [ "15af1995-d9a0-41d2-9d84-0a1bcfd616b9" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:15af1995-d9a0-41d2-9d84-0a1bcfd616b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5Dj1IDIIHbus9b9BrwxDhm5+E69okU0JH8oK34megLMpNS0VL9oft+VmR0C8nh2oOJx/HDMC7hYc50htXuYiHO0tcRw2jUVQ3zUNObNODb3X4bbmHTl8gSO9lI5cg9S2OhUxv6LmILAkIuWKJB2G" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMabts8WvKtsAozUphB/HUHXcgws7SnLARkQe1TZXmEy4HsEZuvnJq0E3l9To5ArFTXMXLnofwDLE1IkRAsjqq2+92ldYwSPMItu2GWvpkB5kBQaM2CI9+3lmhzgfN3HjjROLjTfoz1L7wZSWlk33" ] }, "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_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"name\":\"TipCrpQuota_9deecb38-96da-4cc0-9782-75a7b0d7f08c\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148?api-version=2021-01-01+113": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84?api-version=2021-01-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1786" ], - "x-ms-client-request-id": [ "6d4cafff-2485-4061-9027-aa7cf8be074b" ], + "x-ms-unique-id": [ "2434" ], + "x-ms-client-request-id": [ "a8c99cc8-9363-4774-907a-2b03992d971e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4851,35 +1281,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6cf3eec3-1f73-466a-9c25-137cf698948a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13953" ], - "x-ms-request-id": [ "6cf3eec3-1f73-466a-9c25-137cf698948a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:6cf3eec3-1f73-466a-9c25-137cf698948a" ], + "x-ms-correlation-request-id": [ "d957a9cd-8d8b-4c7b-81a3-6bd1f4bf2098" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14116" ], + "x-ms-request-id": [ "d957a9cd-8d8b-4c7b-81a3-6bd1f4bf2098" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:d957a9cd-8d8b-4c7b-81a3-6bd1f4bf2098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:00 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi2HhvsnC1CYWlFcbB/0SC6rdW/i8w/t7jQomjTy9T6aVd+mLqn7v0JOluHVMsmowjHba6sQGArCQOuJ5hMKPkCa0SL3EIe87FlcD6nDNOKGLw1La4l8A7u47j0QuduQqgK7cT+48n7Fxtr72JdS9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJgnP+4VLwcocyYgASXigl8BcpD0iPFjblvLLZYn0Yk0pHSYceoit4Xlz0r9Y1akEdyQBQY9B0Mviwy2Rr5DntnMlgDltmjP82HNZXb5VGIeBb0CxNZqD4wO/1hs740XpvG27gAOnGoo2Gx8k4qIH" ] }, "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_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"name\":\"TipCrpQuota_a1c7ba03-4dc7-4954-aedb-d5bccbdff148\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8?api-version=2021-01-01+114": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99?api-version=2021-01-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1787" ], - "x-ms-client-request-id": [ "d21624a3-5da2-4d3a-883f-d9c057d850fc" ], + "x-ms-unique-id": [ "2435" ], + "x-ms-client-request-id": [ "10a0b082-b7ff-498e-a66d-af0e2d6df10d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4893,35 +1323,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "621128a0-8272-43e8-96a2-fac16a0b0724" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13952" ], - "x-ms-request-id": [ "621128a0-8272-43e8-96a2-fac16a0b0724" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:621128a0-8272-43e8-96a2-fac16a0b0724" ], + "x-ms-correlation-request-id": [ "6e56157a-ecfe-4626-b737-bba6e995c255" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14115" ], + "x-ms-request-id": [ "6e56157a-ecfe-4626-b737-bba6e995c255" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:6e56157a-ecfe-4626-b737-bba6e995c255" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVUWuOdrxNRE/Rc3tH1PIW+Co/AOIzOcXSAmRTcWkM2+IIunTWvHNRjNZprMgPUZRfaS9FvG5DYUykwv4qSrgwyf6NVJI7UlRi7oAC7avPLhqmbIybdl/FYbrL3e8Q9finYAQDAmQXi8olHRZ3uKM" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoueNhQ1KO32qpvAgZALl6Weyt3wNjHpRBrJyyKz4uomxI8QfaNILicsF4sS2OEZZYhB5JAXiGDGlQRQmSU+QuIRKZCumvzyZxeNTQjylhJOa8Hvach/di3dBnmd9CgBpVIIHII0MhfCajexsv9qG" ] }, "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_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"name\":\"TipCrpQuota_a36efee4-1cfa-478a-ba08-f39cfe5987d8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972?api-version=2021-01-01+115": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7?api-version=2021-01-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1788" ], - "x-ms-client-request-id": [ "20498944-aedf-489d-ab53-4b83fa9ba72f" ], + "x-ms-unique-id": [ "2436" ], + "x-ms-client-request-id": [ "9a0a969b-1c21-4a80-84fd-bc9bcfc5227c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4935,35 +1365,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "db908492-4224-42e7-afce-37e759378800" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13951" ], - "x-ms-request-id": [ "db908492-4224-42e7-afce-37e759378800" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:db908492-4224-42e7-afce-37e759378800" ], + "x-ms-correlation-request-id": [ "3f0fc2b9-4713-407a-88d0-32a922db0621" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14114" ], + "x-ms-request-id": [ "3f0fc2b9-4713-407a-88d0-32a922db0621" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:3f0fc2b9-4713-407a-88d0-32a922db0621" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCNRK3aaP35bEn3pOHSkY/nUULLAySxMRyM+GKnCttPhNi50PBszrQg1bHkw6poss/5eSLN0uiTrOXkHUP2N/AZEHAx8Fp8dTZ1dJPm/alKAdBUcEzQZRA9d7lxmDxF5ESBsO39c4fn6PHH3D9tTa" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhhf+TPlgafHOdTmTnptOB//111kuylzNRsMbVU2wS81krVE24X3Gb228cT2Z6uzjQI1VNYAxg0Um7e+zbbnp09UFfsyV+SRZa68BT/9Sv4cim3W76t351IobEe5/qnjB1vnp8hv2g9+VTzEhZsfD" ] }, "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_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"name\":\"TipCrpQuota_a393cbac-d1ce-4d33-8b84-6342e259a972\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd?api-version=2021-01-01+116": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5?api-version=2021-01-01+31": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1789" ], - "x-ms-client-request-id": [ "8693ae4a-7e05-4cae-a707-4c1f1e8e70f6" ], + "x-ms-unique-id": [ "2437" ], + "x-ms-client-request-id": [ "565111f9-1aba-4a5b-8efd-6c40848bed78" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4977,35 +1407,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "88cee2f4-088f-4de2-9776-7ff0c6cd8b09" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13950" ], - "x-ms-request-id": [ "88cee2f4-088f-4de2-9776-7ff0c6cd8b09" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:88cee2f4-088f-4de2-9776-7ff0c6cd8b09" ], + "x-ms-correlation-request-id": [ "f076c794-b66d-45a6-bb82-692f090f3b58" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14113" ], + "x-ms-request-id": [ "f076c794-b66d-45a6-bb82-692f090f3b58" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:f076c794-b66d-45a6-bb82-692f090f3b58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvK4jbJMBNDx96CnvvPj2VAjP0nHrBjT3DvGektxKvKE8pjWC24/TxZQ0KJHO1Wp5chs/W5Z8wT4gC323J7+jWP81umytvbNYl1XXEz4BYTLP9VlnzN1jov6HW6gMtBgq48flPahwlY9Wn5kbajr3C" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4O9FY/lDO6RUf2PW6uS71J54bk2nSorxGJZN3XpQc3uNQ10DZnTEiZ9HTjHFvc1kzqV6SdCnJzEn+mTClXZMjNTA0micI50AKhhkl9vHiDHLPdL/KZJfa4a+Yel0MKHH5sci02JsmsFLx1jNpLPU" ] }, "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_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"name\":\"TipCrpQuota_a4565f32-c3b6-460e-9012-056dd1f85bbd\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29?api-version=2021-01-01+117": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4?api-version=2021-01-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1790" ], - "x-ms-client-request-id": [ "74dd481a-a245-445d-b075-092ffbd5e17c" ], + "x-ms-unique-id": [ "2438" ], + "x-ms-client-request-id": [ "1255f156-32fd-46cb-baac-361e4814790d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5019,35 +1449,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f19b81ab-56d1-4bd3-87aa-f63708e6f889" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13949" ], - "x-ms-request-id": [ "f19b81ab-56d1-4bd3-87aa-f63708e6f889" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181601Z:f19b81ab-56d1-4bd3-87aa-f63708e6f889" ], + "x-ms-correlation-request-id": [ "9f0eb78e-d2d5-4d79-a1ad-84773437af15" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14112" ], + "x-ms-request-id": [ "9f0eb78e-d2d5-4d79-a1ad-84773437af15" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:9f0eb78e-d2d5-4d79-a1ad-84773437af15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmDqN/Ad5KRjcNnQI8IOr7QRYhzbKjcR6SBTcLcrn+cFWxchGeptwdvn7hk/6A300W5z3500Ul/o0oetGnyeXNpux/J9HsIBFCSDMeVoJsLFry3hD0jaFC+QIjfIB3A3Y8EXXQX8TOvWSuDAwsZJj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBtPQh6EelnOe6mKogd+htPzxjg8Nq54KFFnFw/LyGhWbhrTeqPM3wUA304/L4s0rITpatok1ZQmMcJLE5Ap1kUrMq8v1WuDywdOecg+Z/3CmanO8TSztPK6mkfAe0LsjR8AElG3JDz3clLakxUDy" ] }, "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_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"name\":\"TipCrpQuota_a4d1b357-1edb-480c-bb31-d96f8cdf4e29\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313?api-version=2021-01-01+118": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619?api-version=2021-01-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1791" ], - "x-ms-client-request-id": [ "4cdbec0b-6ea1-4ab3-a342-8e2bdcea0da8" ], + "x-ms-unique-id": [ "2439" ], + "x-ms-client-request-id": [ "8b2e3ba1-73dd-43e6-b3df-f8fe5637b976" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5061,35 +1491,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0dca2493-5428-4483-b2d3-079b3d7bda59" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13948" ], - "x-ms-request-id": [ "0dca2493-5428-4483-b2d3-079b3d7bda59" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181602Z:0dca2493-5428-4483-b2d3-079b3d7bda59" ], + "x-ms-correlation-request-id": [ "61f7fefd-5234-4c18-a193-ffdcaaa7ce0e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14111" ], + "x-ms-request-id": [ "61f7fefd-5234-4c18-a193-ffdcaaa7ce0e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:61f7fefd-5234-4c18-a193-ffdcaaa7ce0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:01 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEUpvhl4Z4n7sAh2zcdYjFJZ2cxrz79AUPWjL6GP+MsPVmGkT0PmlnD4B5j3LarMXDbxkIIAT1GXTVkV9SW56jI+F7xLEd/b6kA89oSOWzYhJrAdwrEJ2yoZc1L+mkuqSn0833qHaE7aFqcPiu4ql" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvm+JRtlczVrnTt/rO5scxQuIh+JaW1+ZOVC2WuRdeZPzB88AAoytd41GBae5X56TKJxNTyxbwKah6jzGWtywc0VpDwy2vgZQaoTdQ/3cupmHAazl2y6r9oTY0x2zEMnhi6b7XG9m6cdNeoAinOxCg" ] }, "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_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"name\":\"TipCrpQuota_a598a917-dc53-42c1-a40c-a3fde1d36313\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a?api-version=2021-01-01+119": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4?api-version=2021-01-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1792" ], - "x-ms-client-request-id": [ "f34e53f2-9ccf-4e9d-89be-6c978dd4b057" ], + "x-ms-unique-id": [ "2440" ], + "x-ms-client-request-id": [ "ca404dd9-7e03-40f1-9066-dfe1610e6d2d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5103,35 +1533,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cc67bf3a-52ae-486d-b6ac-f7a6256bbc13" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13947" ], - "x-ms-request-id": [ "cc67bf3a-52ae-486d-b6ac-f7a6256bbc13" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181602Z:cc67bf3a-52ae-486d-b6ac-f7a6256bbc13" ], + "x-ms-correlation-request-id": [ "693c8b82-87dd-4d4f-9380-b72ae08cdd59" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14110" ], + "x-ms-request-id": [ "693c8b82-87dd-4d4f-9380-b72ae08cdd59" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:693c8b82-87dd-4d4f-9380-b72ae08cdd59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHL4KTJ3uGCMHQgiQwhSkfjVTuwPzQLf+WaKiG3jXQa7EFOXKPBG2YmuldZSeYkHkiUGy3EdKo9Q8FiC4YXKBj8OdUj571kMGGKUdtGF56XUD/6/LHiRnkJahXhVYA5LcDW1NhRc/xv7GGotz5duy" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDL62Gn24lx5cu7BQAmWPsxHmM4EwtYm26MlVg9LVBtMswZ3cVkbw8adxg66toO4ljbq2sOqOGAgkBDEiJ1huelC0lBGWamP1wNyalYlLrVckj0TfqEttA/550aFNXFdUoxFo4UfJZhOGuqMWeiGA" ] }, "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_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"name\":\"TipCrpQuota_ab7eb60b-fd1c-427f-8b7c-4bcbb06c9b4a\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09?api-version=2021-01-01+120": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba?api-version=2021-01-01+35": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1793" ], - "x-ms-client-request-id": [ "16df9e74-0f46-4a60-a2cc-7bd61ab2bc37" ], + "x-ms-unique-id": [ "2441" ], + "x-ms-client-request-id": [ "2897a553-f5c3-429b-849c-5701b98dc756" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5145,35 +1575,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "48074fb9-bd9b-43b9-abe8-6d1e9b0274ec" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13946" ], - "x-ms-request-id": [ "48074fb9-bd9b-43b9-abe8-6d1e9b0274ec" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181602Z:48074fb9-bd9b-43b9-abe8-6d1e9b0274ec" ], + "x-ms-correlation-request-id": [ "b2be9c66-fde9-44a4-8795-71b6a90ed878" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14109" ], + "x-ms-request-id": [ "b2be9c66-fde9-44a4-8795-71b6a90ed878" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:b2be9c66-fde9-44a4-8795-71b6a90ed878" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2jymBGUCmUZ9SYPvavJoiUw4JsMR72AdOum08HYhi9rxRZbdcYS3rodK1/q/yEqjcnLkVdW0Ea2EqoVrwznH61hP1mt4UBjoPiXLsDUqxHDrmFT4nXcQJHKBswMnWasRvg5xC1uy+Q1UVTjBiTu9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvc/FkRGNubwKVAdCxTdOBnvpzWS1Fdc6tQXCvY+B4UJCci1RuJXqqjArdcVxVIWqdDEUzMBwIChdB46TTH9a5WxGZjZ1v/+zSUehEo4GsaUa7cOnD+dhqaQIgwnZp9KYhiLDY+nurEGXo6xmQztBv" ] }, "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_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"name\":\"TipCrpQuota_ac446333-375f-4fc0-a5a5-21fbee00ff09\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0?api-version=2021-01-01+121": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71?api-version=2021-01-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1794" ], - "x-ms-client-request-id": [ "b57f1fd6-357b-4cb2-8fa7-84d88f241afa" ], + "x-ms-unique-id": [ "2442" ], + "x-ms-client-request-id": [ "ff4e280e-a00c-4d4d-9ec4-b6454646f65c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5187,35 +1617,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ca0e6062-e801-41cc-bc0e-d2bb707fcb9d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13945" ], - "x-ms-request-id": [ "ca0e6062-e801-41cc-bc0e-d2bb707fcb9d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181602Z:ca0e6062-e801-41cc-bc0e-d2bb707fcb9d" ], + "x-ms-correlation-request-id": [ "ad1abc71-b5de-4149-9cea-01925eddab39" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14108" ], + "x-ms-request-id": [ "ad1abc71-b5de-4149-9cea-01925eddab39" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:ad1abc71-b5de-4149-9cea-01925eddab39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEPyv5OhtKxpeMyHzmTnKQptn0GYZAfDuhg6nch1TRPgaTd7ormnlMHn4iuma2MPdL781S25id/Hzuac42ExOPOvJYFawNad4wnqYiV+Px4QCmVEzDrK/ZctbRyZdIb1yKc0FfmpgSyYHV9sYGLZv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFJ66aTIDO9FThBdCKmVSj67VQWP6GLVWP2ccsUwODc4WkK4ROSfDvR2X86ZPpFOhfSnMjfZrgeoyQ73e9rhJTHi5WwIoAS+GV8ZOr/on7vyg2l6jD+OJoPQayLgIVtq1uhFS4uDSm8cMdfsw81hE" ] }, "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_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"name\":\"TipCrpQuota_ad1dd320-7248-4c0a-87f9-0de9b879fac0\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e?api-version=2021-01-01+122": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76?api-version=2021-01-01+37": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1795" ], - "x-ms-client-request-id": [ "38242316-3b01-4eb4-952b-fb611c11b28d" ], + "x-ms-unique-id": [ "2443" ], + "x-ms-client-request-id": [ "821a033e-611a-4d47-a274-8e91e711f3b4" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5229,35 +1659,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f26415f8-b7b2-4697-9c71-e24f2e60df89" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13944" ], - "x-ms-request-id": [ "f26415f8-b7b2-4697-9c71-e24f2e60df89" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181603Z:f26415f8-b7b2-4697-9c71-e24f2e60df89" ], + "x-ms-correlation-request-id": [ "f909342b-ba15-409c-9489-5f1ff127498d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14107" ], + "x-ms-request-id": [ "f909342b-ba15-409c-9489-5f1ff127498d" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:f909342b-ba15-409c-9489-5f1ff127498d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjOxv6gjrou3N5esuJDifzhN7HZA72jBjcKhVJHu/g46M+FrmG/OHaqvIfliKFoy0HcD2Z+g4oXC4hPOD/6ct5ofjDL6C0BP73z8jMIWCk/f6lRwKOuhuycNS84aaTx3AcUwnlJU+xAprmT3zl/DV" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvm+qgK62bW/OGLY/wstMpeErd9kAw0Ib5+aWhy3WahX8iMrxl1fA4dGnxPGEzw15dAA9WQ8CKLgcIthnnvhrDbOQ2bufxSWOZ/3fc/B2TLl3qdy7r2XD9ZmRdch52VmpC2BRUbVob3VVxNYFBXqh+" ] }, "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_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"name\":\"TipCrpQuota_ad49115c-d0a6-424d-ac42-b6a465c2495e\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8?api-version=2021-01-01+123": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5?api-version=2021-01-01+38": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1796" ], - "x-ms-client-request-id": [ "87d0d886-fe7b-4aaf-8283-22d951fa8912" ], + "x-ms-unique-id": [ "2444" ], + "x-ms-client-request-id": [ "af787810-6e5c-49f7-8776-987033926d16" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5271,35 +1701,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e497867d-244b-4834-9cae-44cec61cd322" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13943" ], - "x-ms-request-id": [ "e497867d-244b-4834-9cae-44cec61cd322" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181603Z:e497867d-244b-4834-9cae-44cec61cd322" ], + "x-ms-correlation-request-id": [ "97a23416-65c3-4c7c-9992-2bf8d317eec7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14106" ], + "x-ms-request-id": [ "97a23416-65c3-4c7c-9992-2bf8d317eec7" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:97a23416-65c3-4c7c-9992-2bf8d317eec7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:02 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvX7Bj3N25D7yWNaG5BL556L0pd1aKdEwdV0nif1grZN3cWrf1neB7bAVpCNlu0XrgSs/JTcUlz802SPDrssNL+KI0O+OPCLvuKlSSg/fHMYOjOvsS4SNv2iSd0wgxbUSy1u5pQ2esiBK4WrVtV4Ia" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQs7LDItZ4uUA1AZC1OK0wosnUDCUmsh8zACAa3NOOPpHVyNJNuZPBBssGbACZ67+CzgBlKyCyhquKChzag8R8ia54uUvxNesJUw8x+PMe5ix/2is3LUuyHmtM//kDMijEYGSx9IDUpaC4HkvF8wA" ] }, "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_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"name\":\"TipCrpQuota_ada9cd0c-38b6-4a36-9b2e-2bcf2de8afe8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d?api-version=2021-01-01+124": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997?api-version=2021-01-01+39": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1797" ], - "x-ms-client-request-id": [ "2b4eb873-1194-467e-ae57-8bbf1d512e3e" ], + "x-ms-unique-id": [ "2445" ], + "x-ms-client-request-id": [ "29daef84-0df4-41c3-8227-f571fc361600" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5313,35 +1743,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6d61b9b3-35f6-40b1-be3c-604b95d9c1a6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13942" ], - "x-ms-request-id": [ "6d61b9b3-35f6-40b1-be3c-604b95d9c1a6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181603Z:6d61b9b3-35f6-40b1-be3c-604b95d9c1a6" ], + "x-ms-correlation-request-id": [ "17cf88bc-3b83-476a-b8fc-728993ae9f34" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14105" ], + "x-ms-request-id": [ "17cf88bc-3b83-476a-b8fc-728993ae9f34" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:17cf88bc-3b83-476a-b8fc-728993ae9f34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2Mu9ZAxMrQy+vLV6J1qN7Jq0iKo5l3+FBeRslXPFsPymxhx5ZbchaVc4I/SPeAdm33lGAqA4QmMVaFE3XunJ0DPJaF99HbD7YGdPZ7xXoTWao97VQwRpoalJNZGPA3OT0FBFNK9zkT5wByHQ3+Y0" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfv+hJMfZ2MNhdPYZdUBZoMYPObW6oGMHkEfWlxoJw4a9B6L6Mix3Cb5P4pQPoXp6ubj6fF3RIW4ZLCR1lLfXNVR3IA6OjHjP/gfq47Rrnc3TF1M8V/0ls8YvEiP3vFe6da9HWdezFp10iaMFh0oj" ] }, "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_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"name\":\"TipCrpQuota_ae945d10-38ec-4406-8d63-8e841e0a871d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd?api-version=2021-01-01+125": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12?api-version=2021-01-01+40": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1798" ], - "x-ms-client-request-id": [ "f52195ac-4150-4ad4-887c-a7ed26154242" ], + "x-ms-unique-id": [ "2446" ], + "x-ms-client-request-id": [ "62bbff2d-8959-4ec4-9b66-699760615e3e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5355,35 +1785,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "22147d19-378a-49f1-ba4d-e5944ff2b0e6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13941" ], - "x-ms-request-id": [ "22147d19-378a-49f1-ba4d-e5944ff2b0e6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181603Z:22147d19-378a-49f1-ba4d-e5944ff2b0e6" ], + "x-ms-correlation-request-id": [ "1297c5a5-2043-48d5-b72b-179379a5e6fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14104" ], + "x-ms-request-id": [ "1297c5a5-2043-48d5-b72b-179379a5e6fa" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:1297c5a5-2043-48d5-b72b-179379a5e6fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9tdLNykS6v7Bh9gFDnY2lnjNhmmJFyHlDkOoGr0xFrsHlSohz2gQDbQyauHTnKz1MJMtbBl8HGTX3me8plp2evznJT8Gz0pNU3fZf7fwDA/I+vJlTP8Z9gSSrNCrf6MTot9SIFRcajHJfNE+k4Ba" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk0BjrOMXyQ0jYvevi9G9NlWyi4mGlbBCHvg7FilgrE8qIDJQYImG18MYpOGEKAb3zS/r6J/1RB7nPxBW73N+2Xd4vQAuDnZOp/eKUlOp83fnK+wgiSQnKiWRYrPorX/jdjidwEZLd7bWkhVycuBz" ] }, "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_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"name\":\"TipCrpQuota_b1d6c577-29c3-4c4d-9261-f5c49b78f8bd\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94?api-version=2021-01-01+126": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96?api-version=2021-01-01+41": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1799" ], - "x-ms-client-request-id": [ "ed03ad2f-b051-4296-8f42-fcf78f654f18" ], + "x-ms-unique-id": [ "2447" ], + "x-ms-client-request-id": [ "af26e0a2-3544-4822-92cb-668957d61975" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5397,35 +1827,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "784492d6-ab36-44b6-b70b-056cffb4a2dd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13940" ], - "x-ms-request-id": [ "784492d6-ab36-44b6-b70b-056cffb4a2dd" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:784492d6-ab36-44b6-b70b-056cffb4a2dd" ], + "x-ms-correlation-request-id": [ "60c049e8-0940-4885-b4aa-2000353b214a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14103" ], + "x-ms-request-id": [ "60c049e8-0940-4885-b4aa-2000353b214a" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:60c049e8-0940-4885-b4aa-2000353b214a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvN/520NICu++0RzfmAw1eqJdrXU2xgvpR4CWsxixn9jwWqfHMYzWftxFkZKq0dw7tjdrkzNoEmfw3XM3pwHW2JAAM41CkhX/zIXPGXTV7dOcKK+mXaFjJ/ynCOdNIc5uqelfAdOQwMqio/Kc1tWhU" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUE5tPOTOWD3T1EWYHPV9aY2vwahnrhZwpMQei85XPzLSrwN1Zpy8CRcIzRS/0Hgr8HAeXb6ccNvCljZcMZzBAO3LaHr568UqrjUQtdiOwYsNzzvITdUd+/Em9P91lMRdDBEbyTUv7ktpg9E8ctn5" ] }, "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_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"name\":\"TipCrpQuota_b3bb5e16-01a2-4fe0-8a3b-4d15ce29ef94\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2?api-version=2021-01-01+127": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a?api-version=2021-01-01+42": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1800" ], - "x-ms-client-request-id": [ "d346d99b-8191-4027-90b1-76bd5268cc4c" ], + "x-ms-unique-id": [ "2448" ], + "x-ms-client-request-id": [ "b6a22219-f54c-477b-8d8e-c91154f9b9c9" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5439,35 +1869,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "398748ef-f8a3-434d-8b04-6c0c77e8b23a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13939" ], - "x-ms-request-id": [ "398748ef-f8a3-434d-8b04-6c0c77e8b23a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:398748ef-f8a3-434d-8b04-6c0c77e8b23a" ], + "x-ms-correlation-request-id": [ "12de98cc-f1e7-48d9-bdb2-b48794ae7918" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14102" ], + "x-ms-request-id": [ "12de98cc-f1e7-48d9-bdb2-b48794ae7918" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:12de98cc-f1e7-48d9-bdb2-b48794ae7918" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Vvk/Lt5fnRIvS6M5i87VB/f8Dgf0PqsNckn2GAI0R1KDoBrHW9F5c/cLqB/YPNKPm7AdNHjokTUbWOJHpALcFmX/2pUAKwnLAeBDM3odk3+I7uy3d3RgKe3rJyzZNCgJSqozyflzEYkK8XfyCC+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbQgXM+J7s3OV2HO99b4gsvrEqvRxIzLBmtDCqfg8IgzuYmbgH7mrWzM14Ew8ef1N2NRLH8IfkrcpLc2096Ao5E77rrkAUypwshZ410cpb9q8+WzNMkO7N1aHAxcaxqd6kd3V8z34AJMDSH8320vc" ] }, "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_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"name\":\"TipCrpQuota_b689d6cb-9cb2-4fa2-8868-9fea11e638b2\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1?api-version=2021-01-01+128": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7?api-version=2021-01-01+43": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1801" ], - "x-ms-client-request-id": [ "6e457213-a792-4617-84c2-bec65c632656" ], + "x-ms-unique-id": [ "2449" ], + "x-ms-client-request-id": [ "618cd4e0-1038-4303-89bd-d33141559e5c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5481,35 +1911,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0659e688-d8da-4d1a-899b-7881f18c8d12" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13938" ], - "x-ms-request-id": [ "0659e688-d8da-4d1a-899b-7881f18c8d12" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:0659e688-d8da-4d1a-899b-7881f18c8d12" ], + "x-ms-correlation-request-id": [ "e75fb69b-5a5d-4544-a9c3-79077d439052" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14101" ], + "x-ms-request-id": [ "e75fb69b-5a5d-4544-a9c3-79077d439052" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:e75fb69b-5a5d-4544-a9c3-79077d439052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:03 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH/t0pp8rcAQLmwPPXa/dGFu8xNUUWxTuXDNLfSPQoHiVNjTLxjK+62i4O476di5BQ3aFSoBsXQq6nCm4Phz3gZ+79wqIqjky4dT4ovotSlHh2PPy2TjgroVL+pe1HU6VCPCDUQui9ISkgua5zj9d" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvz5HxhTgWnaXi9nIAiqA3ZyXZYAqYSLo7viauuHRLQ+YhLGB+6MaWi1Yk5oeypwLv92fC3i/Wfv2Eg8hAsxH20vCT42c9jnTtuT98Fa/X/DuZa8WBiXBYzF5GiYSmmXtnjRWFb9D9cgzuUA8406v9" ] }, "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_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"name\":\"TipCrpQuota_b6acf4fe-af99-4dfd-a806-a126bf05eff1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6?api-version=2021-01-01+129": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244?api-version=2021-01-01+44": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1802" ], - "x-ms-client-request-id": [ "dc7db9f1-26c8-4331-850e-3658a79dad06" ], + "x-ms-unique-id": [ "2450" ], + "x-ms-client-request-id": [ "9c97d44b-38e5-4b9b-bd6b-2b65536763e8" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5523,35 +1953,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "897806bb-b167-483b-bd87-7d7ca7f98d16" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13937" ], - "x-ms-request-id": [ "897806bb-b167-483b-bd87-7d7ca7f98d16" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:897806bb-b167-483b-bd87-7d7ca7f98d16" ], + "x-ms-correlation-request-id": [ "9801c0b2-d446-4bef-897e-4b7b27574e02" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14100" ], + "x-ms-request-id": [ "9801c0b2-d446-4bef-897e-4b7b27574e02" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:9801c0b2-d446-4bef-897e-4b7b27574e02" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxYg4DnytM5kjhBYhyZFD8AdlXGYLYdB8NFnew9UJTMxbHIWEKyw9S+cC32O+tquVJ+mEAaQbRxQZRP17QBGRkfSzQebJODoOXHMfS0C8gbu4ZzBiy/t3p9DNHFK6VlmISKMKKRHjNxNBTexXlfQ+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCD9DlJaEqaCT+6uefbnsaTj1g5UTGKcbtXZQgXTbG6LdGMmGz14fLFljGPlS+A3dGWUE99hC1nYpeM8XogVlWFXFDXqIRY7M0Mx0hR5G+zcL1Qcn3LZTA/qoiG7Jd4hpjrxN0xHUip/HkMOYXBNL" ] }, "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_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"name\":\"TipCrpQuota_b7eb4031-7521-44be-81ee-d28af22c04a6\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1?api-version=2021-01-01+130": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa?api-version=2021-01-01+45": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1803" ], - "x-ms-client-request-id": [ "09278bf9-9c09-4f96-95ca-98443017b07e" ], + "x-ms-unique-id": [ "2451" ], + "x-ms-client-request-id": [ "5a8a26c7-9797-4110-aaca-d6581f8a3e1a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5565,35 +1995,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9a5d99fe-d0a6-4962-a1ab-8e673a829d91" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13936" ], - "x-ms-request-id": [ "9a5d99fe-d0a6-4962-a1ab-8e673a829d91" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181604Z:9a5d99fe-d0a6-4962-a1ab-8e673a829d91" ], + "x-ms-correlation-request-id": [ "564af100-eaa7-47af-8238-82c0397d5075" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14099" ], + "x-ms-request-id": [ "564af100-eaa7-47af-8238-82c0397d5075" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:564af100-eaa7-47af-8238-82c0397d5075" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQukzeOGRO53yhISznilM4sXYC98N8JszngSJwPAXeUyBNUmWdH9LkcOcR5gHHtjJv8t/EIQmv7qX1jvJdNxJJAo1YdVrBNklxoKlGqxoTLTOzbx7Fw7NPC0EtPpBiNvA9LmIW6KBrU6KyXBfyGoE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1Lv9yyPUxu6H9gws33FBnTqXi16FLLgkKda3FLl2zEufh4+YyRF54cCKAmtREx6Ot7MKj0Gzhqax91692okm5YcnE81q/QwgUpRCd3XHU4ms+Of81TwiWdsrApYrUW3VE12JrDOaG4rvMifwBkkP" ] }, "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_bc07765f-c3f5-403d-8852-a26378a74da1\",\"name\":\"TipCrpQuota_bc07765f-c3f5-403d-8852-a26378a74da1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_bdcc1b78-2d6d-46a2-94a0-be114c75a872?api-version=2021-01-01+131": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1804" ], - "x-ms-client-request-id": [ "d3c8cc35-eb3e-4fb9-afd7-8f0f9a607c7e" ], + "x-ms-unique-id": [ "2452" ], + "x-ms-client-request-id": [ "a3067bc5-ddf5-4e54-9997-06cadefb1cde" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5607,35 +2037,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0ba6f3cc-859a-44ed-8d67-6856abc67da7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13935" ], - "x-ms-request-id": [ "0ba6f3cc-859a-44ed-8d67-6856abc67da7" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:0ba6f3cc-859a-44ed-8d67-6856abc67da7" ], + "x-ms-correlation-request-id": [ "fe1400c7-db10-4b1c-a5d7-61264abd8f78" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14098" ], + "x-ms-request-id": [ "fe1400c7-db10-4b1c-a5d7-61264abd8f78" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:fe1400c7-db10-4b1c-a5d7-61264abd8f78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsCWh4T47mUdSf9yh9eRmhK/5oj3O2RBbB1fS83Xogj7OjbEoojYJEKIQQ1kC2yNzHhXqTwxl9b/4DF5ru1py6sOlyEK+4nsdxYawclnaEIL9XV+BNOdCCaCOu78W78nAy1mr3N5bqZ0Y/VLbq30k" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhtrcohXvxhuX4OEO0GBk9EhUGMQKTFz8cdHz7WQ6+ytb7Z+785Oa0SLx6Ho+eiMLbS0hRXGPrkrQtHYwXclx50ahzHADi3obvd9HMVVdxWki3JnVLyt/4uFgBRv0s/8oR49Q22nom5qQX3Z+h8N9" ] }, "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_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"name\":\"TipCrpQuota_bdcc1b78-2d6d-46a2-94a0-be114c75a872\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_be5ee740-2d22-43c6-ac91-f1dae52d9725?api-version=2021-01-01+132": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1805" ], - "x-ms-client-request-id": [ "6dbbe04c-9bd6-4b93-b6b5-f9bc7dd944c1" ], + "x-ms-unique-id": [ "2453" ], + "x-ms-client-request-id": [ "00ae6065-ec7b-4a32-9383-d56bb6ae07de" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5649,35 +2079,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0eb1ae86-5905-42da-9345-2bc85a7c8922" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13934" ], - "x-ms-request-id": [ "0eb1ae86-5905-42da-9345-2bc85a7c8922" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:0eb1ae86-5905-42da-9345-2bc85a7c8922" ], + "x-ms-correlation-request-id": [ "5563a073-f6e6-47e9-b3c3-91c9d29ffd28" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14097" ], + "x-ms-request-id": [ "5563a073-f6e6-47e9-b3c3-91c9d29ffd28" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:5563a073-f6e6-47e9-b3c3-91c9d29ffd28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvucQ417ZnFr3+1os27AEx4uelxEr/chCf88i+dfwivtdXvbfKXck9yeR2jcSrVm9jKP469WGPcbtfWpJjLVz2DWGZpOWYpjgrSeZLr6o36YAdaHlOPZAY2Jqdtjvu2OXYEVDjEnif40uwxHz2O0ss" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLiacjdFon78vK+Lfr+yA7ICNVxjRaP39r5OfF9DzBrezyt5ceBKCDRXyuCjlrg1T2a29d67qyf6eczVTcfUK8uSNRSSbQZL3VVdHF0nRDD4tBj1oMAzbdZxTPJ2v+rowEat2Xb4qlmXnJADuZay1" ] }, "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_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"name\":\"TipCrpQuota_be5ee740-2d22-43c6-ac91-f1dae52d9725\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_c165e2db-eda5-4d07-8cea-881bf962ae20?api-version=2021-01-01+133": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1806" ], - "x-ms-client-request-id": [ "5e4478f0-a37d-4176-ad7e-d83cf2df087a" ], + "x-ms-unique-id": [ "2454" ], + "x-ms-client-request-id": [ "1a8145e0-b5df-40ce-9019-cff56b24ac7e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5691,35 +2121,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1b1d0fda-5180-46cd-8b22-d330fcf0980e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13933" ], - "x-ms-request-id": [ "1b1d0fda-5180-46cd-8b22-d330fcf0980e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:1b1d0fda-5180-46cd-8b22-d330fcf0980e" ], + "x-ms-correlation-request-id": [ "790e22cb-dc37-416e-8604-415648bdbb34" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14096" ], + "x-ms-request-id": [ "790e22cb-dc37-416e-8604-415648bdbb34" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:790e22cb-dc37-416e-8604-415648bdbb34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:04 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPHZQD/XcY0iKAq3aq8kaOf5fiXkiSmvb6glpOYC5bwBlplsD9cj2SFqiPOP80rOIfLnd9JjgJqFymXKa1IySzKJ8FjHYRFwj6XeNvyghbAMKQ5vFTKtV2n/Qs1M/6CtrzwMLYyPnPXLShMtEIduD" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvg9RaZzA94NX/folILI7G+Hr6iFDYUGgj9iII8kon46YSSqji58ggNJxU35Pci426AoxDfee3jILX4CpIb9QIPVKg+Hdf9S9HJDuUmx+FZKmAWiO0iEz67psuZFOD9THHx9I9woaggEw0mVYwVhdm" ] }, "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_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"name\":\"TipCrpQuota_c165e2db-eda5-4d07-8cea-881bf962ae20\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451?api-version=2021-01-01+134": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1807" ], - "x-ms-client-request-id": [ "656c5875-dede-4085-9a94-16cc1a778828" ], + "x-ms-unique-id": [ "2455" ], + "x-ms-client-request-id": [ "ac38457a-ca7d-4ed9-8517-46ecb9cba0a2" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5733,35 +2163,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "539be1b2-1207-4754-a6fe-64519e3fbbf2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13932" ], - "x-ms-request-id": [ "539be1b2-1207-4754-a6fe-64519e3fbbf2" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:539be1b2-1207-4754-a6fe-64519e3fbbf2" ], + "x-ms-correlation-request-id": [ "a4829b91-afb6-4de5-89b7-27d48879f492" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14095" ], + "x-ms-request-id": [ "a4829b91-afb6-4de5-89b7-27d48879f492" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:a4829b91-afb6-4de5-89b7-27d48879f492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYk5F97fjbPIrNc3Kx930PdlALt/aQepSaRY0Eoy2AFjX6qg+wAQzMMU1qYQu8RfGFhkiAO8Dr1XHOpq8m109JAWYHKGABA7M1OYRXy2PPBqDtscI5Okr3ZrodwC/LB2uKOSr8uct6hBcJWVMrsN2" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVVhUXXoQRGXQLUHOgGsto2DAaZnX5loQ7pQsp2q9OgSOtvRzlN9zN9wid9IQtPkMhtVgufJZ7mTROjeAiDkzXqetBJD5Id3RyRNStQ/w3+1ci/5WWp+n2V/R9nI7o1e9iALREdkZl8jcXAShlFGA" ] }, "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_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"name\":\"TipCrpQuota_c21d7c91-e5e7-44aa-b99d-cb1b5484e451\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d?api-version=2021-01-01+135": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1808" ], - "x-ms-client-request-id": [ "1cdbc59e-2a40-4b9b-97cb-d90b0caedd76" ], + "x-ms-unique-id": [ "2456" ], + "x-ms-client-request-id": [ "1f19d029-16bf-4d7b-b4c2-69efc4814ecf" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5775,35 +2205,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5c55a66d-4c48-4e61-925d-ae8b85a33ce6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13931" ], - "x-ms-request-id": [ "5c55a66d-4c48-4e61-925d-ae8b85a33ce6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181605Z:5c55a66d-4c48-4e61-925d-ae8b85a33ce6" ], + "x-ms-correlation-request-id": [ "a0f767f1-d8c1-479b-8cbf-021002fc5e90" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14094" ], + "x-ms-request-id": [ "a0f767f1-d8c1-479b-8cbf-021002fc5e90" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:a0f767f1-d8c1-479b-8cbf-021002fc5e90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5UDHRAPelxll+3fPReOwlRp43g40x83gsR57htVP8L5teIWCSrDYLAtxuOgre2eG2ARkgOPDv16Rid8Mh2izN6sQyeesb9M7DtwjHjOMvMq04Bi8l9hCBEKdPhZX0WA1UZOz8rnqq0T51l/3xDRT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvM4bt1GxE+HfSNY8KiQZNI3D31gRjZLlqb3k6cGfDuAgc4PrrYPC5WoI4j8D2hDYHLTonLAr63jbQ6vJGI/0uvhfCSgdBMsoql3vrvUobZIKAbe9IJjM33l1CfH3lQbjrb7aGID3NIelE9ENFeYJc" ] }, "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_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"name\":\"TipCrpQuota_c254bdc6-7f84-4e3c-9f24-45ee4fad6f4d\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_c3962496-e060-45e6-b892-428bd15fba06?api-version=2021-01-01+136": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1809" ], - "x-ms-client-request-id": [ "600528c2-1441-4583-8f9f-ef7126bcb621" ], + "x-ms-unique-id": [ "2457" ], + "x-ms-client-request-id": [ "3091d02d-069d-4f9a-897d-6b8cb7d9feef" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5817,35 +2247,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "79fc33bc-bdc6-4794-9c21-a89788197cc0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13930" ], - "x-ms-request-id": [ "79fc33bc-bdc6-4794-9c21-a89788197cc0" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:79fc33bc-bdc6-4794-9c21-a89788197cc0" ], + "x-ms-correlation-request-id": [ "31dd4c9b-4a08-4e05-82f7-5ae372d79ea5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14093" ], + "x-ms-request-id": [ "31dd4c9b-4a08-4e05-82f7-5ae372d79ea5" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:31dd4c9b-4a08-4e05-82f7-5ae372d79ea5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvldbvZXt1L/3HVnAJbW03P4OYshtH4QMylybdAuSaPur9VmfZpnaWY5cuDLUNcTCClEhVIdMM0cx/sf8B8dAdq6sO1YMnUKyI1B2Hm/pd1MpnLG4oDPlRsjqUoZKNfZKIzUFGB3S71E3VxVwdXqCZ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrKlouD8WLMckuMNJpxRR7WFh0i3rvznscoT8nKlOuMQ1BR+Fvgd3VvGDo8Shhuy2Oodp9GNitqVLDqfpywOESbDbT97IsQe4A2h8jz/SPxLLDlZXRG8yp01YINa7d7ywcIpTwSXRjSFioBVPt7kw" ] }, "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_c3962496-e060-45e6-b892-428bd15fba06\",\"name\":\"TipCrpQuota_c3962496-e060-45e6-b892-428bd15fba06\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_c4c284fc-2457-47e4-9274-9a1d15b27849?api-version=2021-01-01+137": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1810" ], - "x-ms-client-request-id": [ "09db6efe-527b-45b9-a8ea-6885048275cc" ], + "x-ms-unique-id": [ "2458" ], + "x-ms-client-request-id": [ "c5c3b774-0932-4aeb-9ebb-b27e0acda073" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5859,35 +2289,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "629d3e8b-8a20-42c6-82c1-58dadeb139d5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13929" ], - "x-ms-request-id": [ "629d3e8b-8a20-42c6-82c1-58dadeb139d5" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:629d3e8b-8a20-42c6-82c1-58dadeb139d5" ], + "x-ms-correlation-request-id": [ "9d996ab4-17df-4029-8c0c-98d95e0ef873" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14092" ], + "x-ms-request-id": [ "9d996ab4-17df-4029-8c0c-98d95e0ef873" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:9d996ab4-17df-4029-8c0c-98d95e0ef873" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1B33BE0BIXzY63avwdpIuIfh7+5EKhgfGnPJB3letFjEvlxuQUl6+Jlkz3bLmZXH/Ev51hChXQdbHVfKmZzDDhhuGUYOpmqU4ba+Aff+HBH1yRfVVgfkfuHwON3o6f9dFATX0slge7qfeKw4QXKk" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoQEp0/EO92FZoAbQHjSdcXf81/FB5rBwTrPlKcmmNczzw6GAXbInZDuc647dKP6d3W8/kGd9Ppt05E3n4LqIoixPSjh/Dt5aGMjtBFdzuQkfMp2pqM4DPML36XOn3Hf3W/AASzFTenf2jpZMQiKj" ] }, "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_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"name\":\"TipCrpQuota_c4c284fc-2457-47e4-9274-9a1d15b27849\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_c5117940-85df-4e95-8295-08b129c4230a?api-version=2021-01-01+138": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1811" ], - "x-ms-client-request-id": [ "4338d7aa-f871-4343-8c6c-c85148f33e0f" ], + "x-ms-unique-id": [ "2459" ], + "x-ms-client-request-id": [ "a8fb73c6-16bf-4036-9be7-16867703c085" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5901,35 +2331,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "05447433-eec5-4e17-b502-1045ad92928e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13928" ], - "x-ms-request-id": [ "05447433-eec5-4e17-b502-1045ad92928e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:05447433-eec5-4e17-b502-1045ad92928e" ], + "x-ms-correlation-request-id": [ "126f306b-ec3f-4667-bed0-0fc4e0a9e73a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14091" ], + "x-ms-request-id": [ "126f306b-ec3f-4667-bed0-0fc4e0a9e73a" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:126f306b-ec3f-4667-bed0-0fc4e0a9e73a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:05 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcOuprxPVh70ahquOkyGWqCMX46rigEa5BWmCOVoNlSYqEpPjiVnvLg0IXlD5uWPi77UMA4an9UKXJx7TmcIABCGP8oiagR97dv0udCx0VY5mgnXZ97cIu14FXjQp69oxmZc19zyHPjUKpqn7NA9C" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOjiHnZXVUG4lAjbY1iCq2Na8cFHRb/jDCeMt45C4bzW15RkbxTFzigI9cez2Pv1On355AtbYW+ZjpbgiGAHHKXGfp1MPyJ1hCp/UgmW3QcIdAbsZiEovbkP+MAhBU6BRXH7im4wbhw09FVReq+D8" ] }, "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_c5117940-85df-4e95-8295-08b129c4230a\",\"name\":\"TipCrpQuota_c5117940-85df-4e95-8295-08b129c4230a\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_cb03095f-8f9d-4551-b722-3dfb7f705df3?api-version=2021-01-01+139": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1812" ], - "x-ms-client-request-id": [ "9ba283be-d61c-40c9-ac58-17b527a3f607" ], + "x-ms-unique-id": [ "2460" ], + "x-ms-client-request-id": [ "7d9f3c88-a705-4a3f-91b4-a4932f9ca92a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5943,35 +2373,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fc45ffd8-6e99-475f-bf79-e6b6b9f5e0a9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13927" ], - "x-ms-request-id": [ "fc45ffd8-6e99-475f-bf79-e6b6b9f5e0a9" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:fc45ffd8-6e99-475f-bf79-e6b6b9f5e0a9" ], + "x-ms-correlation-request-id": [ "cd3a2a7b-dbf6-4fb2-a690-bf5d350c692b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14090" ], + "x-ms-request-id": [ "cd3a2a7b-dbf6-4fb2-a690-bf5d350c692b" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:cd3a2a7b-dbf6-4fb2-a690-bf5d350c692b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/GjDii+ZWGagUB0bYoWGkpOcKZfriOqMQbyWDXyQdUGA2MsK8lXAVDnZrwPJ1Q+fMLMzBLwD9TIa3bcs9PBOuxVf6vkwPvU1pEPn7RarSbkLc1XYTp8rRzhTPqH7Tx3FteGjmhA7+EAP3ef/zWAQ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmcvuR+sfXqTL0F9G+efucQAaCJuVUnwKDLJPbZ4JfrJG0ofKoyYulrc966gJxBtYMIm27hwQnbXPVad8lgqjicL1bCdbh/AAY7Y9ncDAL/9Qx2uFN30yxj/luAV5Bk0SDbgyqFdNO547Q9hCPd6B" ] }, "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_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"name\":\"TipCrpQuota_cb03095f-8f9d-4551-b722-3dfb7f705df3\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_cc53a3f4-8de9-4044-9217-0ce511b400e8?api-version=2021-01-01+140": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1813" ], - "x-ms-client-request-id": [ "45de546a-7b8e-4628-8a40-50c9c280c79c" ], + "x-ms-unique-id": [ "2461" ], + "x-ms-client-request-id": [ "ac3c4c1e-5e4e-41ed-a8de-ee93e107ec25" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5985,35 +2415,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cb0743f5-efb2-4297-9900-121baef5a119" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13926" ], - "x-ms-request-id": [ "cb0743f5-efb2-4297-9900-121baef5a119" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181606Z:cb0743f5-efb2-4297-9900-121baef5a119" ], + "x-ms-correlation-request-id": [ "a2a7dc43-d892-4263-96ad-0428f09178d1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14089" ], + "x-ms-request-id": [ "a2a7dc43-d892-4263-96ad-0428f09178d1" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:a2a7dc43-d892-4263-96ad-0428f09178d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtp6H4MUaqniLKcGz5v40+dyJuSfldvJa0NiKXbdQ061u0o11lvFEsfke37q/Ul4wB2D9r5m1AURQsqaq3F3zxZiRtppdBRCP4fN9J0Uc9PEBSwylCLt2J+CfzJ6api6RvPYrxWICZ/wUd4IDCyv5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvASmnjpTf00wE2rTLGWUBUk0FGGcNrtZk0mMVbPttLv3aYhcyhvTJ1ZdnC2Ir3fzEOaiJt5Er/c0WHHdHvdxglfA0Bp4PgbecmQftmVPx1Co55xGaCy+E/KfgUpN5GI93LCV2p2qN2NTXMTwH04o8" ] }, "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_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"name\":\"TipCrpQuota_cc53a3f4-8de9-4044-9217-0ce511b400e8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_ce5efde0-630e-4b5f-b412-efb5f919b668?api-version=2021-01-01+141": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1814" ], - "x-ms-client-request-id": [ "4c82d5ae-b01f-4a2e-bbfb-5701d1d96bbf" ], + "x-ms-unique-id": [ "2462" ], + "x-ms-client-request-id": [ "23e373f1-bdb0-4476-9c86-f73b1aec82c6" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6027,35 +2457,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a6ae7d14-ecce-49d2-b281-a2b4046018b7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13925" ], - "x-ms-request-id": [ "a6ae7d14-ecce-49d2-b281-a2b4046018b7" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181607Z:a6ae7d14-ecce-49d2-b281-a2b4046018b7" ], + "x-ms-correlation-request-id": [ "ead6b6bb-c2bd-4e23-ade4-c8301e4ed05f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14088" ], + "x-ms-request-id": [ "ead6b6bb-c2bd-4e23-ade4-c8301e4ed05f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:ead6b6bb-c2bd-4e23-ade4-c8301e4ed05f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4NIyKMn3n1eOZYcPH/nrfDVaD38xMnYgJoQgN+WWnuCSCJPmsPCpj6ee9R1n1IB0hckZcTxUAsS8tNXW2PYHKygCHgi8QAHVQ8k4CMHgdhyyZdwx4jMwnzSDHPqLzmlDvpefalxOvXscYIBg3Irf" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi9ru2UlyLW774lCuQa7mYHWNDw9mwGQPgB9iwDPAWZZwRzEXkfjAGX1t8FZCvKhP458RQKPEvUW9tOarmruX1vSkTjaiXz6tMqBmfC5C/t+8IUh7sM4FkSSfPTOcRwyJWcxhzNBi6YSlmtPSnQ0s" ] }, "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_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"name\":\"TipCrpQuota_ce5efde0-630e-4b5f-b412-efb5f919b668\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5?api-version=2021-01-01+142": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1815" ], - "x-ms-client-request-id": [ "e35f40c9-3cdb-4722-a652-e6134ac8f191" ], + "x-ms-unique-id": [ "2463" ], + "x-ms-client-request-id": [ "d643972b-2846-444d-8bdf-c4af7074a710" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6069,35 +2499,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1a5b0980-0f76-45a7-9f09-8c9e94c547ef" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13924" ], - "x-ms-request-id": [ "1a5b0980-0f76-45a7-9f09-8c9e94c547ef" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181607Z:1a5b0980-0f76-45a7-9f09-8c9e94c547ef" ], + "x-ms-correlation-request-id": [ "7a1b132a-e270-4557-ab98-ed4c0d7b8d06" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14087" ], + "x-ms-request-id": [ "7a1b132a-e270-4557-ab98-ed4c0d7b8d06" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:7a1b132a-e270-4557-ab98-ed4c0d7b8d06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8dAFD0zan9FOHoz0FtogNqKEZueONPPrBmlTUQIQo2TwKCPw1wpdQLp0ExytSxpiYgMIrAHYDDvIQYkcFsvdQbcd+w2/kPVwnCQHU83CuuIrUb+92ThRO2jzAt2uxkXW5bor+KT7NdyLuWraPlgd" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcj2nadVo+6WO3lpYqoaHGys7A+29QhKU4vN03NdedVHJE7TN5F9+tmFyWlo1wupyHKOHburyl9XN7+yvP4vzE5WyQWoUFgOcaseauAFyumQRJMG6OflBNHHwSvsZAoF+qzgOc9ovAGffeeij0MNh" ] }, "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_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"name\":\"TipCrpQuota_cf2ddb3c-1718-4737-accc-be6da3d4f0f5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_d2067eb1-4c75-403c-bddf-ea1bd69ec838?api-version=2021-01-01+143": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1816" ], - "x-ms-client-request-id": [ "4ea514e9-b2f7-404b-8a3f-402510f2ae50" ], + "x-ms-unique-id": [ "2464" ], + "x-ms-client-request-id": [ "d2cdfa8e-0ea1-4122-ab38-548c893a2381" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6111,35 +2541,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7c921ce2-978d-4f45-b1e5-315273847d47" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13923" ], - "x-ms-request-id": [ "7c921ce2-978d-4f45-b1e5-315273847d47" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181607Z:7c921ce2-978d-4f45-b1e5-315273847d47" ], + "x-ms-correlation-request-id": [ "4aa9c340-e4a6-4037-9c24-c6231a04a70e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14086" ], + "x-ms-request-id": [ "4aa9c340-e4a6-4037-9c24-c6231a04a70e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:4aa9c340-e4a6-4037-9c24-c6231a04a70e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:06 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKDCRVfIj4f+o53/uL5CtMTDsVzNH7E2frDp6q1fWmwL6iGf/gg2AsPeeaz1oYmBGQdCy/yc9LSETd6/81tQbqNZPy6nYopKctEhGuEgO1USZvli1HRkI1bRRIN3pd1ikF9M+2uE5d3oy5YEO1E0N" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMFCKJE2fCCeYT84vjVeC1MRb4o6FvKsyIXq+jNerI8pilQOhXUVBNib+Az7wf9/F54glSxx3N7duJb6lge2vyQu8O/yxJZqDWz/FIZsM+yDuVnZ2xW2mjNScw1NbiOi0txZAZbLweaJ0I8EFJSbb" ] }, "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_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"name\":\"TipCrpQuota_d2067eb1-4c75-403c-bddf-ea1bd69ec838\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c?api-version=2021-01-01+144": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1817" ], - "x-ms-client-request-id": [ "2229ee20-f3b2-47fe-8c50-a1466fae8311" ], + "x-ms-unique-id": [ "2465" ], + "x-ms-client-request-id": [ "4f48686d-60b2-4149-b6e3-d98c7a3d0ec9" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6153,35 +2583,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "60ee5271-42c8-42bd-ae3a-f34269049750" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13922" ], - "x-ms-request-id": [ "60ee5271-42c8-42bd-ae3a-f34269049750" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181607Z:60ee5271-42c8-42bd-ae3a-f34269049750" ], + "x-ms-correlation-request-id": [ "7bda6d41-a747-4c17-975e-21a570c2f7b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14085" ], + "x-ms-request-id": [ "7bda6d41-a747-4c17-975e-21a570c2f7b4" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:7bda6d41-a747-4c17-975e-21a570c2f7b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnK9IglBDY8fPJZ6/dJIdzmIpM3cpWaVDv5/WNGlqy3npxE3wzCM9iy2UzBbxl0v2K8iTzPcwUIYZ2npmmrOHDEDAkh4ZRpZrjupdcoySFFdYTkN6XslqLnZQjTYtF+ha/GFQu+f5wqCm5mjivyiy" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+LT1qbbSnNaNDTFER6hcNVM6S5N9iJ0w+x5ZSQBD/UJEJKUukiOhBgCllEsd3SY3yBZiGuhF7RHGuS1ueEC984/TKYgxUG13OglLCylkVkfZ/ywtIpctcM/lF31D8V7EwMowq06eVurxoIO3ZHIf" ] }, "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_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"name\":\"TipCrpQuota_d22d990c-4cdb-4538-a9e2-e7ac12c8d47c\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_d31939a3-dd47-4d7c-8238-8d82796cd765?api-version=2021-01-01+145": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1818" ], - "x-ms-client-request-id": [ "6f1fe36e-1e59-4b87-a52a-54021703517c" ], + "x-ms-unique-id": [ "2466" ], + "x-ms-client-request-id": [ "c56b1510-3bd3-4319-84e0-e7d5a3a4d851" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6195,35 +2625,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8d0469e9-a9bc-4426-8ac3-17ad6a15cc20" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13921" ], - "x-ms-request-id": [ "8d0469e9-a9bc-4426-8ac3-17ad6a15cc20" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:8d0469e9-a9bc-4426-8ac3-17ad6a15cc20" ], + "x-ms-correlation-request-id": [ "040b4cb3-78ac-4cb0-9a46-194ead0d17ed" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14084" ], + "x-ms-request-id": [ "040b4cb3-78ac-4cb0-9a46-194ead0d17ed" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:040b4cb3-78ac-4cb0-9a46-194ead0d17ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJWlo9jaaSgNoy3eHc++2Z2r7ytB/RcmAw7GcrfrYknRPobgJcpFjvC3HNnYq0c/RWFWY/FtZ+Tm8zrgWBETWrklKJlylNNVXn30SSmCozQyP5G65KloouE2Par5lmnaO4iVUJ2V4mg54gPRzzpwb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOnLdY5+PtUSyqCezsLD8DK+MoEqzcfAJBFRhIrxa6r371wQ96FYEN8nm/ZQXo0FbZPasdE4o4nG5kpjr36G4YUKx8qJTWvJNqOJHS8s4e5L4KYVvaKO3mnxgxpfXTQg2vYUA2n6V+S/mJhTHzaqE" ] }, "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_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"name\":\"TipCrpQuota_d31939a3-dd47-4d7c-8238-8d82796cd765\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_d47b3132-f356-4b72-a8e9-f915289d622f?api-version=2021-01-01+146": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1819" ], - "x-ms-client-request-id": [ "4f823276-1aeb-42f2-b08b-2bbaa20b03af" ], + "x-ms-unique-id": [ "2467" ], + "x-ms-client-request-id": [ "a2401554-f5c1-4da6-84fe-578828dcf88b" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6237,35 +2667,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b0feecac-729d-4666-a3f2-94b333e33076" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13920" ], - "x-ms-request-id": [ "b0feecac-729d-4666-a3f2-94b333e33076" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:b0feecac-729d-4666-a3f2-94b333e33076" ], + "x-ms-correlation-request-id": [ "23afd8dd-798b-452e-ae30-6b5e7a30405a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14083" ], + "x-ms-request-id": [ "23afd8dd-798b-452e-ae30-6b5e7a30405a" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:23afd8dd-798b-452e-ae30-6b5e7a30405a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi6No21qUmqQAA8cirds/NL/gFoMYPqoOR7Y2Sf07kgjVoMmUb+GgaulHc0fLtInl5NECPNgMghE6GdMUzZewVJZ1ycIfdGxBP0RhwY9AZpSaz55m9pziUgRPSopKAJfSbal2ItUqBdgSxNLYq6NJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv98QWeBXy59YibfMNXpxeClnv/qUAxIGk+syR4Ev3Qi3PvVQfIv49/VyGcLiapthswUzFqHkp2wXzqArOJG9CzlZpvSWXlp1ixQ6d3CscoP3yW9SXmhYqLd1f58v7+noxD+SVF1PJkD3ta30T3H+7" ] }, "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_d47b3132-f356-4b72-a8e9-f915289d622f\",\"name\":\"TipCrpQuota_d47b3132-f356-4b72-a8e9-f915289d622f\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_d531b176-7bcc-4f7f-8188-07d44ac1c557?api-version=2021-01-01+147": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1820" ], - "x-ms-client-request-id": [ "956b2d8f-2782-4c0b-9266-054d96bd5f82" ], + "x-ms-unique-id": [ "2468" ], + "x-ms-client-request-id": [ "40267d03-f776-4ffd-b6bf-1ae5fd2ece53" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6279,35 +2709,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6f4f39c2-464e-47e6-8537-d90fe0f703e9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13919" ], - "x-ms-request-id": [ "6f4f39c2-464e-47e6-8537-d90fe0f703e9" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:6f4f39c2-464e-47e6-8537-d90fe0f703e9" ], + "x-ms-correlation-request-id": [ "8b950682-5bec-425c-83ee-7aa26f856155" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14082" ], + "x-ms-request-id": [ "8b950682-5bec-425c-83ee-7aa26f856155" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:8b950682-5bec-425c-83ee-7aa26f856155" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvILHrXVZtxnr90hCDCpXm3f6O/yvqWT3nTvXvUjlRyA/VBp2l515+uUwEKnYmq2SDE8/16QgTnWuQ+5STHUygaKL40DLffjWYi1AlNYR0G/7UXZ07BgdAgopPBUqt2GNMp7Hum6P02E1wMj/jda69" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCzkMrv9R6gFlBZYqaQyj9Vi4BICZX5wGczk0k+pd+ftfqHAedPbFPsq6s7LG2fZF8JUSjipdqKXWfYSWl/6R/ianxQNyVd3t2OWbekCcS8KQkia8kDZXx9dXTN2AaCn+ZWKPTr7zoxnpOh1dxwhr" ] }, "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_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"name\":\"TipCrpQuota_d531b176-7bcc-4f7f-8188-07d44ac1c557\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_d6a38e0a-d969-4557-ae43-e65e667f66ed?api-version=2021-01-01+148": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1821" ], - "x-ms-client-request-id": [ "e021d5df-6328-4717-83e1-2dabe353d69b" ], + "x-ms-unique-id": [ "2469" ], + "x-ms-client-request-id": [ "1aa6ba28-37b4-47d3-91f0-deebd3f5e3de" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6321,35 +2751,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9abcc40c-0f56-4b6e-a7f7-a3d01da3f9f0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13918" ], - "x-ms-request-id": [ "9abcc40c-0f56-4b6e-a7f7-a3d01da3f9f0" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:9abcc40c-0f56-4b6e-a7f7-a3d01da3f9f0" ], + "x-ms-correlation-request-id": [ "e01a8afc-3b06-48e5-b25d-d9b1dbbe4c9d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14081" ], + "x-ms-request-id": [ "e01a8afc-3b06-48e5-b25d-d9b1dbbe4c9d" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:e01a8afc-3b06-48e5-b25d-d9b1dbbe4c9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:07 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvl67cgF58KSHwze7TU7+EEBz3BnS0m/81N/jqtKnjNUrO71iOEN+YK6JImVfje9O6zd75KCmdeLEI69mUZGFAweWxyyZ59xaUmiczRtwwXeF3S8jgX0Uw2EaLUEHB718xw2iqkaIcW6BP7EN8NJL3" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBDQQWca4QqYmCxJy4C/u3YH1hizF3auxwQfYmK6WYrUx4SoQaPhtXm5PK0uLkUuwGPaFPZGeOXyb1bx08vfC+cO7qgdmDmEW/iXivTTCri/tStodKt5d//FB6FJDPouhEi1fZbg115MaEs6rigRc" ] }, "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_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"name\":\"TipCrpQuota_d6a38e0a-d969-4557-ae43-e65e667f66ed\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_da03fa8e-7441-4644-9f24-afe801c60e0b?api-version=2021-01-01+149": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1822" ], - "x-ms-client-request-id": [ "26089dc4-aafd-45ba-a1ea-d3c81307b221" ], + "x-ms-unique-id": [ "2470" ], + "x-ms-client-request-id": [ "62bcc876-85fd-4bee-ac88-c178936039f9" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6363,35 +2793,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a16ded33-33eb-4a09-b762-f9ac6a424959" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13917" ], - "x-ms-request-id": [ "a16ded33-33eb-4a09-b762-f9ac6a424959" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181608Z:a16ded33-33eb-4a09-b762-f9ac6a424959" ], + "x-ms-correlation-request-id": [ "c319aa39-5901-4492-b527-c90103c026e2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14080" ], + "x-ms-request-id": [ "c319aa39-5901-4492-b527-c90103c026e2" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:c319aa39-5901-4492-b527-c90103c026e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgeXAIHLI9bXYCs+dbRYFnauTf9sck4xePUuPhDKDae05OrpGOfF8teP5Ul9/84z/+CndmrBYGWIGQ9i+7GCTo8Q9zVNntfQyZKQNdAJ1Iu2nBKqTFXLot9x1jiWq8NMGH/UacUOZtCkTLUZEv3+o" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXU1RMiP27YafFRpabEQpnHUL0wthgiG7rNkq6JfPxx2HCzVsjrTEbLIMHUDuK3UCHwKWMMWw8rrLbptY5FGq7OvRQk2PfGmZJF5aIAd2tY7LrK+6IeUgnaG37a0NSeCSiOwxvgjLsrTXD/ce6Ox1" ] }, "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_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"name\":\"TipCrpQuota_da03fa8e-7441-4644-9f24-afe801c60e0b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_de07e417-8c58-4079-8494-7f903c93fb3b?api-version=2021-01-01+150": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1823" ], - "x-ms-client-request-id": [ "8e2888a1-bf78-4c07-b1c0-6a66dee5c984" ], + "x-ms-unique-id": [ "2471" ], + "x-ms-client-request-id": [ "0f8eb634-6b0c-4050-8756-b4986dc621a6" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6405,35 +2835,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "21298880-c8da-4e1f-957f-5f06a8856c0b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13916" ], - "x-ms-request-id": [ "21298880-c8da-4e1f-957f-5f06a8856c0b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181609Z:21298880-c8da-4e1f-957f-5f06a8856c0b" ], + "x-ms-correlation-request-id": [ "c0a59753-ba84-48a4-9611-8c90aeb1d15b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14079" ], + "x-ms-request-id": [ "c0a59753-ba84-48a4-9611-8c90aeb1d15b" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:c0a59753-ba84-48a4-9611-8c90aeb1d15b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk7Wwd9nvK35LMHL11MAY8EpaW8YYDLRV8Qrs0+1VcEuu8E6JlyvHtFijAgX0+sSZoo0lw9No1JLNtYsCdgMKhixWd7A1uGnk0M5vu9z2RAr3Zcl0/Uu/Yr0BKA0HhSoMyPrrNjan/MtImXZiEk9s" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ6I41OfjUGXA/ApqPYGK3DSAT5d9jMgJ4nXNqO5uH3qO6q7M6IrHkISbBkf0ye1H4gWY/MBJpxoSN+0SnXpRatokpU1p9481jXLA0VuTcM624Oj1nrqlyV5hwcyuWsMzyrOvJjCvetkiDEWtWkwx" ] }, "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_de07e417-8c58-4079-8494-7f903c93fb3b\",\"name\":\"TipCrpQuota_de07e417-8c58-4079-8494-7f903c93fb3b\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_df78adb7-1839-4e19-aaca-ea67878453da?api-version=2021-01-01+151": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1824" ], - "x-ms-client-request-id": [ "3280804d-0d75-444e-821c-ec8022b9ae23" ], + "x-ms-unique-id": [ "2472" ], + "x-ms-client-request-id": [ "e57e6b82-173f-41c6-a0db-3cb9bbc6a29c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6447,35 +2877,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1423fd24-31c4-48c7-b078-38a17dbe9420" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13915" ], - "x-ms-request-id": [ "1423fd24-31c4-48c7-b078-38a17dbe9420" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181609Z:1423fd24-31c4-48c7-b078-38a17dbe9420" ], + "x-ms-correlation-request-id": [ "caadc135-d012-4bc6-a541-5134e3a541aa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14078" ], + "x-ms-request-id": [ "caadc135-d012-4bc6-a541-5134e3a541aa" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:caadc135-d012-4bc6-a541-5134e3a541aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQOEO0ZtWRy/WgjELclxt8Gi0z81KGlvZ5l1BkMcl7Yix297IBPWEsbtR+IJ287Dp1CWKiCvKednEPI82OuoPq2XypDrLafIGwLzpa/p7wGIWjeI5SaWT1GJuGoRErLSXUGCBh8vqKHvCnwFbYarP" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4k8cuxSbzNEjvMWjzOjfkFV7u/d9JOdrZdCYgXTdAgGDWyYyV32nAPOM0DJgUoTEbXfIhfgVINSe5lswNFuBpvdwswEMybWREgbmX1XEWTeVl5KwYG7TnjSRDL1TrgelxGBR6LR39TbLijuH33Eo" ] }, "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_df78adb7-1839-4e19-aaca-ea67878453da\",\"name\":\"TipCrpQuota_df78adb7-1839-4e19-aaca-ea67878453da\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_e0f19d84-0ff5-4b3f-9273-b77638180d99?api-version=2021-01-01+152": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1825" ], - "x-ms-client-request-id": [ "cc9181c7-fa3b-4310-a8e9-a4cd63a52ea3" ], + "x-ms-unique-id": [ "2473" ], + "x-ms-client-request-id": [ "fa1216fd-73ac-4c2b-862d-5ad537938a39" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6489,35 +2919,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7504a487-f192-4774-893c-5d655789b186" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13914" ], - "x-ms-request-id": [ "7504a487-f192-4774-893c-5d655789b186" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181609Z:7504a487-f192-4774-893c-5d655789b186" ], + "x-ms-correlation-request-id": [ "b8a7b25d-dddb-4038-a2b6-53c1e3c33f89" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14077" ], + "x-ms-request-id": [ "b8a7b25d-dddb-4038-a2b6-53c1e3c33f89" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:b8a7b25d-dddb-4038-a2b6-53c1e3c33f89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpiriMk/iVAvFDIugTkaaW5cCXQ+gWtgwVBBhxu0nQKaXRlQLiHyLx+2LNuUvJZEHG+oH1XBKQj+xV0+ehJiZw+eNXuRIuIUGIkeWiqh8iqcsNFJgqS3w5WH6MqK7x8NERT6gJDOhSY6xDJsC2bry" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT/2+x3F9KIKtaXb4krWJIhsDcrP3QjU3acj4iyOgWuGng85L0MrcSdSZAMsxuDktL16v8RzdYCxPMmFbtAHM8Lq+VbuSbga9urH3ubINQYXl/6B2x8AapyVstVBxLWFj0phcKj35FKlA+Wg8s6Vi" ] }, "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_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"name\":\"TipCrpQuota_e0f19d84-0ff5-4b3f-9273-b77638180d99\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_e4cda532-e0cd-4861-af55-643fcfbc0f56?api-version=2021-01-01+153": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1826" ], - "x-ms-client-request-id": [ "b6696afc-12b1-436b-8196-d921822a3e91" ], + "x-ms-unique-id": [ "2474" ], + "x-ms-client-request-id": [ "8cc33573-f01a-4d00-b8a4-39d12ab723cd" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6531,35 +2961,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "56757562-2d91-41ed-a61d-c5c14a20c915" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13913" ], - "x-ms-request-id": [ "56757562-2d91-41ed-a61d-c5c14a20c915" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181609Z:56757562-2d91-41ed-a61d-c5c14a20c915" ], + "x-ms-correlation-request-id": [ "84389c1b-984e-4be4-b5d2-ddfcd9c0aa0e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14076" ], + "x-ms-request-id": [ "84389c1b-984e-4be4-b5d2-ddfcd9c0aa0e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:84389c1b-984e-4be4-b5d2-ddfcd9c0aa0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:08 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsCec7rx+WI/4iqv/nVkrWQigcjSUg3Bi+a+Wl0YHyZqzBznpDxZPUSolZSf2aC+tSGtOGUWjfvtJvGyTfAwco1wOCHdGx4IiNrUEojnG6twYGdyMf6x1Z3M4fweBv+UfGWUpjt7HNP+Z08VaUx90" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9gDNYT+Ewrx1BoibSgLAjQyQpttVJYiSOuuj2n7JNSYZ1CRapNs+kKwNvzt3s/n1rtASu4ytuaFT9leNNRxgHXBYv0WAosdvuDgtyBaktlz31TN7HefvdAfT8+FIEx+XtCm0z01Nx7xbFgpDc5mm" ] }, "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_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"name\":\"TipCrpQuota_e4cda532-e0cd-4861-af55-643fcfbc0f56\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_e6d6189e-ead1-4145-ade0-f8fc53493caa?api-version=2021-01-01+154": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1827" ], - "x-ms-client-request-id": [ "21f2ae98-f593-403a-a135-36a714df8327" ], + "x-ms-unique-id": [ "2475" ], + "x-ms-client-request-id": [ "c6638668-92c6-4f9c-81aa-8439cb176d07" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6573,35 +3003,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5504f41d-d8c9-4301-b7e5-40aaa6e3dd1a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13912" ], - "x-ms-request-id": [ "5504f41d-d8c9-4301-b7e5-40aaa6e3dd1a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:5504f41d-d8c9-4301-b7e5-40aaa6e3dd1a" ], + "x-ms-correlation-request-id": [ "b78092a3-bd53-4449-b6e4-34714e7975f2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14075" ], + "x-ms-request-id": [ "b78092a3-bd53-4449-b6e4-34714e7975f2" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:b78092a3-bd53-4449-b6e4-34714e7975f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/1yqwngI0/vyXh5xFv69cC4G4tkjUSQ39Y2wG9mb7PfwCsuvgF5bQj+WTl0LNK6lqc4YVeU1GSCszAhGSnciY5n/gIYxmfGhlXnsiQ/tegIcVVIPMp6IyQER6ktYbtNFBxHGWk4GURMXl4lGmv+g" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMVjIFm1fFdWmg1KhMid0ix7sIZZabiks2IRuNHhYCVvV7ftXtfXb7yB08wYjw9ayQb3GfUiMKENJe5nx3gDCnNxpAM42uUCHcK0Hfm8FWDtoryh1T3QYoEu7XcZw8gzQnwGa6F0TUxZsz480yn2p" ] }, "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_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"name\":\"TipCrpQuota_e6d6189e-ead1-4145-ade0-f8fc53493caa\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_e7148f69-198c-4061-9145-883d70ae5011?api-version=2021-01-01+155": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1828" ], - "x-ms-client-request-id": [ "b14e2508-3073-43e9-962b-5166b495f5e1" ], + "x-ms-unique-id": [ "2476" ], + "x-ms-client-request-id": [ "e6b5c6ab-4f10-4dd5-a66b-f533e3b4b2ee" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6615,35 +3045,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b5683fff-8b62-4ec3-becf-ce0063585c6c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13911" ], - "x-ms-request-id": [ "b5683fff-8b62-4ec3-becf-ce0063585c6c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:b5683fff-8b62-4ec3-becf-ce0063585c6c" ], + "x-ms-correlation-request-id": [ "32394781-4fbb-4f0a-b5b1-d7b74a234cea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14074" ], + "x-ms-request-id": [ "32394781-4fbb-4f0a-b5b1-d7b74a234cea" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:32394781-4fbb-4f0a-b5b1-d7b74a234cea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveVAjPZnHVgfwiEuGiB2Srfng3f/SON0OhUFQHxAA3Bb6t1tG5SdFC2uitNlYGtHIBjx2jPZhzCwVSpelZ/aNQ/jq91x15X08ck2MBMsHkt6ebSM0jZbb9WgjCXMV06mqqGfwugCRXd0/Lv1FPvlj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOCOaSVIR69wvqbe+8HgQn1gCSxsiepX13ZfFdJo3jkLMWcls044YqbUyaGpoqxPs1PsdjmA63xv4pY/wlIoZjCvghj/TJG7XbkL/4QzD+bW7lVq65M6LuysVcso3w3gNhUzMuV+LbesQrbYj+rL9" ] }, "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_e7148f69-198c-4061-9145-883d70ae5011\",\"name\":\"TipCrpQuota_e7148f69-198c-4061-9145-883d70ae5011\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5?api-version=2021-01-01+156": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1829" ], - "x-ms-client-request-id": [ "60918b7a-a9e9-4982-a9b2-bb4f393fd58e" ], + "x-ms-unique-id": [ "2477" ], + "x-ms-client-request-id": [ "3144f5a3-0c85-48ab-88a2-3a5493b05ba6" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6657,35 +3087,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "58b619d8-fa5d-4705-af12-851e23d38575" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13910" ], - "x-ms-request-id": [ "58b619d8-fa5d-4705-af12-851e23d38575" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:58b619d8-fa5d-4705-af12-851e23d38575" ], + "x-ms-correlation-request-id": [ "dca231cb-6a9a-4e75-a791-50d94463327c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14073" ], + "x-ms-request-id": [ "dca231cb-6a9a-4e75-a791-50d94463327c" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:dca231cb-6a9a-4e75-a791-50d94463327c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdtbDWha9ZEnVoJkvjJsZ+e9w0htAT0o+VldmG+8etG/gfkIGOkVQQmV7PBSCNRsH4z4Tt0Ld6Z4xztUHPG0GZKzbykVYxwIW2b15YWe9czi9CbIV8roVvUAeWvN3ovRtLGmeKj0KCneyXVmTDtwN" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9QbQ2ZlBaxJfERsRqfL9eV386iN/IJ1lAUDbzquAQlArlsxvoOKd8Hc4GelSBQlDsxgLYRDSwoDS757f6gESXdTbaHKnNo8NHLDHJy94DnxbQkgiuKMoQtPZ+6d0jCcQh/xewXWgOePLmLA7GI2N" ] }, "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_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"name\":\"TipCrpQuota_e77fd175-85f7-4cdb-aaa0-89fd5bab7dd5\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8?api-version=2021-01-01+157": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1830" ], - "x-ms-client-request-id": [ "8beb0337-0961-4f10-9812-818f56721702" ], + "x-ms-unique-id": [ "2478" ], + "x-ms-client-request-id": [ "c22e0df1-d8ea-4d26-b261-91c292cd5c33" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6699,35 +3129,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "76a637f4-1db2-4f65-aea3-41e174661129" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13909" ], - "x-ms-request-id": [ "76a637f4-1db2-4f65-aea3-41e174661129" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:76a637f4-1db2-4f65-aea3-41e174661129" ], + "x-ms-correlation-request-id": [ "8536d844-c727-4ebd-81a4-83310fadafcd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14072" ], + "x-ms-request-id": [ "8536d844-c727-4ebd-81a4-83310fadafcd" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:8536d844-c727-4ebd-81a4-83310fadafcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCczrf0fVGLXT2oj4AEX8RwCKgd64ZaGpWGJUz/Y9jPljnYKQaxt03p7qacmtuFxukuYAkT0/XescS08IHBysNhF9v3/k5IXYobFnrubTRqYTns4Z3Wrtw4fqF5R5PbxMd7w+0tw4KEZDkZDxDBPK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaQ+tpq0E4tn25LzGfEtVNd0BTS6+H6/m9y+UM993bm5CNnsYH0yZLcCc7d+pG16CPfUnhiRsCokq6m+y1k7LFR+X9j8IbnqPnf8lRoX5G3EWJEZLSi/tDNR3ReIXWeJDMQJ7/V4u46L35nmTQtrv" ] }, "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_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"name\":\"TipCrpQuota_e9b68710-c7f0-4a21-94d1-1659c2a03ad8\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_e9c57286-08e8-4292-9050-d79ca8e7b865?api-version=2021-01-01+158": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1831" ], - "x-ms-client-request-id": [ "e54c6d1d-de1d-421c-beac-aec2bac43ed4" ], + "x-ms-unique-id": [ "2479" ], + "x-ms-client-request-id": [ "128c61c4-045c-4b95-a24a-d30f882a9f1c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6741,35 +3171,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2f6f05d6-0bdf-42de-b55a-3d8bd37abc61" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13908" ], - "x-ms-request-id": [ "2f6f05d6-0bdf-42de-b55a-3d8bd37abc61" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181610Z:2f6f05d6-0bdf-42de-b55a-3d8bd37abc61" ], + "x-ms-correlation-request-id": [ "840f1b67-c91e-40f1-bc77-e98856ecdb1a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14071" ], + "x-ms-request-id": [ "840f1b67-c91e-40f1-bc77-e98856ecdb1a" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:840f1b67-c91e-40f1-bc77-e98856ecdb1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:10 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvr/IPweHWjeaWytrQELmSv4DanyOe00tXGOS6Y1LE1l4YeaO1xvv7fVYOvK6K03tnDMRxjrT6U66G7IpN2T7Jkj15BHOdL33Yu9BTcRqulHbWiIVnEuZnOdj1KAK8MQHfyc9Y3sMj92TUoS4cfkBA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6Lv8wfHNCz6NKQ7rE52q5P2Ly0Bmvw+OSBqc95WkYk9ZSiN0eG0jbuStZAvGYiGt3oZ47Lq1DJLr1DKdTpC4vD/FhepIRYSBECLgLxtQc4moaINo+x/mvDeM+MkUZ3spqJZYdKv0PGpXu9L1eKSj" ] }, "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_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"name\":\"TipCrpQuota_e9c57286-08e8-4292-9050-d79ca8e7b865\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_ea4c0f99-0d62-48e0-a317-d283da344fa4?api-version=2021-01-01+159": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1832" ], - "x-ms-client-request-id": [ "c7bb4bf2-8106-4304-8966-6c125df4fcca" ], + "x-ms-unique-id": [ "2480" ], + "x-ms-client-request-id": [ "5302c326-ef99-46ea-903c-a0c0d2384fc5" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6783,35 +3213,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2bda5c6c-e74d-4b5c-b788-364ef1f7c792" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13907" ], - "x-ms-request-id": [ "2bda5c6c-e74d-4b5c-b788-364ef1f7c792" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:2bda5c6c-e74d-4b5c-b788-364ef1f7c792" ], + "x-ms-correlation-request-id": [ "02f446a4-749c-49ad-952d-e338e5eb7f45" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14070" ], + "x-ms-request-id": [ "02f446a4-749c-49ad-952d-e338e5eb7f45" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:02f446a4-749c-49ad-952d-e338e5eb7f45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3WFlFEnkI3ulZ1JzttzZN7PTzG9OB/08yOcg0NvpbojE41GvHOQUNSnVjM57pvfzif6c95hyanx6OTm0haBF/p8lWtf7fvvElp7vGR8pU/pgQcSn+fk+Ebh2X4JEGY8hCbx33PlC+8kvdXsByDBZ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1Jj7k5XD0++zdbESPn/wMTMcnP/gWyB9UHvnJQwJg7jhJuXdYQza9srHlgs8pDdK3QRWAxPGErvol8HT9YsJ+bAd2787ObsFgh9WWqNxMXeAiBAZqssXijAsByfn0P0C4/XzS1+c9+lhVQT1wUdP" ] }, "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_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"name\":\"TipCrpQuota_ea4c0f99-0d62-48e0-a317-d283da344fa4\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1?api-version=2021-01-01+160": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1833" ], - "x-ms-client-request-id": [ "4a7b6e24-84b2-4b80-96d9-4e17242adda1" ], + "x-ms-unique-id": [ "2481" ], + "x-ms-client-request-id": [ "6bdab6da-8249-436d-b5be-7c4977ff6fea" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6825,35 +3255,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a66dbb6f-7ee8-4ed0-b817-e244bbb4e818" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13906" ], - "x-ms-request-id": [ "a66dbb6f-7ee8-4ed0-b817-e244bbb4e818" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:a66dbb6f-7ee8-4ed0-b817-e244bbb4e818" ], + "x-ms-correlation-request-id": [ "583d9129-24d2-4291-9451-8bfc6ae7fc00" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14069" ], + "x-ms-request-id": [ "583d9129-24d2-4291-9451-8bfc6ae7fc00" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:583d9129-24d2-4291-9451-8bfc6ae7fc00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhEHI8vaK7eYPg4Qdg1Xl4aUdNTtLmCEhk0gQIosxEv9P7lxsOP7cn6MLh+SomA2yE44/0ZLGDOufqImQz4mZMt79p05wPKlFYVvYK5VlnfJF1K1xSv7qwvWW/MvIGcREFPFCZFeAEUbK2uSE6qzM" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgVWGb2XmCHJ7wIuAuJtivfk28i3ftAf+EeYPhAX2NpR2jGrad3/A1B958npfINXdldZ6L38AltE+ETUjB5QvXMgCLfArzsTyafYwjjpevfvhmB9ytarmTkxTjqRYQSiypM7k3zMp//myDFD6JzS8" ] }, "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_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"name\":\"TipCrpQuota_ed2c4b7a-cd29-4a0d-b2d1-9e61bb4b31e1\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_f155d2bc-e9bd-49d2-a465-1da9fb320ede?api-version=2021-01-01+161": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1834" ], - "x-ms-client-request-id": [ "6f1a95a0-4b88-4f4d-b823-cc89e0d1cc66" ], + "x-ms-unique-id": [ "2482" ], + "x-ms-client-request-id": [ "be64ca04-59e6-48b0-b4a9-ca361ca8c7aa" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6867,35 +3297,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "442322f3-5720-40a2-889e-8072e4bb865b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13905" ], - "x-ms-request-id": [ "442322f3-5720-40a2-889e-8072e4bb865b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:442322f3-5720-40a2-889e-8072e4bb865b" ], + "x-ms-correlation-request-id": [ "6357acde-5669-44f9-a6c8-a5198a2f3d5e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14068" ], + "x-ms-request-id": [ "6357acde-5669-44f9-a6c8-a5198a2f3d5e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:6357acde-5669-44f9-a6c8-a5198a2f3d5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGtcw2J5qZ/nngkYSUtQc105Q19xqE5/4b0qWFU6qCQavHo6cVNnQMwma4W4C902QBoEGbZ0NEuboXjdaC7IPLkd3X1hfvg3c2vqqKstUo4JDKrAscCu71xI5OnDGgAHafdMHsl8u0qFrUDtnyMli" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxMcHU4ieNLXWJbDXkv7bBCNqg5lNp5RtFviyIzwtc/DjUBIJFshu6a7+l8YR9oQxQYP/CJxjM7qe8Sdg3FVLlMNGWGjCwFCdU/fkWh/LvIXea62f5l1TacD6az2saToDhse7r6tGoKciVtH2UDgH" ] }, "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_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"name\":\"TipCrpQuota_f155d2bc-e9bd-49d2-a465-1da9fb320ede\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_f59a09e9-0228-4c09-980b-bd95ac5b3cde?api-version=2021-01-01+162": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1835" ], - "x-ms-client-request-id": [ "4238a894-a382-41aa-8008-9ce56f2b3f42" ], + "x-ms-unique-id": [ "2483" ], + "x-ms-client-request-id": [ "e81ac65a-d164-4d4d-952e-5425fac8640c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6909,35 +3339,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "db9ac67b-3c5e-4f55-a62e-b4e1637d8035" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13904" ], - "x-ms-request-id": [ "db9ac67b-3c5e-4f55-a62e-b4e1637d8035" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:db9ac67b-3c5e-4f55-a62e-b4e1637d8035" ], + "x-ms-correlation-request-id": [ "683d9daa-d90e-4baa-b6b1-f83f43260ea0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14067" ], + "x-ms-request-id": [ "683d9daa-d90e-4baa-b6b1-f83f43260ea0" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:683d9daa-d90e-4baa-b6b1-f83f43260ea0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCM3RHgyU7zmf9wZyIX+iQMu1h9p1DjBrII7Vm8omKyskUQMgetWTDKIO2+MBmL6UtdQk+uwzQ9AwrF2y2Mlgi59b4jcVMQ83XiljkRy0Fc3Okp4yy5IBgyCGUdW8w/7rqDza80THl1Z+X1++xnKs" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvo1DrIsZGD3M9xTIF+6R4JgElA+FwrLpvgg+ofbwgwR9AXELnqwUHqCbOJqVZgNWfdzzxPBKOeXif/rEGa8rblEh3vqMZ/kXndhqbU1PHpX58KA2INIP38hv5vN722a1gTvMCyo3Y+ro/yOgnI6x2" ] }, "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_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"name\":\"TipCrpQuota_f59a09e9-0228-4c09-980b-bd95ac5b3cde\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7?api-version=2021-01-01+163": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1836" ], - "x-ms-client-request-id": [ "8508146c-01f1-4be9-b4ef-b09e57c207ec" ], + "x-ms-unique-id": [ "2484" ], + "x-ms-client-request-id": [ "bae22474-373f-4b1d-a09c-5b03092eaa60" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6951,35 +3381,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a1387077-e49a-4444-9870-ce40af2bb260" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13903" ], - "x-ms-request-id": [ "a1387077-e49a-4444-9870-ce40af2bb260" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181611Z:a1387077-e49a-4444-9870-ce40af2bb260" ], + "x-ms-correlation-request-id": [ "a8889a3f-12ab-452e-9f5d-fda9256312ec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14066" ], + "x-ms-request-id": [ "a8889a3f-12ab-452e-9f5d-fda9256312ec" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:a8889a3f-12ab-452e-9f5d-fda9256312ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:11 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyxmRmCwJ+Lw8civxrHN8mrRYIacA7Vh+XzXBM9dld+JZpZakzXa+d8o/6a5uFAtuooShOVtd0vVkpPzDA4j7z3IHSeJOWZmywMFX+XVmQxKOqNmZK8F8fNaQ9uCWgm1DCp8PTjd3I9g0hZpBz5Y/" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOwPv5tUrSdlVdaGA1VAnz4kniB1RgZqp2rwJCMO5ug7Uw6WVroMQw9pW0wJ5IVTh7CiT7PnijM8eVefITNdeiBAveaAMVOkHXdlHKDWYWUrP32vWieyFWQ1gKQF96K+4Jdg6/70HOkiPzSQSOoWh" ] }, "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_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"name\":\"TipCrpQuota_f6ebb357-cd0e-4726-bb42-b876b4cdacc7\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60?api-version=2021-01-01+164": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1837" ], - "x-ms-client-request-id": [ "1c2ad2d7-b0a1-4d98-9b3a-d43d0ca627a5" ], + "x-ms-unique-id": [ "2485" ], + "x-ms-client-request-id": [ "41c49869-cbd4-47af-a298-786f04a5c4f2" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -6993,35 +3423,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "08020031-1fa0-4eb2-9ad4-224838f7d5a1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13902" ], - "x-ms-request-id": [ "08020031-1fa0-4eb2-9ad4-224838f7d5a1" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:08020031-1fa0-4eb2-9ad4-224838f7d5a1" ], + "x-ms-correlation-request-id": [ "0f4d7a05-7aec-4afd-bd07-cd61c60cf97c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14065" ], + "x-ms-request-id": [ "0f4d7a05-7aec-4afd-bd07-cd61c60cf97c" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:0f4d7a05-7aec-4afd-bd07-cd61c60cf97c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyH0xkf8n9jZNyO2q6e8XeEuZUd4Siu+/FlNc5eXJTxzx2FdeEdCZS2fkxUC7GfzFVMcxa3XIoifkBc1UbXF6SabzudJPmnD4m3APYO7qj2Q/d7iL5gHFrN6fXoJNnccNcb6A86agPGYRex5ZJfod" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdNHvBE3/A7YVPF2vvmvlJv7Vv3luWlzibGSrzQIO8VGFtDIOfH5Ecd2WbCEBp6YEwUbCspldjCUcvjNJFxgKTa6P8x+AUAxE3FTiIM4bcu3mzGktPmPiXfgXqzwvFyagqMppsdOXqZBILZmDYEKO" ] }, "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_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"name\":\"TipCrpQuota_f9cb28ba-1f14-4ab7-9e4e-6805a210ab60\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_faed7c92-6e9c-429b-bbbd-e7920e850090?api-version=2021-01-01+165": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1838" ], - "x-ms-client-request-id": [ "4e0cf012-6b7e-48ea-ab36-b8378f112494" ], + "x-ms-unique-id": [ "2486" ], + "x-ms-client-request-id": [ "542deefe-2fc0-4f45-9dd0-aa427194fb07" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7035,35 +3465,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7710af4f-3f4e-4609-a668-fd070aa8b551" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13901" ], - "x-ms-request-id": [ "7710af4f-3f4e-4609-a668-fd070aa8b551" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:7710af4f-3f4e-4609-a668-fd070aa8b551" ], + "x-ms-correlation-request-id": [ "33f26276-e19b-4fd6-8489-ed2de335c0fe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14064" ], + "x-ms-request-id": [ "33f26276-e19b-4fd6-8489-ed2de335c0fe" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:33f26276-e19b-4fd6-8489-ed2de335c0fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwHCXtHcKfcjNxcX6htOcrJ7dfnSABlWGaZFTAFLpkWiPGRZsw7Z3Y/A3KnmDn8taRV5NVnRG9Ty9u3sJOJTf6s/1tqzxdQ+YkKv957XULjcUpI50SNR0ZjF9NiFgnzA9ee434ksUSEkbDOuqVaB1" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4a0oC3dA0cf4CadYdM0oWTtYHZSbqi7jw7bpsVjErhlW36jZsebl51kog8kjnVtXz2o40Qr8iW2Nejip3MNpEBvt2zAua5z7x48xyw9/S0ALU/HVC2Mu7JRGZ0biswKcxxY5ZqzS/j7ctmw1gbNF" ] }, "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_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"name\":\"TipCrpQuota_faed7c92-6e9c-429b-bbbd-e7920e850090\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_fb17ff30-a9e7-4182-9597-79b8c0fcd515?api-version=2021-01-01+166": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1839" ], - "x-ms-client-request-id": [ "36090f02-d6e9-4598-9303-ebc557572ce8" ], + "x-ms-unique-id": [ "2487" ], + "x-ms-client-request-id": [ "829d2bb2-007f-48f2-be3c-0bf87129faac" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7077,35 +3507,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2b159d57-4cc0-4ad3-9168-335e2487d969" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13900" ], - "x-ms-request-id": [ "2b159d57-4cc0-4ad3-9168-335e2487d969" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:2b159d57-4cc0-4ad3-9168-335e2487d969" ], + "x-ms-correlation-request-id": [ "7d3c6fce-39ac-4006-8d40-665b2959b251" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14063" ], + "x-ms-request-id": [ "7d3c6fce-39ac-4006-8d40-665b2959b251" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:7d3c6fce-39ac-4006-8d40-665b2959b251" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7Z4sFyfDs2ODx3Io40y2TDB0pK9N6xuO9M4/R3PPgDQMKjNiQ5TIfCuRQwW4ToFiVA49iGeagxOs9jNUz7avIlm/5lie3DzfElBhHcxjRqKCMg/VuLeHxEJqZwT/hhamFyZHt2pXjWQG9b8UgN/P" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3elLbbTo1FBBNyxiw/W9OSbV042EX19hPrv8xPfuGV1Rt8eaVZRgCoNEAV7iESWj6ylos3EGDf0W+eV+H5Yvw7Z3zZJ3HXdf+cUG6HQrovRjeSulAAksK15oUoryhUiPDCRd29rXhXTSo9IHFA5V" ] }, "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_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"name\":\"TipCrpQuota_fb17ff30-a9e7-4182-9597-79b8c0fcd515\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16?api-version=2021-01-01+167": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1840" ], - "x-ms-client-request-id": [ "4243adb3-805f-40ca-b5fc-4dff830e5db5" ], + "x-ms-unique-id": [ "2488" ], + "x-ms-client-request-id": [ "af35b1a1-e695-4432-9a3e-7b75e32a7389" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7119,35 +3549,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "859c692c-d207-41b8-a9a5-13303a42d7af" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13899" ], - "x-ms-request-id": [ "859c692c-d207-41b8-a9a5-13303a42d7af" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:859c692c-d207-41b8-a9a5-13303a42d7af" ], + "x-ms-correlation-request-id": [ "7791efd3-7a4a-41ea-82d2-3b9953910703" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14062" ], + "x-ms-request-id": [ "7791efd3-7a4a-41ea-82d2-3b9953910703" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:7791efd3-7a4a-41ea-82d2-3b9953910703" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpzKcWGiNF7XB2PNI5Ae9ZTL5vvrzJxew1Ts3ngi1RQfZT2ffsggxvg9Fsl/5suQgO5eOHLmFEF7c7alOreIP8RYSRgyWJq+m0DepatQxiVBC5S1BD3SLXbC9iRjri3nX4pPAlZaGyxv4gK5lfTUN" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUy+P+B8lMbU/aNPVCf8c59LQKEjtIQsrwJK0NauReBKMjQtq8+TZcf566byWPZJ+k505oLtWpS8muLlG4z6o8U6WVZlBjSLgO4yh4oPAzcmSahpSrmeT80Q8Vo535kly7e6ptOKpfmn/1mCGzdEd" ] }, "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_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"name\":\"TipCrpQuota_fdf3cea8-ec12-4baf-be3e-9ae183d08e16\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99?api-version=2021-01-01+168": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1841" ], - "x-ms-client-request-id": [ "eb44465e-82d9-4504-8d1a-e812f32cd1b5" ], + "x-ms-unique-id": [ "2489" ], + "x-ms-client-request-id": [ "c670d871-b13b-4005-9976-3e02a37c446c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7161,35 +3591,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "252c81a1-1f91-4607-8c40-16213a852833" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13898" ], - "x-ms-request-id": [ "252c81a1-1f91-4607-8c40-16213a852833" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181612Z:252c81a1-1f91-4607-8c40-16213a852833" ], + "x-ms-correlation-request-id": [ "9db0fb0f-7861-4e4c-abec-bdffcc56ffc3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14061" ], + "x-ms-request-id": [ "9db0fb0f-7861-4e4c-abec-bdffcc56ffc3" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:9db0fb0f-7861-4e4c-abec-bdffcc56ffc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:12 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/j0ECw9WQjCybnsU8XnVxHH18iAEDTF/4fTO6FKR8AHuMor8prUfUteIY3Rg+bWPxF7U16/ur0byUzEPVFepV5WNNxtbTfzI2IxpSzLhuzWVKltDCVrCP6agkYa9dTuVlbaD68X8LIefEqX4Wn9P" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzdLdRdZCgKvKgQH43Q26E6Z1pOHIEctbW2CielWhjmGxm1reRBv7Ka23Ii8pehk4DTvlOQOqywwFuDoXI83h/UFHQf4Mo97mdStdOL+mdWhCvHJFt50Rq6FHpf/I/fGPsxlXnYMP77MqzH53hNkO" ] }, "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_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"name\":\"TipCrpQuota_fe4efdf1-7b2c-49d6-9b39-994b521d1f99\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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_fef90e43-ace2-4282-ba88-18802cfbb0fb?api-version=2021-01-01+169": { + "Quota+[NoContext]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1842" ], - "x-ms-client-request-id": [ "27e0b171-87b4-4aaa-9064-c491fa7a520c" ], + "x-ms-unique-id": [ "2490" ], + "x-ms-client-request-id": [ "83e391fc-95c1-41c9-a566-441746a83827" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7203,30 +3633,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ac03e97b-0d98-426f-872e-9529bf588b6b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13897" ], - "x-ms-request-id": [ "ac03e97b-0d98-426f-872e-9529bf588b6b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181613Z:ac03e97b-0d98-426f-872e-9529bf588b6b" ], + "x-ms-correlation-request-id": [ "fba61169-5a2c-4960-a19b-081fbb0a696f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14060" ], + "x-ms-request-id": [ "fba61169-5a2c-4960-a19b-081fbb0a696f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:fba61169-5a2c-4960-a19b-081fbb0a696f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:13 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHaLZOvWIi7I3Vq2c21SSPLCr1tOgc6ydiJ5cbaZYCsbREbLnWcA9aUlWrulUdPJAfpZk+o3A3mdGxAdJD+K51iVqgR7lUEwctnNr3ZHHM49WYN2KYBmRGBX7ueeo9yotalTXrgAePj+AEYVTp1OI" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvh+pPY4bCwdNYSmNrM9sBmWgjV5br67IIafeaC1sLXLV+7wCIUkO3TOULcW0N/D1cN5fvQO7xZCa0Jsrg6yZyjx4ZMzf0ysKvMi1qV5Y+/n2fyvJeDsINbHUVcrlFMByXAif61njREiW6otebLm1/" ] }, "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_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"name\":\"TipCrpQuota_fef90e43-ace2-4282-ba88-18802cfbb0fb\",\"type\":\"Microsoft.Compute.Admin/quotas\",\"location\":\"redmond\",\"properties\":{\"virtualMachineCount\":80,\"coresLimit\":300,\"availabilitySetCount\":10,\"vmScaleSetCount\":20,\"maxAllocationStandardManagedDisksAndSnapshots\":1000,\"maxAllocationPremiumManagedDisksAndSnapshots\":1000,\"ddagpuCount\":0,\"partitionedGPUCount\":0}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7240,30 +3670,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "eec532e6-a8da-4bb4-aff0-f4b3424684a4" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1118" ], - "x-ms-request-id": [ "eec532e6-a8da-4bb4-aff0-f4b3424684a4" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181613Z:eec532e6-a8da-4bb4-aff0-f4b3424684a4" ], + "x-ms-correlation-request-id": [ "897d4a0e-32da-4ed7-95e4-dd1192f3db6b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1084" ], + "x-ms-request-id": [ "897d4a0e-32da-4ed7-95e4-dd1192f3db6b" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001310Z:897d4a0e-32da-4ed7-95e4-dd1192f3db6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:13 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAaTxmBnG7rDLuJbhAVE/wY1Okc8cSQwuDgbVCDkXPwC3lJzGn8ZUMnb3NWXOHWDQgLZal5Rwi4wicCGDOI8XlI5YZ/+89CZYsEHUGH/PsI1i+m48vIaUyPqZglDvHDf7zzXJH/QT0bdVDk9SIwEE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviVUKoKQ5pXroRs0C2J6TpacIunE7LV6cw8QuZ9RUCca6ioNJih+G3QNqJ4AwB2oWMtNeDTPdNAfQEj9YkY420WBf+9kv7XRo98pOwm6CN1RshSDfn3CGX2Vfl+ooOfi3U3IOKZP67TjOQKbGPx2q" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7277,30 +3707,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d2f78603-d5d7-44c7-b005-a89a4bc55a6c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1117" ], - "x-ms-request-id": [ "d2f78603-d5d7-44c7-b005-a89a4bc55a6c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181614Z:d2f78603-d5d7-44c7-b005-a89a4bc55a6c" ], + "x-ms-correlation-request-id": [ "7211c120-c406-442d-a536-a160de8e899f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1083" ], + "x-ms-request-id": [ "7211c120-c406-442d-a536-a160de8e899f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001310Z:7211c120-c406-442d-a536-a160de8e899f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:13 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBttD5WE9zmeTFyv2uu02lzBV9JaJurqut/b4pSkYIQU4Cd6bt5cuW2QipkopAsLmr6hgBGpWNIp+u4d6yTS2V+1B2myRq9eTEaYp+QAoTjcFh+e7QWGO8JswEgIVy93YokC9riPzd43/f80MPAyx" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpE4o4LutBT3tJ+bm2S1NZ7BmR4icsbAvkLkEyD1zI0fipsKXbxjtAHIwZrCTw7lVqwHhX1JWgUMN3I+bdcvXKsnWDish1sGLWwpELGCEPYn6PBelrkgZBBaN9B2f6WZNl3ZHsQtVsb/dZWS+AnPo" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7314,30 +3744,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7ec91b2a-6d4a-4402-a4d2-dd74ae0538d8" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1116" ], - "x-ms-request-id": [ "7ec91b2a-6d4a-4402-a4d2-dd74ae0538d8" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181614Z:7ec91b2a-6d4a-4402-a4d2-dd74ae0538d8" ], + "x-ms-correlation-request-id": [ "bff44862-672a-4c4e-833c-0d5967dc5bd5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1082" ], + "x-ms-request-id": [ "bff44862-672a-4c4e-833c-0d5967dc5bd5" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001310Z:bff44862-672a-4c4e-833c-0d5967dc5bd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:14 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcob8TICjIyEWhmn6rxWd6nZb1RzbNkJd1pjwPuGqFFQa/hCuHpTfG9LHQpT8/MD7d8fUHSjARFnWJ5o6vxqJUoZouMtlTzWTZWHma4MH9E8S0goEZ1ZPCYcLpKarE6947Hd0nHlccoAbeEYzzzwJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0wdkJfYblii/gHvbb0h6dwGddegF8eZ+HlDJwgZSeNk2D+nB/x+Ym0w+iBRz/BFyW7JNNBzsG0cFvazQIVSCvQlRAknoY3f291AXXXusNUN6J+nLDlwMvPuMA6/jdxZLcJpqP9/GgXzLBzz/tcMK" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7351,30 +3781,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "22eca66a-bbc7-4efa-846e-21f3b6dc35dc" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1115" ], - "x-ms-request-id": [ "22eca66a-bbc7-4efa-846e-21f3b6dc35dc" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181615Z:22eca66a-bbc7-4efa-846e-21f3b6dc35dc" ], + "x-ms-correlation-request-id": [ "3bbef5fc-7c18-462f-8be8-a130468f6122" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1081" ], + "x-ms-request-id": [ "3bbef5fc-7c18-462f-8be8-a130468f6122" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001311Z:3bbef5fc-7c18-462f-8be8-a130468f6122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:14 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhpLL0pEKYPpxgq+8Fmxwu/RNBgvcNIJw3K9he351VwGWrf5SJVNjLcqNbX9QVKHF5AqKQQpfbh6WwaHABz3mS4I1YE0C1e1Hbp/SmDLQbhbqX7TdDijOUfUbhVA1wW+GRQ+cSAOpdEHMoszdZubX" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ7AYlyN/zI2JANVi3rBf48PZBIsJptkIv4fF8RXoo0RTvbLH7BFxomxueoxqwgchHU+F01g4445tMjM+gbGEMz01cs/lv2+niXhlqpdrcjnlogoszZOqo3vkC0Dt1ULJ92GR8Id/II9njFpGqEag" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7388,30 +3818,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7f32f08a-ed2b-4a37-ab77-76f75aecd63c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1114" ], - "x-ms-request-id": [ "7f32f08a-ed2b-4a37-ab77-76f75aecd63c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181615Z:7f32f08a-ed2b-4a37-ab77-76f75aecd63c" ], + "x-ms-correlation-request-id": [ "31b9d5eb-59e9-4dc5-8569-93aaac9cb64c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1080" ], + "x-ms-request-id": [ "31b9d5eb-59e9-4dc5-8569-93aaac9cb64c" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001311Z:31b9d5eb-59e9-4dc5-8569-93aaac9cb64c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:15 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8r+8qDP7IYHbyfaWzJI2wFFDkpWA88DNiKehsa7dHbsozJKUJUG6m+cW2xBEwjoui/fmYlTfvRwKgbpSzcfcT9uBTUk/I9EOHu+oWFtYJqkx2nZ5+RfqR7YOYZayjEdtALlATE08GLEHIyvhfqla" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVNwmM6XCWO/7CuxUNQrHLU4nIOvoJ6eI//1YVv9FQC9uojMAIqA9YNAhyww8+Zj/sCyGQCFhMAIM1+CRtJCMeEKIMZQSOnFeIazlodimzvzcXfgSucOzsyhYfA+LRXyn7XRZRFNvd5OCqcKGisDo" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7425,30 +3855,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "21c402a2-a96f-4219-be18-dbb6c946bbd5" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1113" ], - "x-ms-request-id": [ "21c402a2-a96f-4219-be18-dbb6c946bbd5" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181615Z:21c402a2-a96f-4219-be18-dbb6c946bbd5" ], + "x-ms-correlation-request-id": [ "3a8ebadb-4d80-4036-bf04-66bf8739c688" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1079" ], + "x-ms-request-id": [ "3a8ebadb-4d80-4036-bf04-66bf8739c688" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001311Z:3a8ebadb-4d80-4036-bf04-66bf8739c688" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:15 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnODf8QOrvoOs7B06G6VQfNfKMnoRCMnojBj/kFE4n8sGaG2PJg4rwbl5q43wrEoFm+B88Em5cFzz1wY8E6BZQIyDsIwaaAWyCMNsambtvxR9On5MhT4bOYed8xeJEzWL4WEaa4wtQ/8AeWw9dtx5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5jBcCleCfOAX6kWgrPFx5hKIQn+YRVG1YKq+7/xQYX7VrAYdlslLpuzgwJlkocwVjn5Ocgu6wU6T99VNVZYiFByhN4u3Wx0l56eEJWUresicu36G982bbVIArIZiiTqgWh105msiKxLj8xVGBb3I" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7462,30 +3892,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ceb58df2-0775-4e35-94d8-277c157d624b" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1112" ], - "x-ms-request-id": [ "ceb58df2-0775-4e35-94d8-277c157d624b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181616Z:ceb58df2-0775-4e35-94d8-277c157d624b" ], + "x-ms-correlation-request-id": [ "0f293f0d-3c47-4561-a90a-ff9e8fda8162" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1078" ], + "x-ms-request-id": [ "0f293f0d-3c47-4561-a90a-ff9e8fda8162" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001311Z:0f293f0d-3c47-4561-a90a-ff9e8fda8162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:15 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUCq9OYa0TLgDm/WKvLq0r+9fVV867NieocknNIMlyP96QYFMXrO/sjl+cWPqRWjv3MlM2/pMhGAwHG23FmI9Es5uJhpGV0Xfjw4w/DL1vT4kjqWrT165XYItAuo9kYfTVHfvjhkOH3GVDrPnSn0P" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsNxuwpZTNnLtgAzKqldQXGgem+0t7FR9LSJaHO5fW52QG6hbl13WxdmuXG5bFUqNnIKWQjZT6vlHb343JgX8HP/BajZqMTTUR2qKu1EctH+nGxVu4puDdo4KMTMkQmSpqW3H5tHG0lYvcAXDk2Ef" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7499,30 +3929,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0c4425f7-4265-41a2-9e0e-37b755f95785" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1111" ], - "x-ms-request-id": [ "0c4425f7-4265-41a2-9e0e-37b755f95785" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181616Z:0c4425f7-4265-41a2-9e0e-37b755f95785" ], + "x-ms-correlation-request-id": [ "fbf6337e-2e8c-48be-aca5-f2395745a124" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1077" ], + "x-ms-request-id": [ "fbf6337e-2e8c-48be-aca5-f2395745a124" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:fbf6337e-2e8c-48be-aca5-f2395745a124" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:16 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDgNtuuHG/VqtYo93egTB1J5S49bGub9aqZ594diu9UPdA4jRQcxEnpbqwwnqFM9fLgHKx5/o/oS5j/RGXfkhcmoUyMmjOJXAnwYLuW3BqAGXuvrjoG0fwTMlkiyG0LvQUBfNeZbJz3adynQkB3J5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT1L9tdkId4p5yskYLG1qNN/BUtXGHdQsbaT1Bw+8GkU4X36QXcD2+0Zm1mlD4wATQcGaVEq90qgjPTXviHtK+lk2y5Laq44nGsqYs5SlguXORCia48ma3oyPKdu05Eetv0g+PGDDZsflB51l/8mH" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7536,35 +3966,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2f1f7d58-ab81-42ce-904d-bc3a9d1e3113" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1110" ], - "x-ms-request-id": [ "2f1f7d58-ab81-42ce-904d-bc3a9d1e3113" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181617Z:2f1f7d58-ab81-42ce-904d-bc3a9d1e3113" ], + "x-ms-correlation-request-id": [ "86495f7d-83ed-4b8b-b1ae-d7ea9e3718d6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1076" ], + "x-ms-request-id": [ "86495f7d-83ed-4b8b-b1ae-d7ea9e3718d6" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:86495f7d-83ed-4b8b-b1ae-d7ea9e3718d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:16 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9IM5pvcu/ZB9rlwobUl125b+Hn+pUQokYmq3TYEMQVR13VWE5lm7aU04+XmvvyiQdI0YsNYFy3bornwnNlqygoCU+4O4ydbNtv/2IuWNfGdjKAkg0in9K8IyQLOq39dlXy60KNjdlcndPHrPePlu" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOqvHe0qLdeSPYPM7m9jqlsJg8U1PvBozY+W4vd6KZolW2IKT25LOtdMGg1dc2DpOm1JIPWdIanNHQFTkD4g8Hid8v7s4Jy3sB9lPViqhTso3Q8+j0YzYueSR8wGoN9MIVmUnqtkHErrbeJVT3qD4" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1861" ], - "x-ms-client-request-id": [ "a8339105-0f95-4a7e-bbb9-3c78c8017e2a" ], + "x-ms-unique-id": [ "2509" ], + "x-ms-client-request-id": [ "2ba9720d-15bc-400c-9f1f-9f0e8efd25f1" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7578,16 +4008,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cd60fc35-21a1-4e41-824b-adb84daef11f" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14931" ], - "x-ms-request-id": [ "cd60fc35-21a1-4e41-824b-adb84daef11f" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181617Z:cd60fc35-21a1-4e41-824b-adb84daef11f" ], + "x-ms-correlation-request-id": [ "1ab0f2c5-189f-49e4-8649-00b0db518db0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14911" ], + "x-ms-request-id": [ "1ab0f2c5-189f-49e4-8649-00b0db518db0" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:1ab0f2c5-189f-49e4-8649-00b0db518db0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:16 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvztcatBeL+G9x1Bm3q+GbMXzmzo75eH+/qUF9Ut1jdyahXdTWPSk+RfyqvaTVHcd7hppv8JgjaeYkMgCP8O+sunD1cS8qPy9lD/ePiABsKvqtU3NhBkQYjYSKONQmXLA/H0J0FSh8lFWom48ZPIFV" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNkYNFBd9SKPj0Vk47f6MWDazKbjMjs/xyOujWqrFGklJkJh9Vi7wdteiZLWY3rv3oKkMX4NSFSptLcWn6TbugkXPlspxjIZfr7a1JwLfhONiAqaxm1VzZQT41J5aBE3eGiO7I3SzD/nhFARQdeuY" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7597,15 +4027,15 @@ "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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+11": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1862" ], - "x-ms-client-request-id": [ "097e4fc4-f279-406b-b4b9-9dad68853a62" ], + "x-ms-unique-id": [ "2510" ], + "x-ms-client-request-id": [ "2306552b-6501-4dc2-83cd-692a93df1a97" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7619,16 +4049,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "86759985-8961-4748-802f-8369f0d34b44" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14930" ], - "x-ms-request-id": [ "86759985-8961-4748-802f-8369f0d34b44" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181617Z:86759985-8961-4748-802f-8369f0d34b44" ], + "x-ms-correlation-request-id": [ "559cd97a-5522-43b4-b951-e512b3717722" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14910" ], + "x-ms-request-id": [ "559cd97a-5522-43b4-b951-e512b3717722" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:559cd97a-5522-43b4-b951-e512b3717722" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:17 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKowCB9p/YL3Y27aDYpwZb9l16wqvP0wtiwVPuf8n/3E/57JmbMs4llxFDXslA/m7/S69XdNFIq3fGSB2VDGKs0WBXGl23RE7isU/L74oKc8Fu9ZJZTj9Sqcn8MX6NX/XIrS0nHTpADcHiwnj+RfI" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU/3FU8u+G44G5mO9R+/SFiLxs17pAup/HJHCzqJICRQ8GPqH6xzwW5JI7X9Q0IL/NPx24aYPDw9R0eBAwWeX9yI48tXOIsk+GhxZEKesuxNunIq8odRXR6A2prNUkGvRN2gAEsm3BiRbRLLxIO5g" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7638,15 +4068,15 @@ "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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+12": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1863" ], - "x-ms-client-request-id": [ "dbfc8573-064e-4557-ac85-6d56ff33448c" ], + "x-ms-unique-id": [ "2511" ], + "x-ms-client-request-id": [ "b270fd7e-b850-4c0e-8ff8-bdca88cf790c" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7660,16 +4090,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a9ea9e4c-04bc-4ac4-85ed-67a9787e356e" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14929" ], - "x-ms-request-id": [ "a9ea9e4c-04bc-4ac4-85ed-67a9787e356e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181618Z:a9ea9e4c-04bc-4ac4-85ed-67a9787e356e" ], + "x-ms-correlation-request-id": [ "e67f4f75-5652-4c7d-af19-36cda7960c12" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14909" ], + "x-ms-request-id": [ "e67f4f75-5652-4c7d-af19-36cda7960c12" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:e67f4f75-5652-4c7d-af19-36cda7960c12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:17 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8Cl1pOAg5iugpBKJ+l9wCVzhKqXRN67R8v84WQZSjNU4xSoV7l1ABic86ySzylX5i8HKcHfi0fAaUxqZYPmFuGRHipsjzL5aEwc2fAa178E2NBhZShNBfX8MYQIOxDANj1CSl49rij4UYMuBRvez" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtf5GefcgUnJJjXAGDWt1KjTCpo+YJfQQWoke2q/SaLnDLtSGqidHE420R2pbxAoLkI2k2cU9ZfuyuG9C7f1j8Wl1xuPGaifX5rc5Z1DccBmYA9OEBHFhBVsk054m0mCwW8bvQ656kXfmrlwjywsA" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7679,15 +4109,15 @@ "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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+13": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1864" ], - "x-ms-client-request-id": [ "e81f189f-c0b6-4e77-91cb-823bf4c12144" ], + "x-ms-unique-id": [ "2512" ], + "x-ms-client-request-id": [ "cc9e3253-d996-47f1-86c7-e76a7e402c20" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7701,16 +4131,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "041455e9-9f75-417b-9dd9-3d0dcbcae7ed" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14928" ], - "x-ms-request-id": [ "041455e9-9f75-417b-9dd9-3d0dcbcae7ed" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181618Z:041455e9-9f75-417b-9dd9-3d0dcbcae7ed" ], + "x-ms-correlation-request-id": [ "a5c8be19-c27f-46d0-b9c2-56d95d4378b4" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14908" ], + "x-ms-request-id": [ "a5c8be19-c27f-46d0-b9c2-56d95d4378b4" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:a5c8be19-c27f-46d0-b9c2-56d95d4378b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:17 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMozd9oD9nGTPx1ldkYXohBpYRpFSysq+TUhhs7YgNUoaFwq8W1cZfRVFH6zycgu6Llkx+zOlyWbev6v5vVseNmqMxEz5zC3tZ+dJxxllKYDJI6kxVKhWZCIVqHirmypdEpkkPHpy6gQ6H8RjT9qu" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY7mdVAQQU+dhg+qX/Jc2AN6PAtYKK87nd3o5Lfvq3hqhS73sWZDwONWvPJewZgTmKPOc79KgjKRuD7XQSyyhXGBEOtkozfvVRl0Kk1Y34xRSyt+MA4BZVoHb571xPBfx40fPRAIA37EtJI31GEWD" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7720,15 +4150,15 @@ "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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+14": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1865" ], - "x-ms-client-request-id": [ "a79782b5-d550-4299-9121-a45160464fbb" ], + "x-ms-unique-id": [ "2513" ], + "x-ms-client-request-id": [ "063cc5c2-4958-4d40-bfe9-f740eb1c7ee9" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7742,16 +4172,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1295fe65-6da2-4b60-91f8-bb8896ac7e65" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14927" ], - "x-ms-request-id": [ "1295fe65-6da2-4b60-91f8-bb8896ac7e65" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181618Z:1295fe65-6da2-4b60-91f8-bb8896ac7e65" ], + "x-ms-correlation-request-id": [ "d9f40f8d-a502-4086-a462-ab31bb941616" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14907" ], + "x-ms-request-id": [ "d9f40f8d-a502-4086-a462-ab31bb941616" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:d9f40f8d-a502-4086-a462-ab31bb941616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:17 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRX2yuF9LSFotOl2wK/mHGUkWLNDPZCMTi5nm/MJ7eXIJr6X8VQegtwYsZFNOYQErp4xga+0zMgYIYDBiBjjoqMVVMs8gCSeRqwJWQa1Qc5wexZMDhFM5Mr2+Dk45OEMgD1Vqm8ZjKm4KflqLnTYF" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFf71BcIdqS4PyFLGgAXW8HQmCt5skYXzrDbF2ivrWM5vujMTTul1vjfhi4MnWACW0H9fjX8+MHwQPf3I1yBosy+q4rtAOXhmh9Vn2j3M3RctLT+GPxtFLXVGHMCFYONZnVoro+iKUhPygOu0OO8x" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7761,15 +4191,15 @@ "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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+15": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1866" ], - "x-ms-client-request-id": [ "845b1b1e-8bd1-4159-9404-37cd6ededda7" ], + "x-ms-unique-id": [ "2514" ], + "x-ms-client-request-id": [ "0416fe55-7669-47ea-849d-aa222c4d14b9" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7783,16 +4213,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "17348384-2fe0-4982-9580-18ca53da0853" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14926" ], - "x-ms-request-id": [ "17348384-2fe0-4982-9580-18ca53da0853" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181618Z:17348384-2fe0-4982-9580-18ca53da0853" ], + "x-ms-correlation-request-id": [ "a6b8db90-817a-40c5-a810-03c68bea707f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14906" ], + "x-ms-request-id": [ "a6b8db90-817a-40c5-a810-03c68bea707f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:a6b8db90-817a-40c5-a810-03c68bea707f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7se7fyd9/qh3WuR5NKOlsSCoUWha/5b9BlbBAhBRd6XyTS/bHRyVSzSGoeOe1Pno9zYceTz0fj0dfVLOh1yfBGBV7b3uE4dG2MiaZ7+vUEQNqDlCZ1SxwBIdEF8U3/SZMZgBjyMww05Qava47fmp" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv80lrUmdmxjmf82HjGJplHd1OGBHS6oFCSK+AuA7ZVvKOCrTUsH3Y2W/E2AgLuJRUcR9xjGJB/j3zOaB4rc/pafEhoXPaumnY6IKPiyrFHaMyh6itGgfktgEOSw8rhUdPkUe/XQWAEIgPYFul0O8U" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7802,15 +4232,15 @@ "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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+16": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1867" ], - "x-ms-client-request-id": [ "c5f0af75-76f5-49e8-b235-a709b7f9f5c6" ], + "x-ms-unique-id": [ "2515" ], + "x-ms-client-request-id": [ "04370f7d-5b01-489f-841c-955881388e49" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7824,16 +4254,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8373c11b-695a-46e8-a2f1-9ccaaf59aba9" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14925" ], - "x-ms-request-id": [ "8373c11b-695a-46e8-a2f1-9ccaaf59aba9" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181619Z:8373c11b-695a-46e8-a2f1-9ccaaf59aba9" ], + "x-ms-correlation-request-id": [ "35df2621-d99d-4e33-8b8f-c8e8b8d170c0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14905" ], + "x-ms-request-id": [ "35df2621-d99d-4e33-8b8f-c8e8b8d170c0" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:35df2621-d99d-4e33-8b8f-c8e8b8d170c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv872BytAhYBVIORe8gn675/T5PvqvcRvz5qEU4MgVbBD040X6q45hQu+4wIWiwLDRbJHDkPgH42fCTMcMB3ikTHnXc9ZsabNoh104o+m6394HiN6qzFfKCH9tSJhE2cMUQVD9o/8bRI8GMCj9O55O" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFSUwzP37sRcJZf0g6n6wSnG40zh7VFSgnBK4yyB4di0bwGDJ5gucyhkzBRxZJ1tUeGBcWSJv5BBORgnd/bci2j1o3egTi7xguE5D5e1eMZCliSJg2mSxXGq6K7ziJf+VlmySnIN2neyw1cIoVMcj" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7843,15 +4273,15 @@ "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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+17": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1868" ], - "x-ms-client-request-id": [ "6a0951bd-4d00-4e22-9595-e9f516e295ff" ], + "x-ms-unique-id": [ "2516" ], + "x-ms-client-request-id": [ "a532837a-9f15-4f3e-a265-93ecb850d728" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7865,16 +4295,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "af89b4fb-7df4-40fd-9c81-f6b26555967e" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14924" ], - "x-ms-request-id": [ "af89b4fb-7df4-40fd-9c81-f6b26555967e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181619Z:af89b4fb-7df4-40fd-9c81-f6b26555967e" ], + "x-ms-correlation-request-id": [ "f96e9ec6-ab4d-4231-8aa7-94c29e9f6e3d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14904" ], + "x-ms-request-id": [ "f96e9ec6-ab4d-4231-8aa7-94c29e9f6e3d" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:f96e9ec6-ab4d-4231-8aa7-94c29e9f6e3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOuXZ/hDN+aJh3pGaznpJDZBSYEqExeum5mIFGEX+dTU2vcEfZcMY9QY9tj2yUMml3acLf7owVRt146Tw5c5DSRYepltOdZ4kHtgn1OOpcNHcagPkRtyYleVeNliLUyGF7jzNCEZ2b/tvTW5+h9pa" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7Ue8HgBj0i+P+eAENZAXMpOxGcsAvjrV06NccoMoJb4VfuEnpn5RrvIQk1AcZ7LVQfDBTrxTu/+FaXTr2F1617H7cErVocORYFW4lLEZzo20Mp6lEUk4UxBZn/W3kbM97iNcHyYOdPfjbt7Z6wzn" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7884,15 +4314,15 @@ "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": { + "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+18": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1869" ], - "x-ms-client-request-id": [ "4ecbaa43-6f3f-40bf-a1a5-ecd6bb06f6c7" ], + "x-ms-unique-id": [ "2517" ], + "x-ms-client-request-id": [ "a0e56435-eb44-4ab4-9ddc-729ceab448c8" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -7906,16 +4336,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fcbd39b9-4cbb-4442-b583-2b99ef90abeb" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14923" ], - "x-ms-request-id": [ "fcbd39b9-4cbb-4442-b583-2b99ef90abeb" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181619Z:fcbd39b9-4cbb-4442-b583-2b99ef90abeb" ], + "x-ms-correlation-request-id": [ "ea6ac9b6-340e-4b6b-93f3-a1187874f9d0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14903" ], + "x-ms-request-id": [ "ea6ac9b6-340e-4b6b-93f3-a1187874f9d0" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001314Z:ea6ac9b6-340e-4b6b-93f3-a1187874f9d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:18 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+ZOatJOHl3k5cZvwidgd8FnFj27aPW7C575ahZtNV3T8yPaeWXSG0ZrWd25EXB1KJk8cmummukkTr9/atDHOZggpalwHdhMVzr36kmZ8DgxcaDLhHIuDsRTWi3B15p921LXCjYYnTbxstk0IyWJR" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH9qIT+c8jJemX+H+nfFHpa4EdrvddYmcdXTFDTn4d9NpsH26spcrP3olhvHTC9+N2kbNw/Yz8G5K+jCQoJlBG+DA0sng9fMjIFHVsqwTQq3FRJ9VS7mC4eqDURNaULsAs9GLyX81VuUmvFh5ssQA" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -7925,10 +4355,10 @@ "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7942,30 +4372,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "51c03d59-5d84-412d-bc77-30cdf7b3d701" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1109" ], - "x-ms-request-id": [ "51c03d59-5d84-412d-bc77-30cdf7b3d701" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181620Z:51c03d59-5d84-412d-bc77-30cdf7b3d701" ], + "x-ms-correlation-request-id": [ "29f4e31b-7d81-4762-adc8-3110894c58b8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1075" ], + "x-ms-request-id": [ "29f4e31b-7d81-4762-adc8-3110894c58b8" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001314Z:29f4e31b-7d81-4762-adc8-3110894c58b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:19 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJsx9CnkPor8mVwG8ZNfWnaPaNwKB953yhN2XIjhZDXe3J+CjNnw/jaUm9u/m5Io1sWsCKgsoRbkWN0bpa9nVZEGf8C3D80ToVZGwlm2oe4o90j54tfa7ZAi2ufV6BbhtiuVSxLJvJBVx9+nLW+Iv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfMJnIiQqC57gZD0IjxT45pkZA0zllYFHTGF9RrBCq7JpUEp4e4RmBsAId13qnIbdL9bm/OmVrDbwduoPUA9jA6Sgjy2dl1yb4C/prNbMpIyiIPNiJ0NLPW6T2/rBdolfxhXZ0O4+czoPs7cpjPSg" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -7979,30 +4409,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8c3f7d4f-84e4-432e-a4af-430d1a045347" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1108" ], - "x-ms-request-id": [ "8c3f7d4f-84e4-432e-a4af-430d1a045347" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181620Z:8c3f7d4f-84e4-432e-a4af-430d1a045347" ], + "x-ms-correlation-request-id": [ "6413e837-22e3-4e5b-a648-0fd98d4827b3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1074" ], + "x-ms-request-id": [ "6413e837-22e3-4e5b-a648-0fd98d4827b3" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001314Z:6413e837-22e3-4e5b-a648-0fd98d4827b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:19 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnAibmrNTK0wZ4h+y5xiXLbZaQkArHVJ7wDGn4DJyPFZhMUrLSZ7LnbfO7+/svFhPszOfcZBqYUHwORh8Y61h/hj5iC9W77BOj9Lr/feK7CWnlxhXvzu5vnpahFdemokEGLnP3NggkRyHIi1JYukS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9tOraDQ4pFQ8t9y5yp711vhsKca/dYhCYi7GpKC5ysu0/Q2zM9/wD8NLh0QGpZiiXxy7CI8OBKfYdPaMqN62sPAp66phc4Y0xUNyW4HTMGDafvVUekFhKs8E7N7DAEm86MJT1jWFr9//QJu6lUV6" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8016,30 +4446,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8170ae8e-411f-43bf-babf-117bfaa606f3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1107" ], - "x-ms-request-id": [ "8170ae8e-411f-43bf-babf-117bfaa606f3" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181620Z:8170ae8e-411f-43bf-babf-117bfaa606f3" ], + "x-ms-correlation-request-id": [ "c5af1b1d-ed55-4b71-ab37-76b600e5434d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1073" ], + "x-ms-request-id": [ "c5af1b1d-ed55-4b71-ab37-76b600e5434d" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001314Z:c5af1b1d-ed55-4b71-ab37-76b600e5434d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:19 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkvBhr8RYPEgCUuVWoLWFSFvIRPEMp9LM5H1zVkKWDwGGTpd29oWDwt71Nkq9bY98xAaDGEZr3Ngj1mXC/JNO7wW9xmWk1Ym1/DAS3d3atkWZL2NNwd/Cbd+IpIPSyWhzmolXVDOjQOPMazAiyLy6" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBY9B/bjkKFCMar4Rv74WBuwh6RyPTqi4VEwpsacwe88+UHZDrqa2JDq63GV+cbrG8AXriL7LT3aEJcsOoPk+CzwnTrXxa4uphFGgJnnFatX7rUsgOuamENUcMYcpQPeE9xvM3tTA6WofKgwWRMiS" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8053,30 +4483,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f1486ea4-3469-44eb-b460-f4b19d2a3767" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1106" ], - "x-ms-request-id": [ "f1486ea4-3469-44eb-b460-f4b19d2a3767" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181621Z:f1486ea4-3469-44eb-b460-f4b19d2a3767" ], + "x-ms-correlation-request-id": [ "dff3d97d-3f12-4fd9-abd9-08035c7e9d4e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1072" ], + "x-ms-request-id": [ "dff3d97d-3f12-4fd9-abd9-08035c7e9d4e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001315Z:dff3d97d-3f12-4fd9-abd9-08035c7e9d4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:21 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8pwGx8d+qzLH5DmBRdTzCIUdJjwgM1R6IfPC+2ichoTByETSEuqSOLBV+iXlmgULlBmf70j1BPzwodZg80tqlgw/j1k8fU1rfl7FjCjJKWU9e1QJiEFBqyjJ+Eq1fgMWs0Jz3Fvvk0Dk8XHsvcMJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyNJwYLD9F8lG897LU3ds8qSEReGVCt3WlEUBpZ3537NJW7dH+/sE+u1SHDpj50HAPDwAiexlrNAdnIQ9VFzs5BAMJmqAdhIa2NPcT7r3OskZXQlg37x22SfvhyU/uJ6OMjryY5DZu7oc6HdIu6bF" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8090,30 +4520,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "312b12b1-036c-48cd-af26-f3b278a72108" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1105" ], - "x-ms-request-id": [ "312b12b1-036c-48cd-af26-f3b278a72108" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181621Z:312b12b1-036c-48cd-af26-f3b278a72108" ], + "x-ms-correlation-request-id": [ "04cccdd4-9729-49c1-b379-dd467a61a8af" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1071" ], + "x-ms-request-id": [ "04cccdd4-9729-49c1-b379-dd467a61a8af" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001315Z:04cccdd4-9729-49c1-b379-dd467a61a8af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:21 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwDr3jjkwf05Y6HmLOuo3R/S/GWSlg6JKqBwVY8utJuL+RYSdjUWMAYb0803ahMXBlEVtpiG0vx5W8TsqWHvq4StC60ToltJDs47+He4sx+20jqH7G0gDHi6F26wQ32TU+mlbsjm6BdYu9j+dE5An" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnK/lE1OszTNUhcbyOzXigWsFdjd7P1AT8n5Dnc+ipfWikyMQVldTiREF7kU+OvYGMzPg1GZnwvGmZZe1JYTdEBqYKnoRHJMkNyLCgJufmbbkWbneydFim8Z0xIL7h5IGIofXra1D8KpV4UhL3wm0" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8127,30 +4557,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "31305841-7466-4709-88a6-fdc9361155c3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1104" ], - "x-ms-request-id": [ "31305841-7466-4709-88a6-fdc9361155c3" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181621Z:31305841-7466-4709-88a6-fdc9361155c3" ], + "x-ms-correlation-request-id": [ "f48725c8-41b1-4657-ab16-40a54368112c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1070" ], + "x-ms-request-id": [ "f48725c8-41b1-4657-ab16-40a54368112c" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001315Z:f48725c8-41b1-4657-ab16-40a54368112c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:21 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLrHtmtSMQvw4Q9x5ZSoSHLVm8RXqC/2UEgYBOGN/sS3aUwPUfTraCYfbT2U7Bywev4IPk2SympgKp+n6x0dEh7eDVIVqc7bn9GqO+M3fbRmXgLfmTauuctKP6Lo7kh7zXAGU3amhNWxE2TnQL60l" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvet0wlteESxbEdgJweh50ZREtlMMyToIEuVruqbrcPiTwr5/OUCVdprUtamOlse2jkl/UH/PN4MHIORdDa4y51fyfpd5CS8sUFnatik7lKZH0C2csv+mdhVgHAIANL1YQaMTNixTgI/FW7dJYDoAi" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8164,30 +4594,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0a5b9344-222f-44a5-85ca-5bbbe3f3a8b7" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1103" ], - "x-ms-request-id": [ "0a5b9344-222f-44a5-85ca-5bbbe3f3a8b7" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181622Z:0a5b9344-222f-44a5-85ca-5bbbe3f3a8b7" ], + "x-ms-correlation-request-id": [ "980640e4-acb1-49d1-b7ed-1249cb202392" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1069" ], + "x-ms-request-id": [ "980640e4-acb1-49d1-b7ed-1249cb202392" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:980640e4-acb1-49d1-b7ed-1249cb202392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:22 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/SsmaFxpYSov0J07xy/Cs3ZUEbtn0hr8FD7KN4qfQvuD7kU9K/11uiEFLcwVHFj+a38SZgittFK/xX0nLY2vnlXQJPby3CB4TSqj4eCYZdOkZPBhZvbM+tT6dc3XHaoWOu+mb/HlN4nX+P9HZcdE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqYy19IxQiYA/UdxJjJeb8Z0anZSNke7nXEX489BH8jsm4fj5w0L/eVoqKBWn4/T7Ola2BAzrAxBWRGQJQ/0OYtVnJC5mtr3IJK8qy/FQjR4R5/5dTJNXqSSM0fCliI39CDWD0+wRJajjhHZkJsbh" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8201,30 +4631,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "da38521e-1967-4a59-b922-489f851a36a7" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1102" ], - "x-ms-request-id": [ "da38521e-1967-4a59-b922-489f851a36a7" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181622Z:da38521e-1967-4a59-b922-489f851a36a7" ], + "x-ms-correlation-request-id": [ "445a3074-0e85-4004-beae-67bbce81fa6f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1068" ], + "x-ms-request-id": [ "445a3074-0e85-4004-beae-67bbce81fa6f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:445a3074-0e85-4004-beae-67bbce81fa6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:22 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvK3str+qKCpFuiMMoQLUhi4tsM7LT6UgJVWyJLyRgQNrDucQjRje56a6sL+VR0FVi26xQ4dOYKbZQS92MeAxGxByc1Y8aH7P+MoBXJoUoS/HczcBTAydUeFpfaFQlKKTpSTEEJ6A30ExF2sU0MAQz" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9pO6SLpPIxTgFY5aP/F+X224WEblU95Diy9oSqXcyv0rMiT7nVsDXmw6xBOlJuVBPdbx8YczJrUmpEpRcvG1vxNmvKN8Bn5pImTW9Ln/RwFPrRwkoBEmwI8KGQ9Z+ztCtoFJG8kUK15aPYrtp6Jt" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8238,35 +4668,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "316598e6-9828-4771-aff7-4c86768b391a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1101" ], - "x-ms-request-id": [ "316598e6-9828-4771-aff7-4c86768b391a" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181623Z:316598e6-9828-4771-aff7-4c86768b391a" ], + "x-ms-correlation-request-id": [ "cf2a094a-8d6d-445d-8e24-c76ca64de031" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1067" ], + "x-ms-request-id": [ "cf2a094a-8d6d-445d-8e24-c76ca64de031" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:cf2a094a-8d6d-445d-8e24-c76ca64de031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:22 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/c27zYvbLPfCixjgoWVj7sDy4lzEXvpi9Em1TbOv7gUncnf+N4RIHsCSFd7OPMcgobK96EjSSbgWfdE3An+wF6+YVpwPbN55PV+XkapW6FebRMckKnYPFMpBlhZzxr9OaJELR0wWMwDNpaPslOwJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjj/2ra7VCZiWmUUa+HZfg//K7HPkgIfjF5/ABZSd5noiKx3D10bF4eDsoxZdSmRLq4Pm7mS8vvZq1TkoWZbfzOVkRtZramtUYB+vsUkbotEjoN2n4uraliZKBx7WIiuzQiZB4mBGn9KCyDAU+/Cp" ] }, "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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1888" ], - "x-ms-client-request-id": [ "e304d80d-3136-4df3-9218-860d9587f69d" ], + "x-ms-unique-id": [ "2536" ], + "x-ms-client-request-id": [ "e4378ec5-11c6-47f7-85bb-a87d98c1b3d9" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8280,16 +4710,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d3f3950f-3a47-4083-9e57-cd2384d7c926" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14922" ], - "x-ms-request-id": [ "d3f3950f-3a47-4083-9e57-cd2384d7c926" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181623Z:d3f3950f-3a47-4083-9e57-cd2384d7c926" ], + "x-ms-correlation-request-id": [ "566116b5-5f5f-4c02-9832-9412bdf5d7a6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14902" ], + "x-ms-request-id": [ "566116b5-5f5f-4c02-9832-9412bdf5d7a6" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:566116b5-5f5f-4c02-9832-9412bdf5d7a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:23 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0xIZru7eJ7Yymasvqll80ruARyRIyKNoKtggXzcM5CzbRTaBNW6dn2F9s6y/U6Qp1hg6zaixmxZB5SBePph8Z/cAvaPYsSSL+0ge83/oEc2W/YqaHOmB+of2US+c1ATGY+2V+lGg8IMmKjiODXsV" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGk7q066exicTnDiQ0BQTEb6MkVk5IfcO9o4ErzulyAlyfPKSsqpqG+zUEGU6z/yy1LjK2QSl1sZ7/Z1hFmYYyzv6/q6G9QsptWH5U42UoVj6Wk+EMV9I40NCOYldl0omRb0RUc9JyD63oN/RMB0v" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8299,15 +4729,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+11": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1889" ], - "x-ms-client-request-id": [ "a94744d1-8d24-4f8b-a4b8-e74682ecab9d" ], + "x-ms-unique-id": [ "2537" ], + "x-ms-client-request-id": [ "726efc08-81af-4e44-be96-f445093f421b" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8321,16 +4751,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7e424d5b-3f11-49fb-8609-4ee35f0fa6fa" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14921" ], - "x-ms-request-id": [ "7e424d5b-3f11-49fb-8609-4ee35f0fa6fa" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181623Z:7e424d5b-3f11-49fb-8609-4ee35f0fa6fa" ], + "x-ms-correlation-request-id": [ "16aefdeb-0a3d-4250-8c39-8ef099f63d6f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14901" ], + "x-ms-request-id": [ "16aefdeb-0a3d-4250-8c39-8ef099f63d6f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:16aefdeb-0a3d-4250-8c39-8ef099f63d6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:23 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvThdC2/mKR2rYRNTaZ17za91Ekvo4/HkZElqwQWNrkr48WlZ2A3PDwk21nVunNebyJnLe0UBnjzIlt9Q30QftiEIVa5wMx3jEppUvuPTtIqv4+Z2yZHP/+fuAylFuXkBVzm4yDdxDzmy+zFnj3ldR" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvniSmvOJhO/TXsy4v+Q19wsj8Kvs4UsXV46EeDGgKrwmWFDMAWBT7MJxXwJamPcRt3J9sfnvumbW8fdJIynT+CjsN8Nu5LBmzS7CwsF0cpz7M5gxW0htEdsTY7NWd6medYAuNXTEle6WiRNFVqryG" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8340,15 +4770,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+12": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1890" ], - "x-ms-client-request-id": [ "961b1433-8e5a-4b45-820e-53ba6db3254d" ], + "x-ms-unique-id": [ "2538" ], + "x-ms-client-request-id": [ "95c7aa1f-33ae-499a-96e0-556263da66a0" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8362,16 +4792,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4089d149-f3ab-42d2-b325-2b31b1feffaf" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14920" ], - "x-ms-request-id": [ "4089d149-f3ab-42d2-b325-2b31b1feffaf" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181624Z:4089d149-f3ab-42d2-b325-2b31b1feffaf" ], + "x-ms-correlation-request-id": [ "a061cfa9-7b9a-45cc-9d43-373cf5ca4d9c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14900" ], + "x-ms-request-id": [ "a061cfa9-7b9a-45cc-9d43-373cf5ca4d9c" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:a061cfa9-7b9a-45cc-9d43-373cf5ca4d9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:23 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPhYFJMNbyfYI0dKv7q/t1YqFdXMqFYIJZyrXKbknNXMI5sUmmtAyummGX/ex39PgCWhIh0XCSVRhP1eiVT1U+27WQKom7k/66slCQbPswyoqa8AF0Jd2thJaLemDfKX6Q1+pJn1kdVeEMFVtpX+x" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvemp4fHVhKt6MpLhwAINEXgMxGRQXP5gDBErLFU9m5m7r1Yhz3O0jLW7iNxOfb08hR16f8sCWg6f1ijYL++9nQw8ZkoI9xhck70yNNnSmx1LXtFyINuGdUVdnmE02GqMaHiQ8kq2HDK9SCRlVyj/Z" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8381,15 +4811,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+13": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1891" ], - "x-ms-client-request-id": [ "6fb4e142-8bee-4c8d-820d-6b7a776ee85c" ], + "x-ms-unique-id": [ "2539" ], + "x-ms-client-request-id": [ "71c4662c-5aaa-41e3-b199-171253913d6b" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8403,16 +4833,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cf8226b4-5d58-4d65-af86-17af2c6f47e5" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14919" ], - "x-ms-request-id": [ "cf8226b4-5d58-4d65-af86-17af2c6f47e5" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181624Z:cf8226b4-5d58-4d65-af86-17af2c6f47e5" ], + "x-ms-correlation-request-id": [ "eadf46da-fada-457b-83e1-d02fa9a0fe83" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14899" ], + "x-ms-request-id": [ "eadf46da-fada-457b-83e1-d02fa9a0fe83" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:eadf46da-fada-457b-83e1-d02fa9a0fe83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:24 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv21NcoAETcPXtkaa3uYmWqKOVwuk/FLBLpMoh9jjziCmHUqwDExy7H6NMnnT/us4/Lp7JhTZedWEcGCHcHnCX5gI4X2DM4/sTvIiJ2rsSmj50aKRA6wyb7qShYgERrzjvOLf1PxTdIptK0FIYxG4D" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgfFr1GeR5t7HpaPgaq7Ec5gjNvY0yLFKVVsQCZt8VISRjWOmRRM9GiDh8t7BDtIOvAQL6pzRDkeAJFX3UxzUl8Ovd8Uqd+fy/rV6WmgWeTBV0hD6uncZSIBwDXu7ym/AvHTiboItNARQbAB1b3GR" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8422,15 +4852,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+14": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1892" ], - "x-ms-client-request-id": [ "2da03c07-e60a-4743-93b5-addb868e1bdc" ], + "x-ms-unique-id": [ "2540" ], + "x-ms-client-request-id": [ "a7cad570-e57d-45e0-8ec1-630992b013eb" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8444,16 +4874,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a10b294a-7dff-4672-9614-6b85314bcc18" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14918" ], - "x-ms-request-id": [ "a10b294a-7dff-4672-9614-6b85314bcc18" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181624Z:a10b294a-7dff-4672-9614-6b85314bcc18" ], + "x-ms-correlation-request-id": [ "7ca3cca4-12ce-41db-b92d-35591bfb5130" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14898" ], + "x-ms-request-id": [ "7ca3cca4-12ce-41db-b92d-35591bfb5130" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:7ca3cca4-12ce-41db-b92d-35591bfb5130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:24 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgpotJ95Pj/+GFp5AxhMkAcDsXxeirTc5rmpwvQ+l5L8UkwKiy1CN4Ci76HtVoeZi/DnP/AxkhpkR6Ju2Cq61RWYKT60eizwJf907Xrb9v8lbFGX1wJnpPvWpbI0fRVuHvHGgCjHepTM/FhL9q2ng" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvM9B1Wo3PtJGAa8uGBmlxBe1QvMMvZ4vlHevFPzmK4r/sxqf7YKImbT0akgjsjSCBk+aO2KN3q+8qxUO4un/jTRRLHwJ2Z4q+n+za/NuuUb8dQCnDCNjC+Zh3cZvn+iouBm3SWM4WTVtJus8vLiKJ" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8463,15 +4893,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+15": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1893" ], - "x-ms-client-request-id": [ "bad9b6a1-99da-40f8-9885-97f32765a2e9" ], + "x-ms-unique-id": [ "2541" ], + "x-ms-client-request-id": [ "6f72c977-4904-4d7a-b184-dd9d688fe3c6" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8485,16 +4915,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dad63052-e0bd-42d7-8519-f69bc9ac16a7" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14917" ], - "x-ms-request-id": [ "dad63052-e0bd-42d7-8519-f69bc9ac16a7" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181625Z:dad63052-e0bd-42d7-8519-f69bc9ac16a7" ], + "x-ms-correlation-request-id": [ "8f4cae51-b7ed-4274-ab3a-88291f886998" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14897" ], + "x-ms-request-id": [ "8f4cae51-b7ed-4274-ab3a-88291f886998" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:8f4cae51-b7ed-4274-ab3a-88291f886998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:24 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvudrDFhoq+QYUYXh3uZ4+0//+8C0Qdo5ogNCkPyt55zvnML51LIqlm7PIOXOTB1nZwEXIc0tl23bgwI2NK9PwIfLHZcBdRmBzLr49WeyJFJq5TqnsbBCxP1sAn62afEXVhm741u/ew6b7Gs7tO7Qj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvROrx+xjB3Id0qyCSBRTbmMhUZ1foq6hMGTbxq9OAofEqWtfuDB1MHSTyFr11SEf0lIxWAyeFWk/4mLHsQWj5JLOx1gaq6CmIKInJX2xPUf4b70OvBXx8LO5ty8t/qipPDYj1rO8TS7R3LY0944nh" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8504,15 +4934,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+16": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1894" ], - "x-ms-client-request-id": [ "f2220837-ea62-4ff8-943e-535592f82e43" ], + "x-ms-unique-id": [ "2542" ], + "x-ms-client-request-id": [ "331b0c65-7d2f-46c0-9ded-5c87a99a25fe" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8526,16 +4956,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2de0b441-a9aa-43ec-908e-d52003a11766" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14916" ], - "x-ms-request-id": [ "2de0b441-a9aa-43ec-908e-d52003a11766" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181625Z:2de0b441-a9aa-43ec-908e-d52003a11766" ], + "x-ms-correlation-request-id": [ "45148fad-3348-4d27-9bda-3649c8adc029" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14896" ], + "x-ms-request-id": [ "45148fad-3348-4d27-9bda-3649c8adc029" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:45148fad-3348-4d27-9bda-3649c8adc029" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:24 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvW7oZrUOftw2qTtZRjtQpLA3KYLvkBOxWXc+UmzqhG3xUfq9dpFu5X7Ee44DBm2A0UtaY+vfbEA7SvnT5PeZz1ovFovjEDZZqGxJdTem+PMNeONuUQjyIO7kEqMmJDE4HL2Y9bj3mUbKxWORvE9nb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9owGSmVKxGdx/cm4nHlYmGFW/diDsIFcR4KK9EjlVfn5OyApe4QSDQTCfEjoNVmyc0hTu97I+Y8LghjMmFbC7FrnXbS516pC4Pn1PT0FZbm+eipTgS69aeAqB9qfo5lZkOfF3qD93ALIW+NS300v" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8545,15 +4975,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+17": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1895" ], - "x-ms-client-request-id": [ "30cc5f34-40c7-4146-97b3-e15ad9e8bca4" ], + "x-ms-unique-id": [ "2543" ], + "x-ms-client-request-id": [ "b1be18b4-8338-4787-a2e3-5da7b71b13a5" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8567,16 +4997,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "37698fc5-a93f-416d-9f56-c86751c9e0c0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14915" ], - "x-ms-request-id": [ "37698fc5-a93f-416d-9f56-c86751c9e0c0" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181625Z:37698fc5-a93f-416d-9f56-c86751c9e0c0" ], + "x-ms-correlation-request-id": [ "f65e4867-3527-41bf-bf1e-b0759fe8bb3f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14895" ], + "x-ms-request-id": [ "f65e4867-3527-41bf-bf1e-b0759fe8bb3f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:f65e4867-3527-41bf-bf1e-b0759fe8bb3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:25 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkwBGi7n7JGtt9uPEV9jwT5Nh9eoFbjNbRQnCj/pX8OtvM80/VWcw/kSsggnXfstjHn1x8daG55apc9eYNGzLB0i7Lcee1EcF/7c7zUENd679GZK9RVwvuvljqfNMxrsJ01rQ2CqTGdAPYhffaWvz" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpXIEZRdomlaIAHGCgXfZbwsVu5eZiGxC0aHlGLFaEjhO2yX9cjb/VsZXwl/meL+NdW5EtocvvFW35GrIua9iEfGk1PJM/vZEcRxoYf9dWRfBSTa1cuv7EQPCybMH2fntkp2ezEnjYTvwAZuX2rYO" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8586,15 +5016,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+18": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1896" ], - "x-ms-client-request-id": [ "88d8986d-9ca5-49b9-be4e-0463fc90b211" ], + "x-ms-unique-id": [ "2544" ], + "x-ms-client-request-id": [ "e51201c5-684d-4643-9517-956ccbfa9fc6" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8608,16 +5038,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2300d820-31a1-425a-b8ae-4df013f9a4eb" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14914" ], - "x-ms-request-id": [ "2300d820-31a1-425a-b8ae-4df013f9a4eb" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181625Z:2300d820-31a1-425a-b8ae-4df013f9a4eb" ], + "x-ms-correlation-request-id": [ "adf61005-ba5f-4d7a-93ac-7afd531750e1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14894" ], + "x-ms-request-id": [ "adf61005-ba5f-4d7a-93ac-7afd531750e1" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001318Z:adf61005-ba5f-4d7a-93ac-7afd531750e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:25 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8W43CK0l6iddqsqMjgHdmwFxtgRK3i/3xXYNoPsnExSiLfrTXKFg/196QBfWnBi3LaxTb9QIxmYWSxNnufcyY10lzL9A/0bmed3AwXCiIrW2dKHBhQghTnEA55SH4ChmauuG2FAZYct04aLc4fHb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDRKNVQYNfGrRqq/Xp9c1zGpxFnflpCAX4ROToxkmUHxG7E8AtNGWeObTGG7JcLC+41lrkxbXNdtiQ6o8/76lyCJmXmE9CvkuGx195IH3A1QdSPSrwka5JN5UIVGrrCpBk4MDP30CYRhP6Cau1Knj" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8627,15 +5057,15 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestListInvalidLocation+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas?api-version=2021-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1910" ], - "x-ms-client-request-id": [ "63377bf3-d12d-48dc-8d63-26321615853e" ], + "x-ms-unique-id": [ "2558" ], + "x-ms-client-request-id": [ "b86ec417-6c8c-467f-833b-4903603da844" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8649,16 +5079,16 @@ "StatusCode": 400, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f01df268-fc4e-4f15-a67f-7ec27aff17ad" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13865" ], - "x-ms-request-id": [ "f01df268-fc4e-4f15-a67f-7ec27aff17ad" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181628Z:f01df268-fc4e-4f15-a67f-7ec27aff17ad" ], + "x-ms-correlation-request-id": [ "827c3ab2-e539-47fb-9b46-9cd950d55c20" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14028" ], + "x-ms-request-id": [ "827c3ab2-e539-47fb-9b46-9cd950d55c20" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001319Z:827c3ab2-e539-47fb-9b46-9cd950d55c20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:27 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHwsXoxb+FTg4LpFY5ZmfxnJEjvc67jx39CvJ8tnUgjrpgZHnT16W5j7hjwrs1tHNY/vVpTzngzo/XWO/3lV0jSE0hY18g7JXOZgyV2O6B6LeBtg57c+daqQ2jl2rHIhEDiSXDqnhvVVAlIJIwy+E" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDfS5X+vVjFJMFwI0rnfUAvsKEkC8rguGH5E++6Q/XiZtNWLMPoJzeyn6LyOQEwZwpyvKhMFiKL7Rf6fQoyO5YekdVrN/pivZsbFNBzJmNSlqwiQHgKjPT5ZgaPJipJ3QHEXv26kxeAMJt40BUSyS" ] }, "ContentHeaders": { "Content-Length": [ "61" ], @@ -8669,10 +5099,10 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestCreateQuotaOnInvalidLocation+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/thislocationdoesnotexist/quotas/testQuota?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/thislocationdoesnotexist/quotas/testQuota?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8686,16 +5116,16 @@ "StatusCode": 400, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bdfe0343-943d-45e1-8ba9-2f81d2805565" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1100" ], - "x-ms-request-id": [ "bdfe0343-943d-45e1-8ba9-2f81d2805565" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181628Z:bdfe0343-943d-45e1-8ba9-2f81d2805565" ], + "x-ms-correlation-request-id": [ "bf9c41ea-8b5a-404e-8a23-f7c548a59a2e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1066" ], + "x-ms-request-id": [ "bf9c41ea-8b5a-404e-8a23-f7c548a59a2e" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:bf9c41ea-8b5a-404e-8a23-f7c548a59a2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:27 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfI8BZspO8TTnJT6j3Zmn7VEZsH3jxjL8exH8XdsWfdZt0F60Qabv9km6GgQrK0n3WR1YmMyp7h9qwvw136S42v77HJeIA2RLgOiKzMunBkubQRUbEMZ8kFYpzqhasjZiPQItUEbopgZlcwuYB0DR" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVi7iEhy6pVdDxo0q8UYXDQlX+Ip9nDYlhmXRNgLESTRw+IdMsgo7AfAwq1onnAK6uweJQSh7gsLbbDtlD1kKgZAbKKC3tP0kQsf38sl/fvbm0mUyFEEnqe6jMpoQO1a86B20KRE5TMu8yF6fLD3c" ] }, "ContentHeaders": { "Content-Length": [ "66" ], @@ -8706,10 +5136,10 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?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/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8723,35 +5153,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0a503f94-6421-4610-bad3-71a3beb26a92" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1099" ], - "x-ms-request-id": [ "0a503f94-6421-4610-bad3-71a3beb26a92" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181628Z:0a503f94-6421-4610-bad3-71a3beb26a92" ], + "x-ms-correlation-request-id": [ "e0856a3c-dfe6-4865-b70d-7aca3a6613c0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1065" ], + "x-ms-request-id": [ "e0856a3c-dfe6-4865-b70d-7aca3a6613c0" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:e0856a3c-dfe6-4865-b70d-7aca3a6613c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:28 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGnJb7xkM6sU7OBJYV9RipngD/C2U5gX2Wop4C5MC9uAPy06cUI8KeRvPI2V1qcaAviUWDGjNLl+QcfKi3HOI6vBQWUfhUy5elFPoBHF+bS+UQnkSa44UeTV6zubd4Rpg6E5/Zhhqii+ZN3CGCAyF" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuLbgopaiEjAq1T034CfcUxjD03Rad7LCNFNnxrQ5mtbBeJVEubvs5Wk5DvwRSfWFfX2hW//T3lCv5p6W+BMHHMBobJxUs1ZEV5tkf51++ps45X+EVtMIi47jkMcudzsbyUoAcuHOE5FT+KoM29LX" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1915" ], - "x-ms-client-request-id": [ "72ca4f90-2caf-44ec-8c11-8e0f8feca602" ], + "x-ms-unique-id": [ "2563" ], + "x-ms-client-request-id": [ "c2032ba1-3ad4-4c86-bf14-bf429858e7b1" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8765,30 +5195,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "847c21a9-4a00-46c1-97b0-b8cd893dab75" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13862" ], - "x-ms-request-id": [ "847c21a9-4a00-46c1-97b0-b8cd893dab75" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181629Z:847c21a9-4a00-46c1-97b0-b8cd893dab75" ], + "x-ms-correlation-request-id": [ "1b30fa6b-0f61-4d49-8fbe-331e1ca20013" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14025" ], + "x-ms-request-id": [ "1b30fa6b-0f61-4d49-8fbe-331e1ca20013" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:1b30fa6b-0f61-4d49-8fbe-331e1ca20013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:28 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkMy7IWg07sxsEE2R1vmBDe4oVAq20XxGQpuhZ3AUz2UH40LBvziSGf0Rf7h33A1vtqLx5CRQbVix4zx0TQXZVHxI0s8KXB4cyG1BlfnerO7UfLbdf6i6dPcpw1IKKiAzo4qJzyZHk8TkOhF/zMYA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+7onezDKSL2urfyEHCJh8VA1VE0vBB3ftjQseqFRb6A9jihf5ufJjh7ukly8T0h6o78EPWOwnq59VldfKCxClRwod9ZIrJ08/kuSASzjbviRyKW2WX41WQkogx4d9gtN3sRw4WNBxKwggtuiZUfS" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?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/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8802,35 +5232,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "af04c050-83dd-4178-90bb-bc3cee1d3f50" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1098" ], - "x-ms-request-id": [ "af04c050-83dd-4178-90bb-bc3cee1d3f50" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181629Z:af04c050-83dd-4178-90bb-bc3cee1d3f50" ], + "x-ms-correlation-request-id": [ "f3e8a89e-ae0d-43d2-99ce-fa20d30cfdff" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1064" ], + "x-ms-request-id": [ "f3e8a89e-ae0d-43d2-99ce-fa20d30cfdff" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:f3e8a89e-ae0d-43d2-99ce-fa20d30cfdff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:28 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnRvyARvV40e1HVxvictfA2e54vzv95tBaa8UE+hdnGWzEjDe9xd4qvQX4rs+IfnGH2bPmHSRRSVm5BkISH5VimUn5hiC6OBDKXypgC/cCTjzs3A3XbGGqBdlTi9jmn21KTk3u1BAzHL7xAiIE0SG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvtQk4K1qknPFeWFmyms8AN7sxK2Z14lrV3xxqfwVXTyaAHHEzua4Nm/0EzXMmZr26X60B+zdAVK7VDXL96N5VbJOQVcee+YfMPddcoz4ouFHTVBjh8uCPYYu0/FcRrauZQKljpAgQZKB+iMPdZsS" ] }, "ContentHeaders": { "Content-Length": [ "483" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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]+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": { + "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1917" ], - "x-ms-client-request-id": [ "a1bf7c59-9187-492e-a47c-9beceff946e0" ], + "x-ms-unique-id": [ "2565" ], + "x-ms-client-request-id": [ "0e04134e-2061-44c9-9ecb-81a4111be476" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8844,16 +5274,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b1d8fe60-87c5-44db-aece-acabbf2dfe44" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14913" ], - "x-ms-request-id": [ "b1d8fe60-87c5-44db-aece-acabbf2dfe44" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181629Z:b1d8fe60-87c5-44db-aece-acabbf2dfe44" ], + "x-ms-correlation-request-id": [ "25a919ba-f964-4cf3-af8d-3bdb97194b56" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14893" ], + "x-ms-request-id": [ "25a919ba-f964-4cf3-af8d-3bdb97194b56" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:25a919ba-f964-4cf3-af8d-3bdb97194b56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:28 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT3r6F5fCXyUE9XWg9kkjdE3Bo+UgeW+DyPGgNyQoi3Kl3nL8gGtDYDWju0XZL1Hhmyr+sSq2S8eXkc+u9v9PRAFkNK3llSlJDofJGC7xKi7B6G4lqnog5ovvmeCNeLUW6pvj2lf6t5GDII+Hb/dD" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2uZXGNBOGImpg6e6oTS11dmdAur8CXNCeyGGD82em6D8viBd6a5Gvsho970T/RxNuXEr9f98WWj+1w7K0jKQwn3zgRP/b49mM1/X0eK0L1g3pDftlj3E1wN1onixfWB5gFE3zZMt9h/YxfLONpzV" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -8863,10 +5293,10 @@ "isContentBase64": false } }, - "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": { + "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?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/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8880,35 +5310,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dbf222f0-90b4-497a-9a07-bfc3861641b6" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1097" ], - "x-ms-request-id": [ "dbf222f0-90b4-497a-9a07-bfc3861641b6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181630Z:dbf222f0-90b4-497a-9a07-bfc3861641b6" ], + "x-ms-correlation-request-id": [ "ddd1de83-a573-4d25-b6fb-c5035c3ab49f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1063" ], + "x-ms-request-id": [ "ddd1de83-a573-4d25-b6fb-c5035c3ab49f" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001321Z:ddd1de83-a573-4d25-b6fb-c5035c3ab49f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:30 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2+iH3vX27cM7pRNB2bD9lP4xNHKfYvEIijjMfPaaD5MXGzwRua3K2+UOV25BLVsb10r4aRgS43TWsSRgk0RIIbef0hYGRHC+o8Ak+NUCSfbCTs540hlyM6nffcIvKBigK23CrizjPHrKXNB841MZ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhNXdtDdmXIWSLFmc6CifL8Irawf6jxDI9J0ltyn54tJ1KnwIAd2dJVA+JvRYVqZYxl72C/zb7b8+am1ieHa+0TjYxKO73s3JiDCrR4n4TafG5UfN/n7xtI8AsBNVqWfGPXTKFtS0nArhjtB/Wp7S" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { + "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1920" ], - "x-ms-client-request-id": [ "6c424645-4725-4021-a3e1-aa1045aed7a6" ], + "x-ms-unique-id": [ "2568" ], + "x-ms-client-request-id": [ "e4ff0bc1-80eb-48ff-a212-cb4fa9fc0c0d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -8922,30 +5352,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dafb7fb7-fd0d-42b6-8d1c-86e97b90a741" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13860" ], - "x-ms-request-id": [ "dafb7fb7-fd0d-42b6-8d1c-86e97b90a741" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181630Z:dafb7fb7-fd0d-42b6-8d1c-86e97b90a741" ], + "x-ms-correlation-request-id": [ "00697fb9-0584-424c-8d42-7478d0d3e0ce" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14023" ], + "x-ms-request-id": [ "00697fb9-0584-424c-8d42-7478d0d3e0ce" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001321Z:00697fb9-0584-424c-8d42-7478d0d3e0ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:30 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvsZOZpKY8V3FQbpSfQTYCT1tn5fjrDtwO9LBA4vtRUmnMIeLRmHnrtLaXwqgHbgTGA1dDr/yW+m1IaZ6Zc0ULfe7EJyFyQz+KV6SmrakYiGvbRiIOh8JBkq2pcb6ZcN0tjq5dlnmxIut0HekowkZ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYufTTXDjepOSCmAQpDWtuL/mdwuBpn3x0jhMZAefzu3vc0I9JChZSTHdRE84YotJ7AUkjrNeQ6ena7QQsqbiSgszIOVxe5QfkU13i4EVP5PUZFjkgOCHlCUh89rGWxAS5yuVgR59XvrNcQKako9H" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+3": { + "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?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/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -8959,35 +5389,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "51233257-acbb-4a4c-b643-037d55b050df" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1096" ], - "x-ms-request-id": [ "51233257-acbb-4a4c-b643-037d55b050df" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181630Z:51233257-acbb-4a4c-b643-037d55b050df" ], + "x-ms-correlation-request-id": [ "dbda2b16-0f99-4332-ad04-6f59d2861946" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1062" ], + "x-ms-request-id": [ "dbda2b16-0f99-4332-ad04-6f59d2861946" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001321Z:dbda2b16-0f99-4332-ad04-6f59d2861946" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:30 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvc+Nqg2gV57Az9tmMc2jxg3PqWvmgjGPJfOG1JTcKczskcGzMBv5CgLV1js7XXESq98tBIRz+uFmc9zqAZHxu9MobyuQHVm+1r2yYxDcdt7fKLfu5xbUkbyu8QBQ0WyzX4v2cCXA4LKqdXiuywBIH" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtGUIXQ7k9uxsSnQ9ThgykR6/Syo/wr1HX7zl+w+TeNP51U6DTWEj3ex3svMQDSc5NSWU2L/LJ39Q2v02PYH3QuCVBzTuo43L+UN4kAq4zt6b6UjZAeSzLHO9bPBFxRgp+PZHbO2zZCqkRAShAZ+f" ] }, "ContentHeaders": { "Content-Length": [ "483" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-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}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { + "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1922" ], - "x-ms-client-request-id": [ "71c30a53-c5b1-4cce-b4d5-8087744657a9" ], + "x-ms-unique-id": [ "2570" ], + "x-ms-client-request-id": [ "228f811a-9518-4619-ba4d-0ae654851da4" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -9001,16 +5431,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5f8120ba-f211-40ab-a3be-4c9d8fca372c" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14912" ], - "x-ms-request-id": [ "5f8120ba-f211-40ab-a3be-4c9d8fca372c" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T181631Z:5f8120ba-f211-40ab-a3be-4c9d8fca372c" ], + "x-ms-correlation-request-id": [ "218c2017-2d82-452a-93e1-41a8b89dc099" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14892" ], + "x-ms-request-id": [ "218c2017-2d82-452a-93e1-41a8b89dc099" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001321Z:218c2017-2d82-452a-93e1-41a8b89dc099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 18:16:30 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzdeHcraQ5jAD3QTSvwRweSxxCDqH07djQRsenjdpHHe4n+2oawFUHw/hO2YY1mb2pXW+ho04vIoOynqIZkGajD/RHyERNDRIlFc3wDkWZH50NmyQHeGY9IaW8Ag8BUaEX3QQoYSDm/LQf5rstb+Z" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvimJSm0Jg94Wx/94zx7zRRCLWcv2cQ+Dtu76hDB7gc7iGdF3wqllRJW8gueHPXWQxaeEbMeM0aEtjZOW31BfFQl/J+WCzcelBVVNu8DYG/cc9JWWcDw7OmoDTZFX+rAMb39KCM0zptusiOCNwTon" ] }, "ContentHeaders": { "Content-Length": [ "0" ], diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json index 9f528882..5e3ad48f 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json @@ -1,13 +1,13 @@ { - "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": { + "Get-AzsComputeScaleUnit+[NoContext]+GetComputeScaleUnitTest+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/computeScaleUnits/s-cluster?api-version=2021-03-30+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/computeScaleUnits/s-cluster?api-version=2021-03-30", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/computeScaleUnits/s-cluster?api-version=2021-03-30", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "567" ], - "x-ms-client-request-id": [ "e526584f-79f0-4166-bd4b-f55010016d5f" ], + "x-ms-unique-id": [ "2571" ], + "x-ms-client-request-id": [ "2a1b8dde-a790-4b84-9caa-6e1a4809d11a" ], "CommandName": [ "Get-AzsComputeScaleUnit" ], "FullCommandName": [ "Get-AzsComputeScaleUnit_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,23 +21,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5d3c1987-33f7-4af8-9c5e-f0a9a7bb82f9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14794" ], - "x-ms-request-id": [ "5d3c1987-33f7-4af8-9c5e-f0a9a7bb82f9" ], - "x-ms-routing-request-id": [ "REDMOND:20210811T220629Z:5d3c1987-33f7-4af8-9c5e-f0a9a7bb82f9" ], + "x-ms-correlation-request-id": [ "aaf7ea81-a093-4fcb-bcbe-ba7bbcc4eac8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14022" ], + "x-ms-request-id": [ "aaf7ea81-a093-4fcb-bcbe-ba7bbcc4eac8" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001322Z:aaf7ea81-a093-4fcb-bcbe-ba7bbcc4eac8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Wed, 11 Aug 2021 22:06:29 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0IqveI7G+xUwj8ApP3XY6dZ37A1X0QJuE+N1Ha9kgCitlcz8jZ6a8R0yrBGxPvrx51icnepoYO9+UssbrsK4qvCtX7vV5htqHsB3Yp6jRFSqPu5MqbzEUjqU+Tm/CD714+0m4+AuNuaKPJSPHvIM" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNrqgXKK2WbBPhrowQW0G8H5AZ1PI555Na6fwlpksSo23uHlT2tzXNrrQ0gNyj1gWn6abDKLxFSbv89KZGUIwW04UpUty9Y9pIMi9w5At3Ias7GzpHPO6fVs1x/D7qxtn6RX+Yf+pdPzljAdMQnv3" ] }, "ContentHeaders": { - "Content-Length": [ "756" ], + "Content-Length": [ "754" ], "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\":\"2021-08-11T22:05:39.316Z\",\"nodes\":[{\"nodeName\":\"ASRR1N25R05U26\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2021-08-11T22:05:39.238Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N25R05U27\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2021-08-11T22:05:39.175Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N25R05U25\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2021-08-11T22:05:39.316Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N25R05U28\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2021-08-11T22:05:39.207Z\",\"virtualMachines\":[]}]}}", + "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-18T00:12:32.948Z\",\"nodes\":[{\"nodeName\":\"ASRR1N22R10U22\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-18T00:12:32.901Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U21\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-18T00:12:32.928Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U23\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-18T00:12:32.87Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U24\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-18T00:12:32.85Z\",\"virtualMachines\":[]}]}}", "isContentBase64": false } } diff --git a/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json index d33c7a49..3ceaf840 100644 --- a/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json +++ b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json @@ -1,13 +1,13 @@ { - "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": { + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3585" ], - "x-ms-client-request-id": [ "110ef6d1-7a2d-4af4-866a-1d8b994dbd5d" ], + "x-ms-unique-id": [ "2588" ], + "x-ms-client-request-id": [ "a8ef7586-d789-4468-a698-f894c8158176" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,30 +21,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8a5e76fd-7d84-4a98-ad04-e2d96d1864f6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13914" ], - "x-ms-request-id": [ "8a5e76fd-7d84-4a98-ad04-e2d96d1864f6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192456Z:8a5e76fd-7d84-4a98-ad04-e2d96d1864f6" ], + "x-ms-correlation-request-id": [ "29969b36-05e9-4bdd-9ec8-74caac281ac3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14008" ], + "x-ms-request-id": [ "29969b36-05e9-4bdd-9ec8-74caac281ac3" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:29969b36-05e9-4bdd-9ec8-74caac281ac3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyO1W7ph2VtleqX4B3u3enV5J1I/Drwh+Xay4kAG7QCo7hbL6pTKQLul413xRfKTzDaTSb8Cjs3A57HjrdMPT5Q9/OFH1uvTBL/DgoBDej1HJ/B//Dv0sLrW9rRVpZuGqTW/DKQPWeQUmwiAv2TH8" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/grS3mgVmLdXamU1l82TYNwn978QNkaTohyn5ckpvEV+88R1zqqDRKsEIDv/4Kk87kFp7QvCL72xIFcir2luNgv4TrxlWb+Dw780RGMk9aWod9u/ZIsKd1NuHXFmqaDLfKkyRZBtyhpM4/kjh5xi" ] }, "ContentHeaders": { - "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -58,16 +58,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "20023b4d-c9ca-4737-bf82-1ccf4039438b" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1170" ], - "x-ms-request-id": [ "20023b4d-c9ca-4737-bf82-1ccf4039438b" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:20023b4d-c9ca-4737-bf82-1ccf4039438b" ], + "x-ms-correlation-request-id": [ "aa4cb94f-1fbb-49eb-893a-c1eab50b0354" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1162" ], + "x-ms-request-id": [ "aa4cb94f-1fbb-49eb-893a-c1eab50b0354" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:aa4cb94f-1fbb-49eb-893a-c1eab50b0354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNt3Ru2wIIftJESWmQLAYJaClP0B6qJPbfaB/3x768akieIyqzNsNsbXrkcCSVwQEBZkLKZM0/R2pmByPUbDmyPySClHe3i40XCLx/Mav0xpYEgB2LVLOFlPDtoDBjTtEg1AQrWYaUfOXW0vSIyhY" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG+N1wMryWoWuZMxu08E33EaBQvH+E2faQgFZKRVFSMmRx3EJM9wWjc9MxMrw//mevwKlr06vlvU8NE/ia0/kwleqM5XmNT0DUd6uiVZ239A7KydbEpmzDybHomLs06iPQ45IDPrPSB/ihe0on919" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -77,15 +77,15 @@ "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": { + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3587" ], - "x-ms-client-request-id": [ "c76af609-d7a3-4e36-b43f-96e53a1bf0a0" ], + "x-ms-unique-id": [ "2590" ], + "x-ms-client-request-id": [ "b9535c2e-e37e-4b1f-996c-9d06c90a34f7" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,30 +99,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1843a257-d6a5-4c21-8108-fe6045da642d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13913" ], - "x-ms-request-id": [ "1843a257-d6a5-4c21-8108-fe6045da642d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:1843a257-d6a5-4c21-8108-fe6045da642d" ], + "x-ms-correlation-request-id": [ "f4a194be-865c-4455-b38e-f93c2dfbfcd6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14007" ], + "x-ms-request-id": [ "f4a194be-865c-4455-b38e-f93c2dfbfcd6" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:f4a194be-865c-4455-b38e-f93c2dfbfcd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdhxHALp9rz4PcxaJmCX0b4oeYgOmUTTwXPYxFGPh675xpU2r5dnRYfK0/Ig7BpNAdEoYHVgH/sepU6XeTenSwV362jbzGdnPy6TUTpRqIBtJ073um4GkpQ98fUFjdqP6Ub0KXsphn7bWOEE271yg" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZPlwdwDbwfDgL17mCZ9pJ/HNGIl39tNwaaBG6gs9nxf7VNOM6wmTQjYWnqfs67pPXaPvA3LsuzDCDjkxPMxc0LgZgBkzAU6EjDsCG0NISNxK4CiYFz7fjIKu/UxLk8ZziV7uiHSQUIS5owDyo2ND" ] }, "ContentHeaders": { - "Content-Length": [ "667" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -136,16 +136,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "af3f00b3-e747-4ec7-8355-54dbffa229f6" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1169" ], - "x-ms-request-id": [ "af3f00b3-e747-4ec7-8355-54dbffa229f6" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:af3f00b3-e747-4ec7-8355-54dbffa229f6" ], + "x-ms-correlation-request-id": [ "c3e7dd5a-722a-4546-80d5-43a6ded097c5" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1161" ], + "x-ms-request-id": [ "c3e7dd5a-722a-4546-80d5-43a6ded097c5" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:c3e7dd5a-722a-4546-80d5-43a6ded097c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV3L8r/scDv2kKLSEcedPSGpuRjJ+3hn4WhcQomuQMeR28QcLKDVl3anXyQJLWCiRC0FbrzUcubGvMrYygdGBQFLyLTBiss1QKmVLJ2T+5vzrxpG0lJ47dM49HuoPbgQNZ8Cf2D6G1rqWkd4CJwu8" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrb1oXLrh8P3Hpk800EWdvp87lqxjpebC034FMGi62q8hLaL9ykI+G1R26xTTg4dKr5GCxlEgyPc0q91jrdwk0NXSnn1cVZarYKYCxT01gLfT/ZyaIWK4c3L8TBcfL6dek1d4ro5hZMWcPRW9bLlS" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -155,15 +155,15 @@ "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": { + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3589" ], - "x-ms-client-request-id": [ "14bf08ed-108c-400c-940a-fc3f6659657b" ], + "x-ms-unique-id": [ "2592" ], + "x-ms-client-request-id": [ "b811509f-3f11-45ea-b575-07bd4c0da19d" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,30 +177,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dd2f62fe-36d6-4b04-b69c-272460d6f455" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13912" ], - "x-ms-request-id": [ "dd2f62fe-36d6-4b04-b69c-272460d6f455" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:dd2f62fe-36d6-4b04-b69c-272460d6f455" ], + "x-ms-correlation-request-id": [ "0af9da17-6288-4594-83d6-75e3612cc7b6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14006" ], + "x-ms-request-id": [ "0af9da17-6288-4594-83d6-75e3612cc7b6" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:0af9da17-6288-4594-83d6-75e3612cc7b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLEBdRtUoajN7ppCNGaaWfboMntiqI0TdtboFwEyII+k4BOH03FCymm7qnVy3lymBJ5nQ2ZPow4gDOBli68N0s+1m0M7FRLD3YMxpTiZwLL3arMQeoEpXGmmuw6a8wzf6PldRuFnzWpXMqcEpBsRG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvf2+ohtq1D42EDzx6g55aMnRUxbp8h6GxKMUQC33HKNusMtAnsJWXRsE0ijwIZAH5EsHJHUfAK5IZ0tJHjYGLCfEJo16qvu3pyLVHglZf64cY4qZ2qb14kJJRksJxIbC7ii4W1EbI4ya++CjEj15r" ] }, "ContentHeaders": { - "Content-Length": [ "666" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -214,16 +214,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "660b112c-4afd-4925-a83a-6a9b2c10c7b1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1168" ], - "x-ms-request-id": [ "660b112c-4afd-4925-a83a-6a9b2c10c7b1" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:660b112c-4afd-4925-a83a-6a9b2c10c7b1" ], + "x-ms-correlation-request-id": [ "c45ef687-a1b4-4c4a-a954-4d5e534c010a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1160" ], + "x-ms-request-id": [ "c45ef687-a1b4-4c4a-a954-4d5e534c010a" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:c45ef687-a1b4-4c4a-a954-4d5e534c010a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYwgrs1H3Hmt5KPhjvl+QNcZGIdHjZILF2cRN0B57Uf13vg9e6LxsYrNO85PveNTn5CEPDn2FDhPD+FROxagQj/JPAYS5D2kjUgTCmdWX/SEnmmrczG1fl7bjxBpkAKMApSC+ra6MwBsF1lDlS3/J" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmfRPZM+34n12UkpinOPNu0OsnAzNxkY5quiVSuYycv2tEr8jzqkAq3tnyljTMrzhsdB66FM7cJfnuj75r/6SOmMaP0cDfsG6wslQd6GP26TCI4MzA0XabWQNCo/3oVFeXOMTqiUQhICkVW8GwR0k" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -233,15 +233,15 @@ "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": { + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "3591" ], - "x-ms-client-request-id": [ "d3867996-b1af-40ac-a71e-c8c873bf252f" ], + "x-ms-unique-id": [ "2594" ], + "x-ms-client-request-id": [ "6db8495d-9ba4-480c-a700-70fd1a53d70c" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -255,30 +255,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "42ec75c7-e33b-4cf5-ba07-593402dbe02e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13911" ], - "x-ms-request-id": [ "42ec75c7-e33b-4cf5-ba07-593402dbe02e" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:42ec75c7-e33b-4cf5-ba07-593402dbe02e" ], + "x-ms-correlation-request-id": [ "226f4d5b-9611-48ae-94c8-79dcdf57efbb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14005" ], + "x-ms-request-id": [ "226f4d5b-9611-48ae-94c8-79dcdf57efbb" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:226f4d5b-9611-48ae-94c8-79dcdf57efbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:56 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV729ut6IzurcBuYIA4fg89SGntgjflUTmx3jaZkK2xfrwD9tA28Z7bivo9t0SpGsmkx0hcL4OPRoz1lcn0UmeNxtrgJ4smT8+H80x3UbjLaghaTK3Nxp5rxI8qJT1/9/P11WG3Sc/7NvZFGRauaL" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJuEdmUFpXYuBZsFPy1fIc5F3nOKq/z3G9yeVjbJ9wkCi1DibHTxZHgDg2DsmTgoCzNeAV3TjlrYAEAwXXVWGbkQ6Y0ZQiWCMhyM97hV2UZl3y9JaGmMxmbP4qg1AXmKh0KC7FTcQW9YuOkUtb9ME" ] }, "ContentHeaders": { - "Content-Length": [ "682" ], + "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\":[\"2ae3aec2-7ccc-45f1-ac30-bdd9cfac47dc\",\"a9f15e55-76e4-41a4-a6ee-393fac684772\",\"efa7a43e-984e-4f38-b0f9-9d010040b2b0\",\"4d021d6d-06f5-4443-b47a-69a71bd5c24a\",\"c4311e6e-91fb-4795-835d-29a19a69640a\",\"6be96ba7-bcf0-4637-80ee-8f2367393c33\"]}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { @@ -292,16 +292,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "30c27e8b-f2b9-4abf-8b77-0e92b5fdc72d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], - "x-ms-request-id": [ "30c27e8b-f2b9-4abf-8b77-0e92b5fdc72d" ], - "x-ms-routing-request-id": [ "REDMOND:20210819T192457Z:30c27e8b-f2b9-4abf-8b77-0e92b5fdc72d" ], + "x-ms-correlation-request-id": [ "4c9d6f8e-50a6-4578-b1e9-5d8df91af26a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1159" ], + "x-ms-request-id": [ "4c9d6f8e-50a6-4578-b1e9-5d8df91af26a" ], + "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:4c9d6f8e-50a6-4578-b1e9-5d8df91af26a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Thu, 19 Aug 2021 19:24:57 GMT" ], + "Date": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCSXcIvAyz1htAKnK+FYgd8QCI5Kh9ulYD+7NOH0RjQTH+I9PUTjuGWCwb/l+mlkzxS7XMif/VoyUW2RCVwCkzjMrlHsHVp6FS3AkpwKmaWMHO0n4rKpr5asqS8x3Ohq2RIj/H1bXARs/2vsTatqu" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvr3kiAcGSDuT8gRSKFCMlNxKKQX/HmuUXGYI5GtqJZDc0n8OnI1eUk4iu61NMlPom4NmafRqpyY5KdJQLTFswARZ4T3VUFfOhvc0JJ/99lLWqE8By1o9SEqQxL+BkOehCXup+15vwtyy7QnlpAnVI" ] }, "ContentHeaders": { "Content-Length": [ "0" ], From 322541f6241ea7c542016275f0587b2d61b3d6d3 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Mon, 21 Mar 2022 14:42:12 -0700 Subject: [PATCH 27/34] Updating all recordings. --- .../test/Add-AzsPlatformImage.Recording.json | 434 ++-- .../test/Add-AzsVMExtension.Recording.json | 316 +-- ...puteUserSubscriptionFeature.Recording.json | 104 +- ...puteUserSubscriptionFeature.Recording.json | 68 +- .../test/Get-AzsComputeFeature.Recording.json | 16 +- .../test/Get-AzsComputeQuota.Recording.json | 2036 ++++++++--------- .../Get-AzsComputeScaleUnit.Recording.json | 20 +- .../test/Get-AzsDisk.Recording.json | 164 +- .../Get-AzsDiskMigrationJob.Recording.json | 96 +- .../New-AzsDiskMigrationJob.Recording.json | 48 +- .../Stop-AzsDiskMigrationJob.Recording.json | 72 +- ...ComputeGlobalFeatureSetting.Recording.json | 104 +- 12 files changed, 1724 insertions(+), 1754 deletions(-) diff --git a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json index ddd7634d..386697b9 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2351" ], - "x-ms-client-request-id": [ "041c044b-56ae-423e-81b1-0406602fe74c" ], + "x-ms-unique-id": [ "1276" ], + "x-ms-client-request-id": [ "8d367123-89c8-436a-ab30-4b09016a0fa7" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,23 +21,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b292b53e-7d2d-4775-ba4d-61e7e53f0bbf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14190" ], - "x-ms-request-id": [ "b292b53e-7d2d-4775-ba4d-61e7e53f0bbf" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001144Z:b292b53e-7d2d-4775-ba4d-61e7e53f0bbf" ], + "x-ms-correlation-request-id": [ "28f73a2a-3c24-484e-8194-59782db5ab61" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14035" ], + "x-ms-request-id": [ "28f73a2a-3c24-484e-8194-59782db5ab61" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213754Z:28f73a2a-3c24-484e-8194-59782db5ab61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:44 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4XMxtDDIbrBMtMkozQoojRaFoL0KYsqY4eoW4QGdhRFEu29H5OMMA/30mK+yXvrpyKM3CZPS2GMX0D+Kb0XxaPU9xtlMsWVJLubxAFlZ6p0wlPn4q8a+yWTZ/IUF1L8Fa1OftW/G+K9OteMN7YdW" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+1c+DKxhI2y73/V4IuHv4zze9Vhjw4eoAjZHU3kZQTy8+v8UiOMhYTOEjhIMsUqFvj3q9vp4jfHR/43hgWgo/kkkl+aH5zkXFM5zdUIdo62XkDborPOYkm5boDazpCsQxyVB3Bb4kjdByGOARiDP" ] }, "ContentHeaders": { - "Content-Length": [ "10163" ], + "Content-Length": [ "10742" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } }, @@ -48,8 +48,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2352" ], - "x-ms-client-request-id": [ "06c68110-c0ae-43aa-b86a-94caf9d96a55" ], + "x-ms-unique-id": [ "1277" ], + "x-ms-client-request-id": [ "f83e9011-df98-4be4-ac48-94e9e1901cf5" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,23 +63,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "caf4de3e-dd21-4dfc-b93e-54010146f856" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14189" ], - "x-ms-request-id": [ "caf4de3e-dd21-4dfc-b93e-54010146f856" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001144Z:caf4de3e-dd21-4dfc-b93e-54010146f856" ], + "x-ms-correlation-request-id": [ "eaaa077c-0f9c-416b-856d-8a3b9ddbe40d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14034" ], + "x-ms-request-id": [ "eaaa077c-0f9c-416b-856d-8a3b9ddbe40d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213754Z:eaaa077c-0f9c-416b-856d-8a3b9ddbe40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:44 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:53 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRJvvd89dcIabuo9pqlGKI5fF0zDDnhBxIFxPqJMff0rpCluHLykXHyZBtoL6iENlrffarlQzTleC7fqKwCbYk7Luurkn8KSQPkSDk46RpvUg8h9d8YtFw8hTvJdRofRJ43MLYt7kLOrIEj3Hh6qT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvopqd6xPm/RJ2AqascCZYmzU3avYbOhr4zl7eYfJnpbrUgG+dOYpbtsWE8sgmeCevULgiXjiCuFAqQuk5ZIKMrCmqAwDM0xuTSeaeblwxK5Fq+si50mIEz8s+Rdg5GEweD/VWQzKNhwje24/HX59S" ] }, "ContentHeaders": { - "Content-Length": [ "10163" ], + "Content-Length": [ "10742" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } }, @@ -90,8 +90,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2353" ], - "x-ms-client-request-id": [ "c1451ad9-52fa-437b-bf48-bdb9760d1a58" ], + "x-ms-unique-id": [ "1278" ], + "x-ms-client-request-id": [ "2e439b57-ebf7-4247-a82c-3bec0f88c1d9" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,16 +105,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8ccb653c-e3f5-45e8-b932-3c13634a9ef4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14188" ], - "x-ms-request-id": [ "8ccb653c-e3f5-45e8-b932-3c13634a9ef4" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001144Z:8ccb653c-e3f5-45e8-b932-3c13634a9ef4" ], + "x-ms-correlation-request-id": [ "2234b76f-7f87-47df-b54e-7618725edcfd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14033" ], + "x-ms-request-id": [ "2234b76f-7f87-47df-b54e-7618725edcfd" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213754Z:2234b76f-7f87-47df-b54e-7618725edcfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:44 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvluYWRRlOAsBibZrxCKni3t9upM7IhRq5HoRvX59VzqHwI8YRdq/7MJ7TEzM0uVEpOloayQanfng/05kPClKIbnt3oHvGN+ytehGpKZVzf1drUjYEZhiJN8XBTSzBbxAqinCq+3C7Dm+c2ya7xfYo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoF6NXAbe2/TI3AApFfOWVuefl9Z7EzVO+c7AQqytJpvLt273OI05niQBGV5hwWtXkhhsPMHECx81Hif11SPwFljMMjmux9f1MvU9EQrEeXUlBHtju2oSZnGj4dv7TlT660qneNmpEUKcMuzGX0pu" ] }, "ContentHeaders": { "Content-Length": [ "601" ], @@ -132,8 +132,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2354" ], - "x-ms-client-request-id": [ "95551555-3159-4cc4-97ac-eeb551dae329" ], + "x-ms-unique-id": [ "1279" ], + "x-ms-client-request-id": [ "57362985-7cab-460a-b6ee-e0aef01ac94d" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,23 +147,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9a7961a7-9252-447f-a8f4-99a63bb8f2ad" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14187" ], - "x-ms-request-id": [ "9a7961a7-9252-447f-a8f4-99a63bb8f2ad" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:9a7961a7-9252-447f-a8f4-99a63bb8f2ad" ], + "x-ms-correlation-request-id": [ "8c7f47e7-e4f0-4602-bb5d-af6eb6a9d79f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14032" ], + "x-ms-request-id": [ "8c7f47e7-e4f0-4602-bb5d-af6eb6a9d79f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213754Z:8c7f47e7-e4f0-4602-bb5d-af6eb6a9d79f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1rUEYa9ABu6518nwEMw98+HK5/Q81tJOc0eXyCJyePq1fNWtBFHOpIT1V8ZCXOnLDKNMrFPS6iYpz+eg5UcQ/MTL/79ilRI6n2W9PRgpPEYRb5Uk4HCXCZQhjn2sM4XrsO3sDQZ1uXdfDUZzTN4E" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFxX4/a29o4zuhKPc1cJxFAMgLyeU5Jozf4/FJrMQiwH3n6Tfuh6gaJV0BiBWRF2whMWd6rPcsnOyMS9mq0yc2T6n1UW33oewU82Rp5eNZ3VP4RvDP9cYubCcxh0tPcniqIt8iwaM8UG9GJeD/y13" ] }, "ContentHeaders": { - "Content-Length": [ "10163" ], + "Content-Length": [ "10742" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } }, @@ -174,8 +174,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2355" ], - "x-ms-client-request-id": [ "488e0ed5-23dd-4f8e-aec0-fb5551a21d4b" ], + "x-ms-unique-id": [ "1280" ], + "x-ms-client-request-id": [ "b7b2ad38-6f64-4d59-9b63-c62437dabcfb" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -189,16 +189,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "43760d43-9efe-458b-bec1-e37111d79b51" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14186" ], - "x-ms-request-id": [ "43760d43-9efe-458b-bec1-e37111d79b51" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:43760d43-9efe-458b-bec1-e37111d79b51" ], + "x-ms-correlation-request-id": [ "050fdf93-1133-4350-b7cf-67586bb2031f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14031" ], + "x-ms-request-id": [ "050fdf93-1133-4350-b7cf-67586bb2031f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:050fdf93-1133-4350-b7cf-67586bb2031f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYSFOzl9hTiVZnL69GLfP1ADjBRcnoUAWXwGjeSMyMvE2kDAvDhbHKM39qgfwGe6Tf3g+xOQCn0Yqq1DDh15XVeOeKFcOpogc6ab1YrkD6eeXsUigFt9vX6EADzz0cQJsdNJni3B/GKjxQG627Kew" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvebC9RecAm1Sp2UmdnWJjLRAulwmAFZPw6yLFmjmWw017eKPK3kSnTKr4HXQC49Tpe8HspwicRcQpWiteQ8+4hK+k96/wAUY3NZL2pZHSjngpx1bxJjvJTXvrz9GiJhY3y2N068Lo7riPT0ghOojb" ] }, "ContentHeaders": { "Content-Length": [ "601" ], @@ -216,8 +216,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2356" ], - "x-ms-client-request-id": [ "fa7d381b-2855-48c4-a5cb-316417afeb00" ], + "x-ms-unique-id": [ "1281" ], + "x-ms-client-request-id": [ "7f71acf5-1831-40f4-95fe-39dd063127d5" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -231,16 +231,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9d779141-712f-4c01-b2d6-a28efc575c36" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14185" ], - "x-ms-request-id": [ "9d779141-712f-4c01-b2d6-a28efc575c36" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:9d779141-712f-4c01-b2d6-a28efc575c36" ], + "x-ms-correlation-request-id": [ "deed6463-d538-4b5a-b3b1-9db70d31d427" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14030" ], + "x-ms-request-id": [ "deed6463-d538-4b5a-b3b1-9db70d31d427" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:deed6463-d538-4b5a-b3b1-9db70d31d427" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu4oFGuIacn+MOcIBx/eciyd8r7k8+H3OwzbhbNvpeMjXGEDTc47U6C45hGNiktqly/7ISWVEkOZXHOUou3G+bTKVD7SvHQm3eTXKl+arA08/vyqkUxZ91KqfdOkiYWoS+11XDZpZorClvRlYykYf" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhU1YbI/IQyjUDR3qbkkxId/HDc7Fs+QTYwH6SmXMgFd/DJcbjIig4xWBvBKwqcbIfLBtktNP4ioXmjLNSQRPk1hoZ02fQ1e/m5YC4RxkBBI+G8e5DFzBL4YCOxuQqOxtKtEXvxXwd8BBsCB51wAC" ] }, "ContentHeaders": { "Content-Length": [ "893" ], @@ -258,8 +258,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2357" ], - "x-ms-client-request-id": [ "1119ceff-b360-4bb8-9496-51fb13ec939c" ], + "x-ms-unique-id": [ "1282" ], + "x-ms-client-request-id": [ "9e9d7659-5ef0-44fd-a377-f52d385735ee" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -273,16 +273,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2c27f91e-24f9-4413-9a10-4f7f44010879" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14184" ], - "x-ms-request-id": [ "2c27f91e-24f9-4413-9a10-4f7f44010879" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:2c27f91e-24f9-4413-9a10-4f7f44010879" ], + "x-ms-correlation-request-id": [ "039af90a-4975-481f-a8e4-576f6b520bfe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14029" ], + "x-ms-request-id": [ "039af90a-4975-481f-a8e4-576f6b520bfe" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:039af90a-4975-481f-a8e4-576f6b520bfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:54 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpWpzwU6PvUrd16QUcIs78vfJcxpDAh46IlkjoIxuURUpt0snQElQNfZKtCRgJ0PEWiZcm920WRamojSFF5Nahw+DL0WWei8v7QSmIr8k1MLU++dwteThIaQ5eCuJFLNxxEiH3Vf6alOIsBBTowiN" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrmK6aQBd1K/++211sC3culE+/eus0mE1n29cRTDFsWTr7HulS4mtXzput/01mYCjCMu/5j7c45WtZxqFb6mDU6tWEywSE7VsDekIYoOj3D2TjyyxYXQPjmen1eXBaHy7esbd/Hks0ymgICAnH8Qq" ] }, "ContentHeaders": { "Content-Length": [ "895" ], @@ -300,8 +300,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2358" ], - "x-ms-client-request-id": [ "606228c5-9349-44cb-82d9-bd34af93e49d" ], + "x-ms-unique-id": [ "1283" ], + "x-ms-client-request-id": [ "5104e393-3cbd-4dcd-9378-65d5a9818598" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -315,16 +315,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f0242b6a-82ce-4996-b1c1-73c53e57ee36" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14183" ], - "x-ms-request-id": [ "f0242b6a-82ce-4996-b1c1-73c53e57ee36" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001145Z:f0242b6a-82ce-4996-b1c1-73c53e57ee36" ], + "x-ms-correlation-request-id": [ "012bc71d-c8fd-44dd-a23e-9050dccaadec" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14028" ], + "x-ms-request-id": [ "012bc71d-c8fd-44dd-a23e-9050dccaadec" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:012bc71d-c8fd-44dd-a23e-9050dccaadec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjMO8dnP0/VxSeoKWCLOeAMNAG20rmYPpgZLFyZ1dGAiKEgqVD2XVX7YQ9/ugzJdw8mF9JKD1DG91Vd5lVDrelkwdPxECdibWRt6YfK25fhUGFj9IzMZvu+6uMzAVVkzyMzD/EU0eB7Bs6TN1AoPK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXqzqaM9TNqQ9kKjkD6VXoJ/qsCGXthq5SDqqLFYBWmZRn05F5qZKhwrzk2jjRQiFwIaE0Rnhu/CUJvFs1+7026FIyR04bSAhkdvuo7NiHqspdhNKVdsj0KLmzEid7T6eZIv212B1fVym1Wnaz+0G" ] }, "ContentHeaders": { "Content-Length": [ "1127" ], @@ -342,8 +342,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2359" ], - "x-ms-client-request-id": [ "c4e3703e-2ab5-40b4-a836-02b73bf63556" ], + "x-ms-unique-id": [ "1284" ], + "x-ms-client-request-id": [ "4c43fc58-9aaa-4316-9965-bea835d13341" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -357,16 +357,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "64295e09-7dea-4aed-a0b0-d61f28171c33" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14182" ], - "x-ms-request-id": [ "64295e09-7dea-4aed-a0b0-d61f28171c33" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:64295e09-7dea-4aed-a0b0-d61f28171c33" ], + "x-ms-correlation-request-id": [ "02882386-b10d-48ed-80cf-137ae19ee06f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14027" ], + "x-ms-request-id": [ "02882386-b10d-48ed-80cf-137ae19ee06f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:02882386-b10d-48ed-80cf-137ae19ee06f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:45 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5J1g4e2L0wmGSEODe5iq8qA+qosZ+VC76w/1RX9Vo1Lj8HhEEOYAhP0rZeOjCbEmrcsuCCd45Jvd22XXWqH/f8rMITmMXi/61Dj3qvbLYdlaovpctgjkt61BrWN/+cQ7bULkTxrXFzYeTIUUJnB1" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDx7FGyE1mKfbOxAAhpPK6syLKdEavx+REbK0ZWSLkYKAhZuvS5SkvJrcv/G3JczPhKvWEL3Pd1xj2hZisNFytxd/PU8Lz7UYwBjaCJWPKjFouNyFgj8jg900B2II6nwRAmtlLVBZwaD2V6qlekkD" ] }, "ContentHeaders": { "Content-Length": [ "1178" ], @@ -377,15 +377,57 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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+7": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "1285" ], + "x-ms-client-request-id": [ "10e30b7c-bb4f-4660-8b3a-6bb72bbd0f27" ], + "CommandName": [ "Get-AzsPlatformImage" ], + "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/Az4.0.0-preview" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ "eb6f7488-55ca-4476-b777-e6dc42c3c936" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14026" ], + "x-ms-request-id": [ "eb6f7488-55ca-4476-b777-e6dc42c3c936" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:eb6f7488-55ca-4476-b777-e6dc42c3c936" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "Cache-Control": [ "no-cache" ], + "Date": [ "Mon, 21 Mar 2022 21:37:55 GMT" ], + "Server": [ "Microsoft-HTTPAPI/2.0" ], + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcJFi/ov4kx1PUOeUDNbmJ2sTjm49Jj9LzeBUTGI/kl8bh+Kk/TEmz0jf7650SfCxPs2DJHBGNpZarPljXGSad2zhuIPKCxaSoLZXf+zPHFnVmVIUn2FIa58w+ekq67aVQvyOfxvBRDHHnJh9ygCJ" ] + }, + "ContentHeaders": { + "Content-Length": [ "578" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", + "isContentBase64": false + } + }, + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2360" ], - "x-ms-client-request-id": [ "90c0885e-e71c-4581-9283-21dcf43342b4" ], + "x-ms-unique-id": [ "1286" ], + "x-ms-client-request-id": [ "89ac7b2f-66a2-4903-b296-d04ad8d6bd12" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -399,16 +441,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a51059f6-899d-49e9-84d7-13738f66a35e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14181" ], - "x-ms-request-id": [ "a51059f6-899d-49e9-84d7-13738f66a35e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:a51059f6-899d-49e9-84d7-13738f66a35e" ], + "x-ms-correlation-request-id": [ "e7672033-1b88-423e-944c-73544a59ba64" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14025" ], + "x-ms-request-id": [ "e7672033-1b88-423e-944c-73544a59ba64" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:e7672033-1b88-423e-944c-73544a59ba64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUa/RwYknSf8hA/FVdvEM1ydMm2uBqwncxKOapZ0vTjmBOXFXiM70p9A7HYUIC9Z5K9YN+Dx7wIaoMv6QYoqZq+IFHAmumh4bj/CAJ7BwdZFOX8sDeqP0/iX1qRoaMU2sVVXW7s+AM7MGS01AY7hC" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdUaVc9xXyMBCBme0akLSaPelrgd45MbtJBfCt3mj4orSe0byCJV2PF+FqC9ieNJGQy111dZG2KPrgDHWrmQPupBz910+OD1Za+aIkD5fya4+qDEio9iRq1TjarMBw1iwQDjeF+pgYTmMc5IWpzxr" ] }, "ContentHeaders": { "Content-Length": [ "615" ], @@ -419,15 +461,15 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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+8": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2361" ], - "x-ms-client-request-id": [ "b085cbac-c577-4bee-9a88-764b094ad505" ], + "x-ms-unique-id": [ "1287" ], + "x-ms-client-request-id": [ "fff14391-f7e9-466c-9a12-1c63b6977a96" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -441,16 +483,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "be0559ae-0403-429c-b5ac-52f99b9b4033" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14180" ], - "x-ms-request-id": [ "be0559ae-0403-429c-b5ac-52f99b9b4033" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:be0559ae-0403-429c-b5ac-52f99b9b4033" ], + "x-ms-correlation-request-id": [ "6425a456-e96a-4f35-bd34-e4b717a4b90f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14024" ], + "x-ms-request-id": [ "6425a456-e96a-4f35-bd34-e4b717a4b90f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:6425a456-e96a-4f35-bd34-e4b717a4b90f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:55 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0Hpx0+xVImWyOqPp8dF2EZt7g/zrpOe+d/q/+4ZHOnXlKL61V35FT3+87dQASIRT99GAVDBHDFLih7PD+WoU9N4FbydyajVY8w/Jcc5mwtciFmoVAXk+q8/7EQ9kWACZvgwE4kmiCMTKt4cp9U3a" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvR0XYimeTQYxRnEX1+C3aKCOUJsuJr5XUV3JD8tdy+1I1NVC7ApOGtZnfQ5Dhz8AM6t8CkE8rLFixco3WfzB74Ba5zZORdcpldPSUpPI3cdf1DEC0BpzApUNHHXsQcVV55/K1OcM+ci2HudqNdiQ4" ] }, "ContentHeaders": { "Content-Length": [ "999" ], @@ -461,15 +503,15 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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+9": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2362" ], - "x-ms-client-request-id": [ "97ef5e51-32a4-47c8-a34e-490ebdbe0a6a" ], + "x-ms-unique-id": [ "1288" ], + "x-ms-client-request-id": [ "20af3e35-aa98-4aee-8fb0-8578b9e5b2be" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -483,16 +525,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "09c3cd61-192c-4bcf-8dbd-6686f9264b2a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14179" ], - "x-ms-request-id": [ "09c3cd61-192c-4bcf-8dbd-6686f9264b2a" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:09c3cd61-192c-4bcf-8dbd-6686f9264b2a" ], + "x-ms-correlation-request-id": [ "341d9272-bd03-4bf9-96c2-2dcfb70850cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14023" ], + "x-ms-request-id": [ "341d9272-bd03-4bf9-96c2-2dcfb70850cc" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:341d9272-bd03-4bf9-96c2-2dcfb70850cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyRCwoFCFQt3F3Nk3RNai8JLIR9cYf23IqESpYF/h3VmU44eK8OfQjOls1e/E6qTTKmzP1FkawiE9J82SqONm5q5kyqjMNFg2029XGKo7xgw17fDjQ2xZHc7zDYmalwHAK455FyAMur/UQTrwo19Z" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6nKME+sTaDIpogg7YfiLMuB7Ex0BUNMUGxYS/lbI2CGG0YuERKpYl9uM6laYxzqakg4vqQT7w4bMHcTDcT8GMLBxaTVXzlBF89hUHgYnd3pvCvHVVmjkL6hS/ASLlqB3H2ilb5bjOsTNYSqrU5P/" ] }, "ContentHeaders": { "Content-Length": [ "989" ], @@ -503,15 +545,15 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.0?api-version=2015-12-01-preview+10": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2363" ], - "x-ms-client-request-id": [ "e6c31af8-70cf-4336-8c10-0bdfb2130e00" ], + "x-ms-unique-id": [ "1289" ], + "x-ms-client-request-id": [ "055ec986-89b2-494e-bd50-47deaad46b8e" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -525,16 +567,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3d8d260b-22bc-440f-88ae-71219869dcea" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14178" ], - "x-ms-request-id": [ "3d8d260b-22bc-440f-88ae-71219869dcea" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001146Z:3d8d260b-22bc-440f-88ae-71219869dcea" ], + "x-ms-correlation-request-id": [ "3d96fb51-1097-4451-a629-e17aefb0c308" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14022" ], + "x-ms-request-id": [ "3d96fb51-1097-4451-a629-e17aefb0c308" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:3d96fb51-1097-4451-a629-e17aefb0c308" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:56 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1tI5gx+HLkd+Y2GtrN2KQIZLY95HSJpuojF+887p9B80zMHa1HJjiDQPFyWo7bSTHvc5qv5KOXj8UbPZWR9KBrNQGbiyq3PQeRW5hFxdtJUTEhbyMZtEfxGb7ZTsb6CrXWnNCPieuQ3lZuidIinI" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOeuUueOeJ6a/rU5/c83XYz3W+n0fQVpS8SJTxUH3uNFPFIJscA5rpX1Kc0OWgCqCE97z49HssJIzTTgnEWFJtpUuK53YnlDq0HvyigG9cvLOUpxZXcY+BZYYOL3DgQo9Uk4n7qJozAhbtQpp0UL8" ] }, "ContentHeaders": { "Content-Length": [ "574" ], @@ -545,15 +587,15 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1?api-version=2015-12-01-preview+11": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2364" ], - "x-ms-client-request-id": [ "0828189d-889e-4658-a0fe-c8008d0966e2" ], + "x-ms-unique-id": [ "1290" ], + "x-ms-client-request-id": [ "162d57db-0177-45e7-8072-cedebdfe8b22" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -567,16 +609,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cd6d01bc-6227-4611-a491-de55f1f23e37" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14177" ], - "x-ms-request-id": [ "cd6d01bc-6227-4611-a491-de55f1f23e37" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001147Z:cd6d01bc-6227-4611-a491-de55f1f23e37" ], + "x-ms-correlation-request-id": [ "65a260af-ebb9-440b-a887-3d712598720c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14021" ], + "x-ms-request-id": [ "65a260af-ebb9-440b-a887-3d712598720c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213757Z:65a260af-ebb9-440b-a887-3d712598720c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG0MgQgT2ufoWs23G2Psc6dnssdyOt8qXr359N02ppAHjqv6RnXYQ4cH26Q5ohA+cmF8ROD/WQLHNvdVjU5W3zschd4CZBZcEIyYfefja6flSxgsn9Nxnd1ReSwcF5kSV9XfcwhU5D6jPjOAUMqEo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWNbgFs0r5GLYPDxQ6enyVxywBT1Wde6XtsSw5ZcHTEfJ0Fxnr+3MZbFa1X8VER2ZRNpF+tai8RPJQpvfzRjQF9oYBUeIVFw960O06aiGSiorxbb/xSjXY942iXn+jquTigEiitgxi7mFZRPV1FpT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], @@ -587,15 +629,15 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2?api-version=2015-12-01-preview+12": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2365" ], - "x-ms-client-request-id": [ "8f18d8a2-220b-4a2d-856b-ce059598c407" ], + "x-ms-unique-id": [ "1291" ], + "x-ms-client-request-id": [ "c1bbf606-f982-48a2-83c4-4155308f79f5" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -609,16 +651,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f0f9b618-e05a-4b76-ad8b-68b2183f99f9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14176" ], - "x-ms-request-id": [ "f0f9b618-e05a-4b76-ad8b-68b2183f99f9" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001147Z:f0f9b618-e05a-4b76-ad8b-68b2183f99f9" ], + "x-ms-correlation-request-id": [ "f0bd82e9-a1c3-4a6f-b468-a1194a105646" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14020" ], + "x-ms-request-id": [ "f0bd82e9-a1c3-4a6f-b468-a1194a105646" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213758Z:f0bd82e9-a1c3-4a6f-b468-a1194a105646" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:46 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT/B/aCQrOsuv+7vkA9XALZE4Jb5YG+ClLdj6eZCNnev1np5jE7KTT3h3zsYBKOA+vSEzWPFRMXGnMmlSi7HaNcXip4ZSEKqeq1NUNER0nRQLfUNbMALBRS4BUtAg6J94GUytVczFniHStCKcjPZH" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4KcYsceFUnzotaPofSzjKyNxAmML+AhUHlEL2NPhAhqJrVaVJ13X31Zqd+dmmxrtjrvzxSYlOMMTUJuErjQc5lhvcfRYPOB8rcbWglddIcOww660hBZao381XWV2NCrfthUWfyOnZFTrHjZ+fKsl" ] }, "ContentHeaders": { "Content-Length": [ "574" ], @@ -629,15 +671,15 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0?api-version=2015-12-01-preview+13": { + "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "2366" ], - "x-ms-client-request-id": [ "70c9328e-1823-4ff3-b685-14b8ba5d4ff7" ], + "x-ms-unique-id": [ "1292" ], + "x-ms-client-request-id": [ "bf47e1d8-c758-42dd-bcb8-7ca754f1e4a0" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -651,16 +693,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e8cda702-0b47-44c0-9e2a-73806e1ed18e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14175" ], - "x-ms-request-id": [ "e8cda702-0b47-44c0-9e2a-73806e1ed18e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001147Z:e8cda702-0b47-44c0-9e2a-73806e1ed18e" ], + "x-ms-correlation-request-id": [ "1d6f18ff-cf42-44d7-a354-7876c7672983" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14019" ], + "x-ms-request-id": [ "1d6f18ff-cf42-44d7-a354-7876c7672983" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213758Z:1d6f18ff-cf42-44d7-a354-7876c7672983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:47 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:57 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvv0YJ4kbbggkZR4hKZTiuEBxAeNAgVm5K1swX/bkk2ccCTA5lmO8DGbNVECj/PEdn/+wPDhVasFV8RVCGlfLuv4DBY+L8jrPC8uxCpJErx4UPhzt2xtDpNOlkAvI8cR0H+8FeRN+UTbOUZIOSLh1B" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOk8iRlcik2NZ3v0BnsHE5z6f1B2n5EPo7lHlkwJydlfWdANw7Tf/WRlhKYxNZUZCetgipsf4+dlpiROvKlyOPzN1I2pB40t8FNeWN4Ewdag1Rs/EsUlonqv/1LQtXWP7RHKCxvaXZYhK84S/SEDM" ] }, "ContentHeaders": { "Content-Length": [ "1131" ], @@ -685,26 +727,26 @@ } }, "Response": { - "StatusCode": 201, + "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ae76c489-6723-4f31-abfa-1e649dcc37f6" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1087" ], - "x-ms-request-id": [ "ae76c489-6723-4f31-abfa-1e649dcc37f6" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001148Z:ae76c489-6723-4f31-abfa-1e649dcc37f6" ], + "x-ms-correlation-request-id": [ "c7a5a795-64cc-4600-af2f-11294c094b0a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1063" ], + "x-ms-request-id": [ "c7a5a795-64cc-4600-af2f-11294c094b0a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213759Z:c7a5a795-64cc-4600-af2f-11294c094b0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:11:47 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:37:59 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnNsPhwM+2i5cqGc6xdTQgwLmUrFjHFPPhjFtLnXdLJA2bfrh/8lzQJ/21lWIZy8oq8CJi9/9WW14sgMvPmb+Z9F3QfMsQpOgl1iO75DHs8eMVZ2HEFWd6I+v4GF9wbuaNv+xkRbe4nYXNOtm5VrF" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviSDPuZOsdeA+sLVomQI1phzrfePXPkAd1ppzxi8vSBcU2LnlHa/eqyWXPiEk3X++qQyPOw5m/gnmdjvr9X3nlh+dUiZ2OcIBm0goHw36gblaD0DwmGOoH8/03dcvDtdgV8wbhlCuG/BL5QYS5wXl" ] }, "ContentHeaders": { - "Content-Length": [ "577" ], + "Content-Length": [ "578" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Creating\"}}", + "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, @@ -716,8 +758,8 @@ "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "2368" ], - "x-ms-client-request-id": [ "15d0ebb3-2558-4db5-a600-ae73aa95d39c" ], + "x-ms-unique-id": [ "1294" ], + "x-ms-client-request-id": [ "b151d7b4-0024-4fdb-a25b-76025ebad228" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -730,16 +772,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e50e911e-6bc5-4879-9f6c-8bab2c3306c4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14174" ], - "x-ms-request-id": [ "e50e911e-6bc5-4879-9f6c-8bab2c3306c4" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001218Z:e50e911e-6bc5-4879-9f6c-8bab2c3306c4" ], + "x-ms-correlation-request-id": [ "17d65d25-8d9e-490b-b1e3-fd1d1070833e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14018" ], + "x-ms-request-id": [ "17d65d25-8d9e-490b-b1e3-fd1d1070833e" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213829Z:17d65d25-8d9e-490b-b1e3-fd1d1070833e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:17 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:38:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrl+wPEeUXplCudyv3XKsfMTWv1hTr4JmqAPV751R5iHMto+Pho3MhNhgiGc8qH8I4MciciXTzRpREMfmGnGCYDO64VgSK63YZmcLk7AOFRDz1gIvs4Oc5xRxW3/uh0zzX19PMfZStok7ky0hpJBx" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0e7yzkS7u7bddCmcWJj3Mlh4edbL0dHwGBkkoq8+riiAb07EGIcE+tRzw1xTIkCSfPZr1r2/S3yk2jQBTj/vJLMxT5KqVwYl8cC5CJWQndgQTdbmyNBhTUCJ/aoq2+FnjGXD2kQL6qfcMwNR+GsF" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -758,8 +800,8 @@ "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "2369" ], - "x-ms-client-request-id": [ "15d0ebb3-2558-4db5-a600-ae73aa95d39c" ], + "x-ms-unique-id": [ "1295" ], + "x-ms-client-request-id": [ "b151d7b4-0024-4fdb-a25b-76025ebad228" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -772,16 +814,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3a273cd7-1fe1-4b46-bb79-bc25936207d9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14173" ], - "x-ms-request-id": [ "3a273cd7-1fe1-4b46-bb79-bc25936207d9" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001218Z:3a273cd7-1fe1-4b46-bb79-bc25936207d9" ], + "x-ms-correlation-request-id": [ "d885ff38-f9f8-4f46-988d-718ee06cda28" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14017" ], + "x-ms-request-id": [ "d885ff38-f9f8-4f46-988d-718ee06cda28" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213829Z:d885ff38-f9f8-4f46-988d-718ee06cda28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:17 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:38:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjAyHNiW8yOpVIGHpunEGvuDKozaPn1NQVnnICfme2oU2nnuS+z/SPSPjF+9IM4rndgSiyDGDKcOKTz7I1y2TJXDyFfo6IIhQnuClaHh/SJEvRyLHq4Pjx+xPVhSj6qS8c/HEQgaTG0IXj7/FEUf9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3zH35bvQ1cHxeAdizT7j8TQ54ss6s4nfqWNLkn76aNj+OraX7fjgqvWSzRJgd2p6psXQ7LG3g4mh8blKel3vHtmz8kDM7DQwE5PRTVZcUZK5/z0jHmBA2RPhCecLdz8UyLLToA6FhX5OGf7gat6Z" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -809,16 +851,16 @@ "StatusCode": 201, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "435379ba-7183-418d-aba3-130f62076c99" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1086" ], - "x-ms-request-id": [ "435379ba-7183-418d-aba3-130f62076c99" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001218Z:435379ba-7183-418d-aba3-130f62076c99" ], + "x-ms-correlation-request-id": [ "53362489-43d2-4f6c-b86f-3a1a6a73fe13" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1062" ], + "x-ms-request-id": [ "53362489-43d2-4f6c-b86f-3a1a6a73fe13" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213830Z:53362489-43d2-4f6c-b86f-3a1a6a73fe13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:18 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:38:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi0JJAupNihMz3+MdrEdLEfZuUeoAUvKGeBbxvJ+YubnW8OYoBGhNPMxKZCA7FneFD5iScA0W8vIrQgynjEDUlLIRv5BGtf5PHl6/R3WixyTzKadxXVQ4pwP2jALRXJkRcgd7iqUQInHnbygMr87h" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzSEd0CB5sX1CNwOSaHYlBqpFpavAgb4i8gfYsfu5HL8SQJEplVtPU4YpkyrlheO/wajjqkUY+DZpNSudEsdeDEUe1HnkGv37GqrbHgnLArm7EC3vfo1AJiOGQ3s/Quifed8+naRb3+sQKpUqeveg" ] }, "ContentHeaders": { "Content-Length": [ "577" ], @@ -837,8 +879,8 @@ "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "2371" ], - "x-ms-client-request-id": [ "06b90c71-e9e5-4b80-9e07-4a2aa4811356" ], + "x-ms-unique-id": [ "1297" ], + "x-ms-client-request-id": [ "5398e9af-0c30-482a-a7b7-99eea6b2919e" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -851,16 +893,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cebfdcdb-28af-4da3-9f06-c75436056824" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14172" ], - "x-ms-request-id": [ "cebfdcdb-28af-4da3-9f06-c75436056824" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001249Z:cebfdcdb-28af-4da3-9f06-c75436056824" ], + "x-ms-correlation-request-id": [ "26b523c7-bfa3-4ba7-8445-3f4ef9cf49b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14016" ], + "x-ms-request-id": [ "26b523c7-bfa3-4ba7-8445-3f4ef9cf49b4" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213900Z:26b523c7-bfa3-4ba7-8445-3f4ef9cf49b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:49 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIvIH55V59G51eKrXNHmzOxoYGS5ijmTLJbS37na3kInJbx8Q8V4N1i4m5G1VTLwmXxaYqQcGVOEtsllmj8x4KbCMlzx6rIlyx60Cf2bh/dQ2NoaPL8W4mZC8kX3T2Cxsi97ZL/dWEZ8rg8qUZRJS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9a3NlkyEJg1t+j8RvYSkl9+SwNe7Rp+xBEFKCQHbgQBI4R1oJvGTKOsffyZZj0snMykoOB48HFZlhSm0gODkQgC8nX/2kO/CpWU3YA/klsVIUtrry5o8xE9tWT4FgX7xTMLM5ULzeRl7JyyUsbtT" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -879,8 +921,8 @@ "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "2372" ], - "x-ms-client-request-id": [ "06b90c71-e9e5-4b80-9e07-4a2aa4811356" ], + "x-ms-unique-id": [ "1298" ], + "x-ms-client-request-id": [ "5398e9af-0c30-482a-a7b7-99eea6b2919e" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -893,16 +935,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "95cc2465-faef-4548-a1c2-631d43db8a99" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14171" ], - "x-ms-request-id": [ "95cc2465-faef-4548-a1c2-631d43db8a99" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001249Z:95cc2465-faef-4548-a1c2-631d43db8a99" ], + "x-ms-correlation-request-id": [ "5353963b-cd8b-40f8-adf4-e71fddcfa877" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "14015" ], + "x-ms-request-id": [ "5353963b-cd8b-40f8-adf4-e71fddcfa877" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213900Z:5353963b-cd8b-40f8-adf4-e71fddcfa877" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:49 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8D3Yi9n+GIXJN1d753aRK/rvRdEht5SWoOh7AHaorypI2pDg32aXskZlhaDyLWcrZKDxJDyOi67CkkJ49qM5BmPBD7bb/USPS3QMitKoHIThpbTSmwOKqyDCcEBhZHX0OP/WbqMKXshlSznd4r1z" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBWPlZI2ABthilPMxl1ocA4eqJvlxsVVFCno+Ku6z7X62dE45KIdJEQ9vSs4XOTOQbvvM9Tkvw9E6cGFYzhTqXMBqzFI7Hnxn4jwAcTDPIH4HWRNs5pMnTsGCeWfZlNmD36PVpV+w5ox5GDHn2voV" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -920,8 +962,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2373" ], - "x-ms-client-request-id": [ "e963ce3e-e0c5-4063-8177-3236bb5556c6" ], + "x-ms-unique-id": [ "1299" ], + "x-ms-client-request-id": [ "1fdff896-696d-452a-a756-cd71e3a166df" ], "CommandName": [ "Remove-AzsPlatformImage" ], "FullCommandName": [ "Remove-AzsPlatformImage_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -935,16 +977,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "eede922c-c58f-426d-88c5-756a540e7a3d" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14913" ], - "x-ms-request-id": [ "eede922c-c58f-426d-88c5-756a540e7a3d" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001249Z:eede922c-c58f-426d-88c5-756a540e7a3d" ], + "x-ms-correlation-request-id": [ "4d2152e0-351c-47af-9e6d-987cf4a1ee10" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14889" ], + "x-ms-request-id": [ "4d2152e0-351c-47af-9e6d-987cf4a1ee10" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213901Z:4d2152e0-351c-47af-9e6d-987cf4a1ee10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:49 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:00 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvedi2MNR8sXquZ7OuYvsgQY4vkEaSv+eZMkwBIYjymmh+okY/i3A1EJ2E2xUnv7hbWxBA6fYqfxDBByb0RrRE9v4JFyrhgFqxCJhJWrCy9ZEcSmqTQsTg5o4XXZU/+NazrTNI1doUW1Ong4U8agSE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY7M8A2KY4mVMlEfrUeaxrWgY7+RZfzDkD+nE+OCQgSAyT+zMZJVhR2hp966c03aYJ/q+bGJ7saKwLVqTcQ7l88yFKPJJCdt8WSYbm7tukdapnaXKKGlP+X3upiPlsVWofj9WXJPsTe3xz8p6ho7G" ] }, "ContentHeaders": { "Content-Length": [ "0" ], diff --git a/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json index b2aaf7a7..3e0b3b96 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2374" ], - "x-ms-client-request-id": [ "67b8419b-a39d-4863-b1ee-35aea43acb81" ], + "x-ms-unique-id": [ "1300" ], + "x-ms-client-request-id": [ "b525b6e3-26c3-4b87-ae38-4402a8a1ac19" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,16 +21,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d6695e88-4739-4d50-b303-cfaa603d9c41" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14170" ], - "x-ms-request-id": [ "d6695e88-4739-4d50-b303-cfaa603d9c41" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001250Z:d6695e88-4739-4d50-b303-cfaa603d9c41" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:50 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjTDNmtQJJiFVj3PT1KHQoGG8KZC+qJx/qQi+fZVikxqTFFIG55sfJQecyI/m0kuOvyYRn03jNDNz57FnX75dKvhsTkADsp/k7IkAEL7YNFEtxWQKs84BfNnU5zleBYFB+nw2XonMG81uxRTp50KG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvB0buI9hh3fkjdxGkG9NjSh9/lQdM1aMxrEIe/4VW/jGeUT+jbCQZInCncAaicGeREYCrit7rDoA3MSEEPEu4EOyzNR+lgGvU/V5rjAo5tgzUJ4qEUkhRzpXwRksRUYv62X++gRCRxRKtPMxbOcp0" ] }, "ContentHeaders": { "Content-Length": [ "9382" ], @@ -48,8 +48,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2375" ], - "x-ms-client-request-id": [ "9fada458-dd6f-4fed-b637-f7a2857f2101" ], + "x-ms-unique-id": [ "1301" ], + "x-ms-client-request-id": [ "03b8d082-4f93-41ab-84fa-07688919122c" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,16 +63,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "895c9449-9598-4988-8739-a5cff1d424fc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14169" ], - "x-ms-request-id": [ "895c9449-9598-4988-8739-a5cff1d424fc" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001250Z:895c9449-9598-4988-8739-a5cff1d424fc" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:50 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvN0aUnzLyqG2DeyRBWkfu2pCvczHwwFWcvH+dIp/TpJg7IExYlYymupO1MAsJjnF8/Cudh1CF+EgLz+MsYiNKEcjlO1s01RmqLkz7aWINAUpxjj+3ue8yqzXukKxjWH4Wt4B3BTDsawegJqGbVGvh" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYUbuwYYOzHWp4ns3qxdGqEbX0QZUzpFxP8WCWbQOSZzRKOgpDMEOQbsuFspJWEjz/4AQtl692x+zv+HhcW6WcmQBiD0Br2mTASc/FVFSwRVuGbJF7muXRLqaTVD1aCiHIWjaKlq5/UoN+rr/2/LK" ] }, "ContentHeaders": { "Content-Length": [ "9382" ], @@ -90,8 +90,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2376" ], - "x-ms-client-request-id": [ "a48d64e6-19cf-4a1d-89e6-c48136c08e3d" ], + "x-ms-unique-id": [ "1302" ], + "x-ms-client-request-id": [ "b3845797-1a90-4624-9fa7-33ccc89dcaae" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,16 +105,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6866b46d-1748-4304-a74a-b478a5f85fa4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14168" ], - "x-ms-request-id": [ "6866b46d-1748-4304-a74a-b478a5f85fa4" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001250Z:6866b46d-1748-4304-a74a-b478a5f85fa4" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:50 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfdtcy0s9OQAG/TtmHb0NW9V6EfqmRW3irqWfzkwI1VzfaUVK3j4e6ly0x6xKQ27fr6jSkTG5gFGrPcGJ3H9onPZJ8137Hh3H343uwtTQpmB6eGb4LhV1Ei7mHPjpYrdOU/pIv3v5MMs99Qqkql0Z" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvD0YzWAROK0tWSB/xz5ebxEbywYQKN/7ExPNqAThOz8HOfiPQSqgSLKXS1gqwovWMOgA+JsaI5SrbBvDtA5ReI6bcZFz9PyT83RaccKYNusN+kY48LFTL8XX6zsFD/3Vz0DTZ3F/b7gUvQ5Ot9shT" ] }, "ContentHeaders": { "Content-Length": [ "9382" ], @@ -132,8 +132,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2377" ], - "x-ms-client-request-id": [ "5cbf1943-7d53-48f3-ab7f-e706263c19d5" ], + "x-ms-unique-id": [ "1303" ], + "x-ms-client-request-id": [ "6d396339-24a5-4187-9391-b53909aa093f" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,16 +147,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b4360440-d96f-4999-8c74-513c57b9f2c2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14167" ], - "x-ms-request-id": [ "b4360440-d96f-4999-8c74-513c57b9f2c2" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001251Z:b4360440-d96f-4999-8c74-513c57b9f2c2" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:50 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:01 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMsFMhN3AfcFDQWXeeiNVa2QuFwAu2UYDfUnqX+XsNCIy9k8DY+Xz9XiGdWusQWbvuPyr8rqi6UuU7hi780TYUX3DLVE0SzK1KZzFxYLHEYObwiOzIdZ859YjrwgUYk/FzeZVGJ9F9AHXKrr2OP4L" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvycb2eNtobD+45MK/foHAHl65CwZ3eMHwfKhVDn4Ejpui+LlTi6L7P5YV6AAsAU6T6OnhVjHLasqY8bcSdqAK/MVRwzDjN3wsaNrF+aAL6syoyQSKuT/lFJcWmEApzJCzkdWHjJCvRw5126NpAWb3" ] }, "ContentHeaders": { "Content-Length": [ "585" ], @@ -174,8 +174,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2378" ], - "x-ms-client-request-id": [ "9a2c65b3-6e18-4892-bb1e-6a06886d203c" ], + "x-ms-unique-id": [ "1304" ], + "x-ms-client-request-id": [ "c557641f-d6af-49c3-bd1f-aaa165e1ae58" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -189,16 +189,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3c71d253-f254-46d0-a4ee-9a18106308ef" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14166" ], - "x-ms-request-id": [ "3c71d253-f254-46d0-a4ee-9a18106308ef" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001251Z:3c71d253-f254-46d0-a4ee-9a18106308ef" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:51 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgFG6isZFDriIl5/QWfeX/ephcYib8ECyTZLAKhCYM05TW6RuaetRbYuH1ieFMmQ2MBcpE5lbjLPAQ181DhH/HohVZILZ/aCd//kT1fJ0Ly1YhcDv+OY6M3G137rVZda0FKbi1fHG2fBRGF+gM+xj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrRgQY7hzP2XCuOQf+YhBb5F2y9jU9UVnsqKS9BtgfZBlygkzo5rGUk0MyE9tEFcSBf8DZxQ2xV7WD+VuKRurBhHtDVpFdht4y2LfP8Hrz5RqM32Q1bHQb2B/af9lDdCdqBK1VdSNycwHJ1diW9SE" ] }, "ContentHeaders": { "Content-Length": [ "633" ], @@ -216,8 +216,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2379" ], - "x-ms-client-request-id": [ "7921244d-efea-423d-8c24-ae2d51c2c8d0" ], + "x-ms-unique-id": [ "1305" ], + "x-ms-client-request-id": [ "dfa57c1c-ea5e-42c0-9b65-6b57bd320027" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -231,16 +231,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "42e8ce32-ee21-40f1-9b52-2a0ef38b1b20" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14165" ], - "x-ms-request-id": [ "42e8ce32-ee21-40f1-9b52-2a0ef38b1b20" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001251Z:42e8ce32-ee21-40f1-9b52-2a0ef38b1b20" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:51 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5pmiX61jA5jcAG9EMKLsuV7yEoidw/uqJ0oT71ULhLLJ3VvhpBiCtqdlHwBK2u53V9jbK+7MD0ZqilI2hPHCMQgcTO2BZfQWCix2glnKE1s0brh9kMEOofL2GM3FWnf4c0TeZsra6IWHTjv9oV3D" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcKd6kIMo5kwehDe3V7EBbk4lyMob2Em/YPW/hXNXF2PNH5p+JhbQ0Cj4Zf8lE0RysEA53GB2dIUWLeE5Sux07wBv3bP1R5FKFlN5xAivNSZf2g6QgBZLkxSPBt1p6sTGscpzVnZI6uaZr+yQ/9RI" ] }, "ContentHeaders": { "Content-Length": [ "629" ], @@ -258,8 +258,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2380" ], - "x-ms-client-request-id": [ "2660f6c4-cb34-4aa4-8e1b-8273a9a81eb1" ], + "x-ms-unique-id": [ "1306" ], + "x-ms-client-request-id": [ "617bc441-fcd5-4177-a1b5-6c9f2aecabfd" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -273,16 +273,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "95670c57-7219-43cc-bafb-f6206d8c656c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14164" ], - "x-ms-request-id": [ "95670c57-7219-43cc-bafb-f6206d8c656c" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001252Z:95670c57-7219-43cc-bafb-f6206d8c656c" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:51 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:02 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxRARK4jJgTN4t1AtHVCqgHPT3oclvrCDsWgl8fLKPvjxlWAQXgfME/gryjNat/TFc1TjfVYLgYI7blifRX0wHNji2KxjUL3q98eP9w1d+A1ZbfqSDxUy5RWPFMstwq4rD3SCHIytAMLhV688tAzN" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcjh7hP0E9u69qo23nw/a5HR4BgzXBOpqRO7HCN59F01yl9SxX1AUML3AZoCstqoRAkgCqFbFYCQlRHZ/4yYD0AyAfY2rMWWorN5jgSLhXDCWZQ5RePOD1sLPd+hHcb0k3NeIN4TZgaqSRVmTWC5X" ] }, "ContentHeaders": { "Content-Length": [ "637" ], @@ -300,8 +300,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2381" ], - "x-ms-client-request-id": [ "2e6da2d5-a88b-4439-8b08-1912d07dbb38" ], + "x-ms-unique-id": [ "1307" ], + "x-ms-client-request-id": [ "44c5f220-9e9a-4cb2-865f-17fa75a4d918" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -315,16 +315,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dd6de921-05f9-40fc-b7e4-198fa996497d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14163" ], - "x-ms-request-id": [ "dd6de921-05f9-40fc-b7e4-198fa996497d" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001252Z:dd6de921-05f9-40fc-b7e4-198fa996497d" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:51 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/uNe96z4XYJ57/rfFNCQbud/iRW72+HKI9fShpl0mlNVXu23jqKyUHVJi8qbD8f8Pcvizb88kw8dhjNnrU32LLfXLUQK6n7vSuAEqVzrNNI2ZHCnDVFJES9wiuoj/xpx6P+/KEcLtkHJDyvMdpUm" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQzfaVwcHKNCrBw6D8GR58tm0c3NKoKScsbzlJUBgLF+x+ws0ZEQ44YZ1V2qdBZfr8QGArJiijjCtbOXRVMHyHkNUoxmUFqTlZIaaTytDLhePodynM1fxHOUJgyRcOoTLxZmC8gFkNsMFs45qms1+" ] }, "ContentHeaders": { "Content-Length": [ "625" ], @@ -342,8 +342,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2382" ], - "x-ms-client-request-id": [ "b3c84e15-3a88-44ef-9bb9-cc294fa2df2e" ], + "x-ms-unique-id": [ "1308" ], + "x-ms-client-request-id": [ "c7bd72c0-2e74-469e-a62a-78d0bbb7cb45" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -357,16 +357,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5b51e094-ef57-4075-9b86-a745d6c80fb6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14162" ], - "x-ms-request-id": [ "5b51e094-ef57-4075-9b86-a745d6c80fb6" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001252Z:5b51e094-ef57-4075-9b86-a745d6c80fb6" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:52 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIvGtAOlQmhTelZVX2NnU6ssBsKt3mARNU1/svEGht9YULUWifrwm1rwxY9kf080iGeYMIyWnwOGGQb7+eqDw23Nez3E4l9/3JmVIugASVi86fwcfNrSB5yVMffMFca3nL3Uv/KOsbca1/mLxkrpl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCqogwou5iYnK5Srlgf8AbNFBrT0cWH/9tVpHOT8cKMxNhgIXRokgOzOZmV9BI23a8WZ0kIpaeisAyI4FGp+syy7CYx++Z/jZnsX2XCwe6gH7Q4wqpJscmgSLgqbiXrQcBQnAZDKBcgOSVK50q3fK" ] }, "ContentHeaders": { "Content-Length": [ "627" ], @@ -384,8 +384,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2383" ], - "x-ms-client-request-id": [ "a5596a58-a741-4a51-8cb4-d597380667f7" ], + "x-ms-unique-id": [ "1309" ], + "x-ms-client-request-id": [ "4b437db0-bdc3-4004-9c80-0949de8729d9" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -399,16 +399,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b90e4f5a-8e07-464f-9c8c-67cf399da745" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14161" ], - "x-ms-request-id": [ "b90e4f5a-8e07-464f-9c8c-67cf399da745" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001252Z:b90e4f5a-8e07-464f-9c8c-67cf399da745" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:52 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEQAQM5ifJgtrxKd0OUSCsnHvjVNT7BsFHWMOkEqQ6JvgEQRnBoAkckaGqGentoutNl8WGa2uo2oH7DljkjFUSD2xrirwyLRDvWfAt2sxUXdmJzITx9PxIVeCfGEDZ3PllMTApomOp4CC2l/7cXgb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAcgxJcDJ4JHgTIiEGLZGF8AeLO6mGTiJPeFdXNLjgpPryAhCR4TE2nqpu8UOm+PcGW+br//6CPcB7NPkX3fWyQ+QsE8plBcPA7C2Y2J9B7/dPr+jpoNpI+tOd3YCvvACKU57EEAnnQ5Crdeh2QzT" ] }, "ContentHeaders": { "Content-Length": [ "624" ], @@ -426,8 +426,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2384" ], - "x-ms-client-request-id": [ "9f183a6f-7af5-408e-a961-10c438f21d29" ], + "x-ms-unique-id": [ "1310" ], + "x-ms-client-request-id": [ "44c34b9e-52fb-4043-ac07-cc6f1a8f5942" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -441,16 +441,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "81dc026b-cf24-40a4-b917-0d0a5c572382" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14160" ], - "x-ms-request-id": [ "81dc026b-cf24-40a4-b917-0d0a5c572382" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001253Z:81dc026b-cf24-40a4-b917-0d0a5c572382" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:52 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:03 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTTHQ6cjVbd7dM8rsLbg3wLI/y20za8sXbKEf2ZOwdc/u5J/NwWgtufK9NMO9OACxpVprTt6jqsEpqNnCMrMgpL/AZcvcS0inmKn0LMXpxnJ571Bk75NGB7aBA5TLfeA3mbhY0KvNW6JYbpgwIEQC" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKChVmY6lRBRdiJQx5qz8D2KIToTvKWWo9FUTmS0eBCmnTDAP16ukGOlaBzk9wPM3Uh8z3sp+TZSy3h8IEGCcxiYG1QZ9pkwcavuC0myHdUN33XUmh1ySvkY6AB4N93dTAudfGpcm/ORC/LUQwoLM" ] }, "ContentHeaders": { "Content-Length": [ "607" ], @@ -468,8 +468,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2385" ], - "x-ms-client-request-id": [ "90f53b70-2fb4-43a2-8aad-d28048ad6c29" ], + "x-ms-unique-id": [ "1311" ], + "x-ms-client-request-id": [ "098f0e2d-5fd0-407d-bcc0-cb90f6396609" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -483,16 +483,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7cfad59c-a5b8-4c5c-9819-e5fc9e96a175" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14159" ], - "x-ms-request-id": [ "7cfad59c-a5b8-4c5c-9819-e5fc9e96a175" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001253Z:7cfad59c-a5b8-4c5c-9819-e5fc9e96a175" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:52 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ92Uhl3pEiDfMMfXS9Q+IeUjOFjAsn9R0waY6LLCL0o9T67UWO8jaDLSCrCXE8XJRdoCxBYa6viLYCet/fpg5dimkwSAYXxhIUlDccw0xF7EFIaeyTgQbXNN5lRkWVlmS4G2SzhXoFP/UJE6KntL" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+6wQrIM0zLdTMKuKBWTZYR2KmHeUJouAzd4osGFAIryGFgXw7g5Almxr3RG0b5zooVACHnHI/Jpn8sn5aCG1cZnP6JzvRQBp8KGWoyZ75ohUmfonrGoONADkQmWCmYVa3il+1Z71EeEj8C4FnSDF" ] }, "ContentHeaders": { "Content-Length": [ "621" ], @@ -510,8 +510,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2386" ], - "x-ms-client-request-id": [ "1f246e89-d09c-416f-903d-821056e2c587" ], + "x-ms-unique-id": [ "1312" ], + "x-ms-client-request-id": [ "edcc97b5-4700-43eb-965b-7999b47bee3a" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -525,16 +525,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "012e1651-a11a-450a-9d5a-aa6a887f9ecf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14158" ], - "x-ms-request-id": [ "012e1651-a11a-450a-9d5a-aa6a887f9ecf" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001253Z:012e1651-a11a-450a-9d5a-aa6a887f9ecf" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:53 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvko1HqFWgxpC44Af3b6v1zwTt4mfR5EQYDNGtCsjB9f6iRluF2rEcdUdjmo5GlHQgFCfoKVqbCofldMG29I5cGKxXgZ4Llt5iDsPFPMjoRQcyUDCW4Wxy8Sc8uzRkQTHdsckFIyHolNEBowBlWOmA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvI6P4xzw9OXS3bRFXgV9lPuLDQ7is7fAHgNA3SIPc501ffPIFAi2dJTb8wUz9JuQEJGMgvji0+udb1xkItBKz3r1ngcWIwb54zhtKfLaZBJAAcHYL6nAo0Q5G5vIXcYMeN1gLb157BmFWohTo677w" ] }, "ContentHeaders": { "Content-Length": [ "675" ], @@ -552,8 +552,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2387" ], - "x-ms-client-request-id": [ "52320b25-342f-4e4d-9cbc-3b58bd5bfb00" ], + "x-ms-unique-id": [ "1313" ], + "x-ms-client-request-id": [ "edeb6680-8675-4b09-83fd-24218a9d5f1b" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -567,16 +567,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b18ba676-91b6-4adf-94a7-f6c688975663" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14157" ], - "x-ms-request-id": [ "b18ba676-91b6-4adf-94a7-f6c688975663" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001253Z:b18ba676-91b6-4adf-94a7-f6c688975663" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:53 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6//oTwq+4W14S2gnLTWf5qohXVd0ZEoi8fEnTWMgZ0jCl8INqlU0UHzdagqRRUHOFCq4R7+rrteV+wjo4byH0kGmf0LCwakEagepVCUICKo5XbL7ULz/+7rq0mEHVm7Tkm7RL+et7+erfcdvhaqy" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSjIsY1PRM2GkNpIGKBQ0OMCYK9V/bGCAihfgr62xHLwkZLYKOftIpQ/cEMXt/tY8AQZVM9Uhq/GufMiSuSNu3u0X6B8B6P4KKGnojOUzbzUmohOlTUzr9fcp69WqCw63L3j6Vxymyk/Guegre+xp" ] }, "ContentHeaders": { "Content-Length": [ "625" ], @@ -594,8 +594,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2388" ], - "x-ms-client-request-id": [ "1b0cbab8-55c8-4f97-a88c-38d28607cab4" ], + "x-ms-unique-id": [ "1314" ], + "x-ms-client-request-id": [ "4a9335f4-9daf-4328-b85f-b60a53db29ee" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -609,16 +609,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "721b3a45-4651-41e4-b3af-6aadeff440f1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14156" ], - "x-ms-request-id": [ "721b3a45-4651-41e4-b3af-6aadeff440f1" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001254Z:721b3a45-4651-41e4-b3af-6aadeff440f1" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:53 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:04 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPO6X65bVFZZYT2hYm3VRUFZ3n0y6pUWghLKr8pWHXAW9WVrvOJ4L8PW+gYOrv6xXK0OupqkXx6kx56pyJ0ehk+o3/wN0Zk8yMAc6HYlygqBSln66GadaJCkVF5cnZrxy0M4sQJvKYxI6aoKzpG2T" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvn8pWxkiIwpUh7gmux0f6KVraGEiD+YIc7HHtIQwrE5JVP2JBFsY6ehjhmmcWnOKklJuA9zmSkf3o5uE/JvZ3pKDbm4pbGwxi1LH1o3gGWUyn/tDKZD0YPNKRhIYxoupkYsqBrNOgSYjGP8R1waa7" ] }, "ContentHeaders": { "Content-Length": [ "625" ], @@ -636,8 +636,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2389" ], - "x-ms-client-request-id": [ "0923c68c-3b7a-4e2c-a19f-9772f7c2c3ff" ], + "x-ms-unique-id": [ "1315" ], + "x-ms-client-request-id": [ "89b64d94-cf91-40e9-9263-460ce594b4bf" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -651,16 +651,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2e0b440b-2404-4f1a-b77f-a18cdcda9251" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14155" ], - "x-ms-request-id": [ "2e0b440b-2404-4f1a-b77f-a18cdcda9251" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001254Z:2e0b440b-2404-4f1a-b77f-a18cdcda9251" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:53 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQn0qj1/JCVYlrAcsOvNB4Ovfh5xZPnKQ2BE9MLLItijijaAHKHWR7YKFX9MmQEdNU88FPG/PBS77v7K450mtZeWnQpKn9873k9uA5j4jFOcGxwZlU3MnJjIpd68gvhI0crYKctY/mVRtv5BRrtOY" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvS7QxRsGpYa9VSZoEqvjKN062fxa8DwqplkqNy9eYbjK1S/l/0stxAGcAlMfU3qPehYaG2L53NSXuN9psnIt2c411N+Is7tIcV/yNrkQY32jvXNDKN7tXrW15r/J+DR25d1aem0aJOckSMKZ1p/Xc" ] }, "ContentHeaders": { "Content-Length": [ "631" ], @@ -678,8 +678,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2390" ], - "x-ms-client-request-id": [ "4e5c7d0f-ea52-437e-bac8-0068e45d734d" ], + "x-ms-unique-id": [ "1316" ], + "x-ms-client-request-id": [ "fe02c5f6-4f09-4c98-ac70-521829aad2ea" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -693,16 +693,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bdf84b1e-6e0f-4947-ae2b-71490bdfdafe" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14154" ], - "x-ms-request-id": [ "bdf84b1e-6e0f-4947-ae2b-71490bdfdafe" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001254Z:bdf84b1e-6e0f-4947-ae2b-71490bdfdafe" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:54 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVNvcgc/s2KiCMVUTjKtR8KnwIHyztbpGFrcE9cZOcMFRZnUyP5iEeoWNtTuJ7/WEZvIW/fdKUbiTH9CY1A2ttFdfJ5Mfb7W2zhDeujWxeCFqe0XtMjjeTjv/XILXrT8biV7O52o52ozjHSE7oIEB" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVQIeu5D5CXl98n9xbjtLkNjkF2Yb6T6avRfQT+a7KOosB3i2jP0Tzvy+huOoyxaAccNBPdBe9+yUc24G0sLcTaPeuYSeJpul1VzjZBJVEgcl+IBnaQf4OjhOhrWGvDu4p8m773D4BiwoQSSV2X82" ] }, "ContentHeaders": { "Content-Length": [ "627" ], @@ -720,8 +720,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2391" ], - "x-ms-client-request-id": [ "3fb8ef09-bafd-47a3-adbc-70bf1631ab82" ], + "x-ms-unique-id": [ "1317" ], + "x-ms-client-request-id": [ "4fe2879d-0732-4f8e-a110-bd67d18dc3f6" ], "CommandName": [ "Get-AzsVMExtension" ], "FullCommandName": [ "Get-AzsVMExtension_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -735,16 +735,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4f5fd591-3787-4e66-9ded-77990fdc39c3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14153" ], - "x-ms-request-id": [ "4f5fd591-3787-4e66-9ded-77990fdc39c3" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001254Z:4f5fd591-3787-4e66-9ded-77990fdc39c3" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:54 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:05 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTv1HrwyVbGOJphAp9aRxg71KLZo8wHESCCeGq0qIx4ip6idTb6cgh2dVyd0UmBcW/vrmCyQ8pWUktivyBpYvDZBBmNPjkY810IP4cFbCwK+mR+wGFWDxNXYXiMpeRXJYIohy0UrkND5fc9tnfPce" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQuCRQNvw+GoJ3k43mS5UFDOx1VyCyKIPDPROTTMyyz6ek59rwE3J8ClswNPMw7ZGzwizf3zL8Wyojs79yQA9u0dVEMK3W2HrlXc0ewhsrdPFW5jozkjllelcQPVKyJg9qcQHx7GsAFXV3/JNAH3M" ] }, "ContentHeaders": { "Content-Length": [ "595" ], @@ -772,16 +772,16 @@ "StatusCode": 201, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ef21910d-47a8-433e-802a-c7dba485d853" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1085" ], - "x-ms-request-id": [ "ef21910d-47a8-433e-802a-c7dba485d853" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001255Z:ef21910d-47a8-433e-802a-c7dba485d853" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:55 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:06 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBxBTPWGc9545VJSqQPPcYzI4q2psspqTUOj4fOdJeHRfSEw7Q/de9Fy2aHW0q2kpD+V9gJwMXgGUjWeq2XTxrA4QK0gRtLPoJFvNRDjVtsj8Pqnap2sqNi4Gu6BRc6Lg+6f4osWkuui2oLWg/G0P" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv14WD1VR79wDKxI9m+DPM7mdHsZ3tjaYe3hixL1lLL60e5HriHeeuH5G8nwTbWGAq05GNYZsOIdmxWSrRY2NxwHEnj+RsVtq2n6aZE8Delt3ZxGH/wNJOgwWnIepUfx58mymIpxVA57GKK5Is1jA8" ] }, "ContentHeaders": { "Content-Length": [ "668" ], @@ -799,8 +799,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2393" ], - "x-ms-client-request-id": [ "5c96a333-b1b6-4407-84f0-0fe1feae8047" ], + "x-ms-unique-id": [ "1319" ], + "x-ms-client-request-id": [ "b0114e56-442c-47e8-a72a-d06e42f866f2" ], "CommandName": [ "Remove-AzsVMExtension" ], "FullCommandName": [ "Remove-AzsVMExtension_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -814,16 +814,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "65e9ca62-000a-4d97-a8c0-0ce83e6d2580" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14912" ], - "x-ms-request-id": [ "65e9ca62-000a-4d97-a8c0-0ce83e6d2580" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001256Z:65e9ca62-000a-4d97-a8c0-0ce83e6d2580" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:55 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWLEpPIEKf2/4Uka4EpWYnygD9vOGtxHPXpPR7BzdMweZ3zjm9mXKUBQ8jO38Lu+kFxWo8vEZH44taSTmMHyQfQIk92915r6lpDJV/kMmxpYcHj1jhKy3qmXZHoZ9auj2Ct4tp/zOENsp3ujX/pqX" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzpfFUwMTHSDc3iAqrOMquC1L8zgTMHIFfjaWSjBA0/JL8oppyMbQtv3Jyj8eqzUMxuq8ZjaVNXaG93BkqES+uhtm22DIhixnKihO90HC9Lkx9XeSGWMVbVaPSdginienSzU5Gl7v/DmnvSygKeEG" ] }, "ContentHeaders": { "Content-Length": [ "0" ], diff --git a/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json index ed84d8b4..c7c0aea8 100644 --- a/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2394" ], - "x-ms-client-request-id": [ "81872077-325b-439e-a644-f3bdc1e7d9ba" ], + "x-ms-unique-id": [ "1320" ], + "x-ms-client-request-id": [ "e40c33db-8505-402b-bf90-f3b7d6c3f6eb" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,16 +21,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6d16f7f7-d264-455f-9257-3ec4457235d1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14152" ], - "x-ms-request-id": [ "6d16f7f7-d264-455f-9257-3ec4457235d1" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001256Z:6d16f7f7-d264-455f-9257-3ec4457235d1" ], + "x-ms-correlation-request-id": [ "9a70f4f4-48ec-4fa9-98ba-cae116130825" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13996" ], + "x-ms-request-id": [ "9a70f4f4-48ec-4fa9-98ba-cae116130825" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:9a70f4f4-48ec-4fa9-98ba-cae116130825" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+GOuU/JO9h265GBTwIZ0oT23DKKhDrA4beJHaHCgnGHKMir85WxvTmnNI7xOIRsO2KGlOKZlU5VK785V0tyx9dH3s2ea52BlBkUo555F07oDk+2uKszYhWAquQd9UpwHfs09TOFlHrU7y6+k9YI9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk8KjrFN5OO4WfFOeDNyEqS0jWrDwrMJXBBcz7NvdnpOhd2EJzb7XYrOUlEnqm3EM8q48lcHOYr733y3bmHtNWpxKOTcOhvaNwGsz9nds/jqGujzMjbDyFP/wrzpeSX/LcoHOXVCokolY8PWLvIVJ" ] }, "ContentHeaders": { "Content-Length": [ "526" ], @@ -41,78 +41,6 @@ "isContentBase64": false } }, - "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "a46bfbe0-979e-4fc4-92b0-7383ab9d3247" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1167" ], - "x-ms-request-id": [ "a46bfbe0-979e-4fc4-92b0-7383ab9d3247" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001256Z:a46bfbe0-979e-4fc4-92b0-7383ab9d3247" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5eU0pbmqBow/5IQgFJRjj5802iyJtly9oJVs4WPKgubiwDQRXxMsfIqcR/6vbNtRHDXMo4p/mbs+sFE5KF2r9l58gABcpa4vhiDcKc8v0Slbjxhurqd3U2Oks1HvWZ2mGF70h+PeGREct7aVZs2P" ] - }, - "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] - }, - "Content": null, - "isContentBase64": false - } - }, - "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "8f1ccb29-c6d8-4d7a-83f3-87e6fe325146" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1166" ], - "x-ms-request-id": [ "8f1ccb29-c6d8-4d7a-83f3-87e6fe325146" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:8f1ccb29-c6d8-4d7a-83f3-87e6fe325146" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAUHJLz2bzifpgUMZYSHP6KGN0GECxv2cReciUFENAXZA7L0Dd+QaWI2LxH0yBsJ+33HOwqDNNrV7Yfgte7bmYFqLZLAWzSRy4kQ4+s0EfKHoRYdC1CHY8rx/dPEGnwN42nBqiR9P0yzj6Ma3U6H8" ] - }, - "ContentHeaders": { - "Content-Length": [ "0" ], - "Expires": [ "-1" ] - }, - "Content": null, - "isContentBase64": false - } - }, "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+4": { "Request": { "Method": "GET", @@ -120,8 +48,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2397" ], - "x-ms-client-request-id": [ "d1b501f5-2cf8-4618-a17c-a63db92c81db" ], + "x-ms-unique-id": [ "1321" ], + "x-ms-client-request-id": [ "3dfd4f59-3d59-464a-bba9-c1f1c33e5de5" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -135,16 +63,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "52c51218-fc4d-431a-9a3c-33e7dad43fdf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14151" ], - "x-ms-request-id": [ "52c51218-fc4d-431a-9a3c-33e7dad43fdf" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:52c51218-fc4d-431a-9a3c-33e7dad43fdf" ], + "x-ms-correlation-request-id": [ "8f386029-5105-415b-840d-06942f16de5b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13995" ], + "x-ms-request-id": [ "8f386029-5105-415b-840d-06942f16de5b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:8f386029-5105-415b-840d-06942f16de5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/tg7zbkLazyRqhlakuJGCuac7eKLcCXhtYBjOSt5JHeihzsxP55MLtmHULruIfVrj6TF8nOBPACJRs3Mk3Q1bOcvpp2Zea8FbhZOTSLlakRKS9/ABF9lxIt7aHIy/taLYq4rbl7J2uu4mmZ5M20X" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdza3Z7sk/bxgDsQQkUXb0vH7wJe7LOZ5NKoRORwDKz1hVUtXjyI/aodXIEYHM/3weHKOXgobChHr7xK2Etg10MBaykswPu8agZtt3LtWFkLx5kIvGrgdRS03hIFwWXZl7oOXN90/fpm8JlPUD1gT" ] }, "ContentHeaders": { "Content-Length": [ "526" ], diff --git a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json index ac10bb0b..77351076 100644 --- a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2398" ], - "x-ms-client-request-id": [ "8c8e60a7-f432-42c7-b85e-5df55ae75513" ], + "x-ms-unique-id": [ "1322" ], + "x-ms-client-request-id": [ "581c72a4-0018-40b6-b470-dd1254684f98" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,16 +21,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5bf86f89-c47f-46f6-9a71-4013184942c3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14150" ], - "x-ms-request-id": [ "5bf86f89-c47f-46f6-9a71-4013184942c3" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:5bf86f89-c47f-46f6-9a71-4013184942c3" ], + "x-ms-correlation-request-id": [ "85e2dba8-b7eb-42e7-adf9-85c3366c5b9c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13994" ], + "x-ms-request-id": [ "85e2dba8-b7eb-42e7-adf9-85c3366c5b9c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:85e2dba8-b7eb-42e7-adf9-85c3366c5b9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvq/xMGymDSblnBIV15XWv/Y9CErmmtcyB3jBdbPg77Enqg8ejbadjw+6Ep5KuyskXYLIe3gESE9hcR+h3kkYXPtGyra3AWJUM47Ar1FSjGneVw68uGiTFyLoxi0DmPcHgn3PVy9whyjXbp+yB8IbV" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcbkCqZa2LaaYWjjxW9dkRXukdW5lbr5MESW9nPWkVVsp55HjRhp6OJycu7+VAZDNL6mpNZIl5nyjmaCoesoS2FRz6nQAoB0kCH/u989rhy0NnwvfEI7p9+wqUoH2JDhop/WS9J15Nfy9qFdD3tNY" ] }, "ContentHeaders": { "Content-Length": [ "526" ], @@ -58,16 +58,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fbd3ed59-d1f3-471e-a40e-547aa2605838" ], + "x-ms-correlation-request-id": [ "d90a2bff-1b63-44b1-ba32-b0d69899b39d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1165" ], - "x-ms-request-id": [ "fbd3ed59-d1f3-471e-a40e-547aa2605838" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:fbd3ed59-d1f3-471e-a40e-547aa2605838" ], + "x-ms-request-id": [ "d90a2bff-1b63-44b1-ba32-b0d69899b39d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:d90a2bff-1b63-44b1-ba32-b0d69899b39d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ3Q4BTpvaM36gcdZ6QzRDXeMzuSRl53I9qcjWpLf++qbH7gQPlVfJJ67T13bqzsoufHpFeQmqi+ufKWaceEO3PzdG3BbCTLHXo+RGR3dnPhe7/am3rTqHkHVIs+p+XJoxF2qdc1qhPgoJ7ctxnWr" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxWwod5otuGGhfq8jl7WmP2YEMR95v+dB5XHdOStfYEDHhDxDBZxuqZy2sMTYKTTP1jceKHLZBVErDvmjPcnmxST26wFXgUDNsLwUUS9S8d6V+43Zss6ET5heyssCslEl00GrBEscLwfKh7051khh" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -84,8 +84,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2400" ], - "x-ms-client-request-id": [ "ddf77892-7586-405a-a8b9-5f402f30706e" ], + "x-ms-unique-id": [ "1324" ], + "x-ms-client-request-id": [ "93cfb827-eb35-4c2c-8df1-1ae7e34e6bfd" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,16 +99,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "56507cf1-136c-4f9a-a9d1-88aa53907b63" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14149" ], - "x-ms-request-id": [ "56507cf1-136c-4f9a-a9d1-88aa53907b63" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:56507cf1-136c-4f9a-a9d1-88aa53907b63" ], + "x-ms-correlation-request-id": [ "289ea3d6-9444-40a0-aee3-c149b4d6d16b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13993" ], + "x-ms-request-id": [ "289ea3d6-9444-40a0-aee3-c149b4d6d16b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:289ea3d6-9444-40a0-aee3-c149b4d6d16b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWSR1bRAH3PJ6fgAx1r0PzDL2RiC4nY7+X5yX7anwKY/m2H60VslqT+YusaXQ74OTIx9zSDftcMLPY/4TDKFNI/5Mnp8aUXd85JuPnO3F0H4xnNdHyV/R9xB3AEL3BqYpVEbToK/V2yGE/fsvH2g+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvooqOFOKW4Jq9iExZbujnvaze4PbxAwiQaHcDlyBwyO4ibT3TOq5E0R24ZuZuqsLYQzrrIvv4Oi/0SqQMywZRdlnoQxpnY8AEOSm66F4hF3eFe7hQuhSbYTPXwO8JT6Lpk+cWKFz8W39YHITocvX1" ] }, "ContentHeaders": { "Content-Length": [ "565" ], @@ -136,16 +136,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2b8e56d2-e238-4312-b6f8-e0810b8d0f76" ], + "x-ms-correlation-request-id": [ "61303759-1c2a-4946-82e5-89436db3b871" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1164" ], - "x-ms-request-id": [ "2b8e56d2-e238-4312-b6f8-e0810b8d0f76" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:2b8e56d2-e238-4312-b6f8-e0810b8d0f76" ], + "x-ms-request-id": [ "61303759-1c2a-4946-82e5-89436db3b871" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213909Z:61303759-1c2a-4946-82e5-89436db3b871" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:56 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvegQxSvcMySsjvLePWJvszeMw0HJFnUR+ZJ3OEoMWuLofYQ/bWrVuEMlGxfhmdSdFCjo3oxBCguB/OUeEGHkfMd1TceOAC2tSAbACed0Xk0TMOu4l9ipzV85w0exuqe6pnLnem/CYHlCPxb5V935J" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvH/oaU0xQWc+R98ULsmORJr5WpnonFBGDiWyIFB19NmfvVSPrqKEaMTrhFOiCL48Hgk6FuBhCAXavqcgTTFwy0w/Hw37D7jDciI2L10EQ6b8lo6MwDDelcQMLgfQgNUN6i9SvpIX9a0xWuoMszPh" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -162,8 +162,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2402" ], - "x-ms-client-request-id": [ "19d89512-1479-40a1-8957-da7d11e4838e" ], + "x-ms-unique-id": [ "1326" ], + "x-ms-client-request-id": [ "5deba71e-0a15-4bc8-90e0-3d52240c34e5" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,16 +177,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2be5a4f2-5248-47f0-b120-7e1bb53a5400" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14148" ], - "x-ms-request-id": [ "2be5a4f2-5248-47f0-b120-7e1bb53a5400" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:2be5a4f2-5248-47f0-b120-7e1bb53a5400" ], + "x-ms-correlation-request-id": [ "1ca65204-3cde-4f91-84f9-82e88d42200f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13992" ], + "x-ms-request-id": [ "1ca65204-3cde-4f91-84f9-82e88d42200f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213909Z:1ca65204-3cde-4f91-84f9-82e88d42200f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:57 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4qxCLJFKQYPSQnR4UH4lMJua8ZRO7IN9wFT9QdSHK67qGPUQuqsEgdc7IC54rAzJ9a9/6EcL2DY2lmMAoucWAQf2fMgA+VJ9pvKOJc8dZb/fhQOyHSC8jqqjIgGIj+EQ1wLcdn+ME3PcuSeB1h7g" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBfk4+4B6dE6r0PCuafwObE6Mvmcqy0Ts/nVwYc2i/cICT/feYqaHIgJKC2D8b7LTl5wWnDwAE1ZC3wQVIvkd5nAc13GrF6PICr/HEni2h8cw+ZaXnM+/BOtaS7O4RWNui1SSnY+AdV23LppNTMou" ] }, "ContentHeaders": { "Content-Length": [ "526" ], diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json index e00b76c6..b0335800 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2403" ], - "x-ms-client-request-id": [ "4fe712d2-1344-4a7d-bc45-bd571ebe263a" ], + "x-ms-unique-id": [ "1327" ], + "x-ms-client-request-id": [ "c669a6b9-94d0-4a88-afc1-b003375c612f" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,16 +21,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "de1112b2-fbee-44c7-a91d-049c47a14bb7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14147" ], - "x-ms-request-id": [ "de1112b2-fbee-44c7-a91d-049c47a14bb7" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001257Z:de1112b2-fbee-44c7-a91d-049c47a14bb7" ], + "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": [ "Fri, 18 Mar 2022 00:12:57 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoyCEJ3w/EmpVlvCsXoORp8yypzaWwah/77RhI5wrGeuoiZXrNEWdUxiUMCA2vmLsf3iXVIhAdhW0tjt7Q0zY/z/qD8NqzydokUKjrdMZ3w2jcPD34yXEwZsxndW0CTBP8D4311ArmQ1wJy/hG0RS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPNe9JhhcULoXN5HTfA3uDeAx8ljH2RF9vKXYRAsOVxKdy2W+UkWRDZppAB7JQU/+DDBikeTg8K/D+O1FaVWH2N9gW6B7h14IWM1Hvavsy1cJYxi+Iy+mtedlvpl4ZrlORfJWa1Z2pyUOkaLTAgIi" ] }, "ContentHeaders": { "Content-Length": [ "526" ], diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json index 9def2430..d1ee4997 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2404" ], - "x-ms-client-request-id": [ "b86d17aa-e4ba-440e-bb91-223f360cf9c1" ], + "x-ms-unique-id": [ "1328" ], + "x-ms-client-request-id": [ "8ded862e-05fd-43c6-ab43-9f7b15d6a0c7" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,16 +21,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fe51820f-4f96-4f69-8e75-64e5e687bc15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14146" ], - "x-ms-request-id": [ "fe51820f-4f96-4f69-8e75-64e5e687bc15" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001258Z:fe51820f-4f96-4f69-8e75-64e5e687bc15" ], + "x-ms-correlation-request-id": [ "4ad64aa7-a494-45ef-9921-57e506dc98d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13990" ], + "x-ms-request-id": [ "4ad64aa7-a494-45ef-9921-57e506dc98d0" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213909Z:4ad64aa7-a494-45ef-9921-57e506dc98d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:57 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+rxX5E3i/PHxoS5SrseGUBx7McSFXt5e+OE+WJJvAOHkfJDfOLISllI/etZIkfH0A+nr805hu1grQKtnNR0X6ZhRCKii1Ai5EEd62JSG+yDxZl915lAyM5SWpuy4D5HGRuKFupKUmqcrfwuMpKRH" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGd2dUcOyT4JwrjGA4mbXlk7qVpUopCMRf2969ZjLRoZjPTxoZAGKFkF0bD20xWPNDISzpq/13vZp0TL1hFpr4ZbV5D7/isIo+556Ssy1oFxk+X+QLc9PFjYwRI3dhTVy3KacQVZEiHK0/IjOuRFM" ] }, "ContentHeaders": { "Content-Length": [ "44189" ], @@ -48,8 +48,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2405" ], - "x-ms-client-request-id": [ "3559aa86-8ee8-45e7-a9f8-7ebf16da357a" ], + "x-ms-unique-id": [ "1329" ], + "x-ms-client-request-id": [ "cbfec1e0-2e28-4a25-908c-8824a73d60fd" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,16 +63,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6da480b3-13b7-4b4c-9e93-093739f8e192" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14145" ], - "x-ms-request-id": [ "6da480b3-13b7-4b4c-9e93-093739f8e192" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001258Z:6da480b3-13b7-4b4c-9e93-093739f8e192" ], + "x-ms-correlation-request-id": [ "65a6593d-9611-4601-bc35-ec88e284e6c9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13989" ], + "x-ms-request-id": [ "65a6593d-9611-4601-bc35-ec88e284e6c9" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:65a6593d-9611-4601-bc35-ec88e284e6c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMWcWL86VCo21/W5yUUZJkK8Qm5Gpni+OzYOcx1XqCWHtv2NMPN8GZHemMVSIIOIUmSImc4fHI7K2Uj8sTllSESKfuq1tZuPfrpH7Ljla8SbgD4zvowaAC18kxhj4ZXHQanXu4a8dg9F+p7BAaAhI" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRva6rP1acNGoqqxtW4HoGAkW8zkKyuKhYcRIhrmjALCtqWhW0vD0z8nY6yl6l6BhT42n+gT5lU8LfmTOT9o1cIhM1Lbd3sGx273wm1ucSAtH0eYJ2mHH866fjhrkbgEKxv4uhDCdUmEo6r9x4WTG//" ] }, "ContentHeaders": { "Content-Length": [ "44189" ], @@ -90,8 +90,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2406" ], - "x-ms-client-request-id": [ "49645673-f4ea-4683-89d3-18b2b65eed48" ], + "x-ms-unique-id": [ "1330" ], + "x-ms-client-request-id": [ "7d2ac611-dafa-46b6-b269-b4aa6dc227a3" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,16 +105,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9ca69861-cc9d-4182-b1a0-ba94be85e080" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14144" ], - "x-ms-request-id": [ "9ca69861-cc9d-4182-b1a0-ba94be85e080" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:9ca69861-cc9d-4182-b1a0-ba94be85e080" ], + "x-ms-correlation-request-id": [ "3e868aa8-167a-45d8-8146-b3da2fc75caa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13988" ], + "x-ms-request-id": [ "3e868aa8-167a-45d8-8146-b3da2fc75caa" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:3e868aa8-167a-45d8-8146-b3da2fc75caa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTzCsMhacZV+yIYKptxgRMfshf9AdS2XidDk88b6OhcajZEM/ueC2ivJ+J30gFEi0HbvQdK/qO68XDMfbKA5haihZBCb/F0E5X/ibp2SjsrGzbQI7JNxN9oksNYtMRmOsxPKA2qp5Qlpr11tane1x" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvElll7ezoxLdpFTWKdPHB1JaSRZdPJPc81nGiKDcf7r4Pt/ZasyxO7b5ZC4KgfNRyCrLxrbydWWLTR6SxT1JV9ldl4jTTZI2UqkfsjG/RD+cU3CQ7aYA/Pebo48Gm8+pTqvd6r0aXSp5JophXjGys" ] }, "ContentHeaders": { "Content-Length": [ "498" ], @@ -132,8 +132,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2407" ], - "x-ms-client-request-id": [ "d54a5054-1809-4c5f-8a89-367d91eb3b34" ], + "x-ms-unique-id": [ "1331" ], + "x-ms-client-request-id": [ "483c256a-b389-472e-b895-3216d4674c3a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,16 +147,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b16578ca-462c-48a9-aa52-2aa4f58987e2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14143" ], - "x-ms-request-id": [ "b16578ca-462c-48a9-aa52-2aa4f58987e2" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:b16578ca-462c-48a9-aa52-2aa4f58987e2" ], + "x-ms-correlation-request-id": [ "9eecd363-139d-458e-a3f1-9718d1df57ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13987" ], + "x-ms-request-id": [ "9eecd363-139d-458e-a3f1-9718d1df57ca" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:9eecd363-139d-458e-a3f1-9718d1df57ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzI1k05dT9TJdQ/m2RMtqLXSBRZ3Pe9WwzDJep8uYrR3WrDlqkTGTgTJrkCE/YnEzhVeG1BnRTsUEBrr1p7RCyMRphvzxqCbQlNaiESxYUOv9z0krdEUo7ASDDFZqYjjRSu3p/mNugbx8k2yKnwUP" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8CnliK4rt0PteXAzS1wHkDz6ofRcxtBVU1Co1gW2gIRdsAHR8X3NToOdKaM8cjcz26jk09/YLUihpAiOgAZVGoZ/0jd/q8lq/qLG7Vl4oqXPwRKrRLgt/klVy1op0T55yG4VrbbUKG5yYVYJf9nL" ] }, "ContentHeaders": { "Content-Length": [ "44189" ], @@ -174,8 +174,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2408" ], - "x-ms-client-request-id": [ "65f362bc-0854-4c6b-a9d1-15fe4094e13c" ], + "x-ms-unique-id": [ "1332" ], + "x-ms-client-request-id": [ "472e8251-c472-4b79-b858-2193d5a9bf74" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -189,16 +189,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dfef6b2e-68b4-4522-9e5b-41329ca1faad" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14142" ], - "x-ms-request-id": [ "dfef6b2e-68b4-4522-9e5b-41329ca1faad" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:dfef6b2e-68b4-4522-9e5b-41329ca1faad" ], + "x-ms-correlation-request-id": [ "3fd34d9a-0745-4f0b-8eba-9a186ea89aa1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13986" ], + "x-ms-request-id": [ "3fd34d9a-0745-4f0b-8eba-9a186ea89aa1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:3fd34d9a-0745-4f0b-8eba-9a186ea89aa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7yEO4adNNINa3H7/Tt3zkL8Km/hSOyu32GdQrUpYWatk6V9JTJTgfQx919XIs5TseDWFz97qwp6Y/thWjOMshE0ZoRwdX1a1ZhHBhawU/Bt4gS9BnfRjADya65IO0/9o13wcy9yy8+RnB8FpjP33" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnOWiRzB8tbzTS6ZwQdrO2AHRBWnzejrCzwgffqnnDuzs4PQtBlW5SNzM7Gqz+kRRajUgpsqy9gzTEbE1XMr/RqyhcxBTYBCIxBFEy5qfquk4VBd89yG7i1jl2TdSD+AjqMkfXROWYwcoAdQYgroQ" ] }, "ContentHeaders": { "Content-Length": [ "498" ], @@ -216,8 +216,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2409" ], - "x-ms-client-request-id": [ "60ff347a-81fb-4e70-9b0c-ff69fc3914b1" ], + "x-ms-unique-id": [ "1333" ], + "x-ms-client-request-id": [ "47fb0459-714d-40eb-a8be-90d390dca628" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -231,16 +231,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c467f538-e85d-4e6f-bd9c-2a0cfc816974" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14141" ], - "x-ms-request-id": [ "c467f538-e85d-4e6f-bd9c-2a0cfc816974" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:c467f538-e85d-4e6f-bd9c-2a0cfc816974" ], + "x-ms-correlation-request-id": [ "21329c4e-6ef7-4ef1-ae37-32a3d9b67f8b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13985" ], + "x-ms-request-id": [ "21329c4e-6ef7-4ef1-ae37-32a3d9b67f8b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:21329c4e-6ef7-4ef1-ae37-32a3d9b67f8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQBKjBVCD0PdejQHbcBp9QJx/kBZcJux4Cx8oG2IealekQt0a6b4PMMr3WvNuVU2gRnLiL0Rl0HYl9x9qpDBsfEnjL1QaUCkcKtVqwNWQ0DP3h3mGdoJS8IjMTnmcnrMwOUw2I2NKkBgHaCb0sH9n" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9CZgUuGo8LUHHRhecyvmlMfHdcQQ9ETssyHgOO2JDqLmfxegE/nH+3yeOPdwEn8d4d9exeHKw4KYBW468jxXCCMP7FdSTRRnrd8lM5HV3hLDn3uotRilVRLrQIsbNUC01qi8zoXHB8e0GQm8pZC0" ] }, "ContentHeaders": { "Content-Length": [ "498" ], @@ -258,8 +258,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2410" ], - "x-ms-client-request-id": [ "a8401c15-8928-4d31-b305-c410f88885e7" ], + "x-ms-unique-id": [ "1334" ], + "x-ms-client-request-id": [ "54ca6046-034e-48c0-b742-50eae587d80f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -273,16 +273,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "44d0ec4a-44fa-4883-b5c9-9fccecc0d869" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14140" ], - "x-ms-request-id": [ "44d0ec4a-44fa-4883-b5c9-9fccecc0d869" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:44d0ec4a-44fa-4883-b5c9-9fccecc0d869" ], + "x-ms-correlation-request-id": [ "9de0f323-95c2-44de-9ca7-7d7c4101c07f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13984" ], + "x-ms-request-id": [ "9de0f323-95c2-44de-9ca7-7d7c4101c07f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:9de0f323-95c2-44de-9ca7-7d7c4101c07f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvirAyvQNBrf/nBOWIWm75JV4e/F7CLJr5HmntfbyodjGXaoyGQYvG5XwLf57QH1VGuzUreQR/ltjXU2RMXlwCgGZyV0wlcuJHsOQyjm/v6F74Ilre9xSbmsgqRcVY56h4mAyv5TrRGXJzmNHbfmuu" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUrgm7L0NpVWMvi+bzCLTvTI9C+7MVc0rbvIywHGAUdtq6tMA/O5QmJJB5QXFEzt/rCNOD8djH65QRm5xocjI10gq1b8YEefVGBNuCF99W2/MHy0w52ES0KLYcNxOQc6+dqfdvCsz0TreUYXZttbU" ] }, "ContentHeaders": { "Content-Length": [ "497" ], @@ -300,8 +300,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2411" ], - "x-ms-client-request-id": [ "7fc03213-0161-4968-b697-45300c342354" ], + "x-ms-unique-id": [ "1335" ], + "x-ms-client-request-id": [ "0d16ac47-957b-434c-ab96-2af45643e586" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -315,16 +315,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bf0ad453-eb0a-4216-9ff4-688c0f6527b4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14139" ], - "x-ms-request-id": [ "bf0ad453-eb0a-4216-9ff4-688c0f6527b4" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:bf0ad453-eb0a-4216-9ff4-688c0f6527b4" ], + "x-ms-correlation-request-id": [ "0281112e-5415-4078-8e21-90a823132a76" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13983" ], + "x-ms-request-id": [ "0281112e-5415-4078-8e21-90a823132a76" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:0281112e-5415-4078-8e21-90a823132a76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmghMsjNqPwZND3HpwfjvjCWhatO2Uayu009IjepGCldTJhg+TJS58MVPgL2RI6nMNAQYn3zK38/696sJleA0R1zus86n++Z4/dObbxDst2ED2le5FPtvUcsOgPKCtvmBKW3vRmV7cdbUjwmmWsk0" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyzC7Izu3UjXV37VJVIrh4jqMdu19bb1df39Ev5ckzTHnGsZzqB6MQEEqtJ602GAEFB0iNmQNzWYF6/QgEPLIFlueUOTla5Q+Q87Vj0B1HM/49N1eFpK2VJcMQK7ceS27ke+WDrU76t3XADJqvMZf" ] }, "ContentHeaders": { "Content-Length": [ "498" ], @@ -342,8 +342,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2412" ], - "x-ms-client-request-id": [ "16c1b067-0938-4c65-804e-b982de57aead" ], + "x-ms-unique-id": [ "1336" ], + "x-ms-client-request-id": [ "d55817ba-8401-415d-881a-5fe88607fd77" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -357,16 +357,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a3307bbd-59c4-4abe-895a-cba4c038cb00" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14138" ], - "x-ms-request-id": [ "a3307bbd-59c4-4abe-895a-cba4c038cb00" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001259Z:a3307bbd-59c4-4abe-895a-cba4c038cb00" ], + "x-ms-correlation-request-id": [ "f92d2dc9-5054-4db5-8ec2-56da9d7e5f98" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13982" ], + "x-ms-request-id": [ "f92d2dc9-5054-4db5-8ec2-56da9d7e5f98" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:f92d2dc9-5054-4db5-8ec2-56da9d7e5f98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:12:58 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEpObDQapL2j4c4SVUgDmKXYFPft8t4crVE6/x0qDb8N3UdF5CoN106j51czMVXFhexEwOmrZRlZyeKPckuVenRxZ5H12Lb8QzRTRiiGdJKAt3OpOJsprDuU+KqPw4PqAxgiQ1pNHuoYgzI/gayt3" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUaTvujeJWHlUC+9sYZiI7I16Mq0jmeRZ5RtEYHRJFSFPY/9FXVnKCdoA1Dpk4u8QkGhqE86mWfnRCqCJU6+MTuhLDDuZv3t/8f3hCH4UdUrjvvfTvwIGadPbNeH6ZtTM9g+B3MZsx4jm9DhLQpLg" ] }, "ContentHeaders": { "Content-Length": [ "498" ], @@ -384,8 +384,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2413" ], - "x-ms-client-request-id": [ "d84fe1b0-9295-433f-b6be-474519ae1b05" ], + "x-ms-unique-id": [ "1337" ], + "x-ms-client-request-id": [ "d80f971d-516e-4c25-a47c-81169c841b8f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -399,16 +399,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c078ab12-23d4-45e1-9f60-a16a60ba65f7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14137" ], - "x-ms-request-id": [ "c078ab12-23d4-45e1-9f60-a16a60ba65f7" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:c078ab12-23d4-45e1-9f60-a16a60ba65f7" ], + "x-ms-correlation-request-id": [ "1ee0dbb6-6b13-48b4-b32a-38cb0a9c923f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13981" ], + "x-ms-request-id": [ "1ee0dbb6-6b13-48b4-b32a-38cb0a9c923f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:1ee0dbb6-6b13-48b4-b32a-38cb0a9c923f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQUvBoBf+mmuOZpEur2H6tkWpWPcEYMKORCus0Y1JmZtaFlBTFFhGortwjd1EmrThYbkcDOFg0eKzs49DSFwxC/6ezeXtWR/mwSeMf5vImvlcC83dUaxtoOGXKY/jkjpEe66u/yZYkF5+mIEQ1Tn3" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXxxF+Ibws9rwXoqEUb8ahUvGdTtYNhpiKt8+hLV3GoQ/FOi+FJ9HbRXgPv2YPISZGFeSCjdnir4paitm6QbIhakZRr1WnnoJjF+dU36EEqVaj/DiYg1Rjf5I9Ex9O3PTfVKRPudajpvucOW2Hdq4" ] }, "ContentHeaders": { "Content-Length": [ "498" ], @@ -426,8 +426,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2414" ], - "x-ms-client-request-id": [ "0f69ab6d-f151-4020-9cb0-fb6947c6b2b7" ], + "x-ms-unique-id": [ "1338" ], + "x-ms-client-request-id": [ "bec61a9c-0b42-4249-aeef-cb295a35a58d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -441,16 +441,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "02289852-1b82-4af2-b1af-edd34c417ec2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14136" ], - "x-ms-request-id": [ "02289852-1b82-4af2-b1af-edd34c417ec2" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:02289852-1b82-4af2-b1af-edd34c417ec2" ], + "x-ms-correlation-request-id": [ "91490ea2-686c-4c84-8966-e306550357cd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13980" ], + "x-ms-request-id": [ "91490ea2-686c-4c84-8966-e306550357cd" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:91490ea2-686c-4c84-8966-e306550357cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+lx911Ss6xB4o1zrowVdBkuueryu5miz2VjiN9WStgQ/KOjdpHj3Kt3UpaBF1kNGURePhpuo/7sLIc9o363od9DvhIRrO94sfoarmdz/VZuzXoBOC27p8dCJOVESkp9pc3vq0G+udeUQl0qO45wk" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTYYS1JEY30HqrVlw2JQAL1jhKSwpsva47yOyKzZycsznttRBHYMSUFdgxNskgsEf5ElWXsoKPY9RAUhaHUj5LLGhT+JCHgJHgI9MIQeD6XtTRZvIEvkzz0OMoPG6WBfUYMp5mWmQrLRsBoQfuYsB" ] }, "ContentHeaders": { "Content-Length": [ "465" ], @@ -468,8 +468,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2415" ], - "x-ms-client-request-id": [ "a2b18a4e-0e66-4359-aa38-6c9dc9513776" ], + "x-ms-unique-id": [ "1339" ], + "x-ms-client-request-id": [ "0a18fec6-1c02-4599-99fc-11f62d0cd2b2" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -483,16 +483,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "23093d8b-e692-40e0-8805-e68e099e32ad" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14135" ], - "x-ms-request-id": [ "23093d8b-e692-40e0-8805-e68e099e32ad" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:23093d8b-e692-40e0-8805-e68e099e32ad" ], + "x-ms-correlation-request-id": [ "4337b35a-7b24-40d1-b609-b9984fec66cd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13979" ], + "x-ms-request-id": [ "4337b35a-7b24-40d1-b609-b9984fec66cd" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:4337b35a-7b24-40d1-b609-b9984fec66cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYMF6UQAAULxWlayv5rwlk//eOwBfBqChHSEWfeZyEs9oZeiuYCAx1aU/BiFPVm0YRs04fYPVAXakko9Dlci22PZcyeW+FIKzReV69sgu1NXrraxcT5P5YajS+bsKEIm2g6Wx74kQK2N4CSTcTTe2" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcxltC8fBJQjAQRgnHjAClO8CYlsrkfB6ADKe/FAEWNqmL1buVl64nnDdqEAF5xhQfn0Cx5Vj9F1hm/1mZXzFBwf4a9FTdQvs16Zk6q1bEmbXbsnXALQ4J+qUzL7mygIET9u2K6PPG+S3eCUwIiXD" ] }, "ContentHeaders": { "Content-Length": [ "443" ], @@ -510,8 +510,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2416" ], - "x-ms-client-request-id": [ "aa974406-aa83-485e-abeb-9ea00a788707" ], + "x-ms-unique-id": [ "1340" ], + "x-ms-client-request-id": [ "1e47274b-4e08-4df6-84c5-b2fc5b90326a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -525,16 +525,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "20d0f589-e458-45be-a14d-4e7a7725396f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14134" ], - "x-ms-request-id": [ "20d0f589-e458-45be-a14d-4e7a7725396f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:20d0f589-e458-45be-a14d-4e7a7725396f" ], + "x-ms-correlation-request-id": [ "3e523720-f8f5-418f-8cd5-d525091cf888" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13978" ], + "x-ms-request-id": [ "3e523720-f8f5-418f-8cd5-d525091cf888" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:3e523720-f8f5-418f-8cd5-d525091cf888" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoiKUeEWREpgkf+/ZjDkNhLYAgOEToO0Jic/yB7e3LF80pDzx2H+qVvwNtcATGi1ptSB+ii6/F2EqueXUAMjegVddi/vCSBXry1RppMfHcU1wW/OS4pf/XeLQqgc6Na4GhAeGZZd91qPycN7zlYcv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXvrciAQ2JWQuqmSL6eLjGuuzFRAq7izA+d6+VLTMmkgbR7qPOYXRbdsF6WNsgG/iliICQwZil3mRxhJqe8jKw5UQ/7/3Gsv9knZ1mUyr69XuhxE9WEv82u6fn/O/Nc+lThMZBF6nkusJbABoyqXm" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -552,8 +552,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2417" ], - "x-ms-client-request-id": [ "bef410f4-6a2e-4ff8-a5ef-7e74ef49e568" ], + "x-ms-unique-id": [ "1341" ], + "x-ms-client-request-id": [ "f098c81a-aba6-4392-a08b-2896783584d3" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -567,16 +567,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f679a36d-13f1-42c7-8cd7-3f230d5d7b6e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14133" ], - "x-ms-request-id": [ "f679a36d-13f1-42c7-8cd7-3f230d5d7b6e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:f679a36d-13f1-42c7-8cd7-3f230d5d7b6e" ], + "x-ms-correlation-request-id": [ "5fabf6f3-f90b-4844-a9cd-b426340172ba" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13977" ], + "x-ms-request-id": [ "5fabf6f3-f90b-4844-a9cd-b426340172ba" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:5fabf6f3-f90b-4844-a9cd-b426340172ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtm7NlajcVJ8XVBH30WnbOZPIsZyHWSn2UYB6vTwxjPA3QYfiTMSC30DMT/y6/4LxgNGDXHpSG7HyGrrIsmIcXKDCRECFFccCyMqXyT/Wy1XnnB3I/LZtiMcXAh9E9zZgl6FZ3yg8i3gSNNjlG7w2" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVOYR3gqSfrTSk83SR9QxZ5stC2Rzt1sXx1uzWlEYeHXyJG8Kwb7Vo4ivs6pumghvIO5lhOZk8IODPc5E9QzuUHu6lxvV+yAuYBRjH+5S0kT25dGdrCmx7FzWMKCAYUMnVrwc/32h1dttgx1V6xb1" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -594,8 +594,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2418" ], - "x-ms-client-request-id": [ "a6f41e5d-10d7-4ad1-b9a1-86296fc0d354" ], + "x-ms-unique-id": [ "1342" ], + "x-ms-client-request-id": [ "3ac9a630-847a-46da-a746-a0980f1cc731" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -609,16 +609,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f9187d75-0ae4-439f-a17f-1ef262ec3995" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14132" ], - "x-ms-request-id": [ "f9187d75-0ae4-439f-a17f-1ef262ec3995" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:f9187d75-0ae4-439f-a17f-1ef262ec3995" ], + "x-ms-correlation-request-id": [ "db86efe5-ba20-40e1-a8aa-85d132d6db8c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13976" ], + "x-ms-request-id": [ "db86efe5-ba20-40e1-a8aa-85d132d6db8c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:db86efe5-ba20-40e1-a8aa-85d132d6db8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqHluCKgHz0jzWP7eJt0u8Uw2FhxpV+CzzCcSnpwEGzUplK0rxl59CTfeeHEXNFjDa/kuQ8oZOgNw19rL14qoiV/gKxct2M/21tsfzScYGrbQOclxwvXwp7X5X7dA9sAthc914S+gfh0R7ugK1Chb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMw0Pq7mwmbFwEHmJt/0DmssR0AWlG688N8TVuuM8uNgjk/EkCWP7p9tjltUUGCfb0A/ZepkXzT88uZUO6VS18g3eSBZ5xWDxopWG1AWI1hsu8v/nhh0Yaxe9rcLvXBQItx+tMBz7zjNRYbmklStK" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -636,8 +636,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2419" ], - "x-ms-client-request-id": [ "3fca6d6c-75af-4fde-8a13-50f0945bb7de" ], + "x-ms-unique-id": [ "1343" ], + "x-ms-client-request-id": [ "3021576e-e3b4-4bc5-a408-4a781cdcfc1e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -651,16 +651,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6de24f55-0245-4ae9-99d5-375a25b8fb5a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14131" ], - "x-ms-request-id": [ "6de24f55-0245-4ae9-99d5-375a25b8fb5a" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:6de24f55-0245-4ae9-99d5-375a25b8fb5a" ], + "x-ms-correlation-request-id": [ "84c749e9-f044-44d1-9bed-10a46d9f2288" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13975" ], + "x-ms-request-id": [ "84c749e9-f044-44d1-9bed-10a46d9f2288" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:84c749e9-f044-44d1-9bed-10a46d9f2288" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxI1QOuAGmswWw4+2ZvkPJOKvqfQmQxdxHuMBz5aWomR4HL1TC+CpjXCSU3jT/HFWaBw7xnBIwvymnCL1fHRUtqyAEZ+ngNvZFvTFb78lOKRaEFceEihshpCu6YbpO3Om0/+TvaA162CuM42C4rbh" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5VN4wz8gMOQffPPoh4jKjIqBdudZKQtidZcpc4IVY5aTWtT/Y2UAvpxxZ01uQ5IEspFsP5HKupyBL0KZrg0TjKpInBD7VPhZtOwQnKNvIGaOzsjd5+0jFZChW4lhGm6/HwVshRLmN9W/wMgrHBWk" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -678,8 +678,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2420" ], - "x-ms-client-request-id": [ "d8a68208-e6e2-4b7f-8089-77a77128f869" ], + "x-ms-unique-id": [ "1344" ], + "x-ms-client-request-id": [ "6e0f8db5-1ba7-4a5d-9474-e2ef3bce3eda" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -693,16 +693,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b9375df0-9d1f-4fb0-891d-a69bc019d2a8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14130" ], - "x-ms-request-id": [ "b9375df0-9d1f-4fb0-891d-a69bc019d2a8" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001300Z:b9375df0-9d1f-4fb0-891d-a69bc019d2a8" ], + "x-ms-correlation-request-id": [ "814303f1-07f7-449c-bbdc-197f17e146bc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13974" ], + "x-ms-request-id": [ "814303f1-07f7-449c-bbdc-197f17e146bc" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:814303f1-07f7-449c-bbdc-197f17e146bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUseecZOeHmfZIOIsz6XX/3jUPWqD2iL3JmPiZnG22qUpjn76QU/BNKblztK63m2zKQibYJR9CVrQn1ltDhQk+VnTwT2wnQBaJbw1AcDkfeWVgASq4a/NX0FXuf/VHrAIs19FJS9zp3MyHNNvqf0s" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5+afT3wsYcpRipg3x7XTwjg70YYEcn9T8sIW6HJLYbQDKMY8y4+Gu1wVj711g8V7+5LHSwu0lrLIjz+F/mi3StR9Hc2TfzDFFQOHHISbE5OIKdxueV6L2tDpoKUghjai/g/dGlKGxtpZebXdH4/5" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -720,8 +720,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2421" ], - "x-ms-client-request-id": [ "29b3f355-1d42-4d37-aa10-1c352ed87470" ], + "x-ms-unique-id": [ "1345" ], + "x-ms-client-request-id": [ "cc6c2957-178b-4a5d-b417-edcf3835e169" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -735,16 +735,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6fe1b01f-813a-40b8-96e7-e60915305dfa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14129" ], - "x-ms-request-id": [ "6fe1b01f-813a-40b8-96e7-e60915305dfa" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:6fe1b01f-813a-40b8-96e7-e60915305dfa" ], + "x-ms-correlation-request-id": [ "9093f698-4077-4929-94f0-f775d54fd07e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13973" ], + "x-ms-request-id": [ "9093f698-4077-4929-94f0-f775d54fd07e" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:9093f698-4077-4929-94f0-f775d54fd07e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzZWoyDrRD4NpiYQXpB/HdPGofkK5M5tW0t59X8o9pK0hCZUhmGY08zWPVnhxXgAHZGc9jNdnY89HK/n3mRW4QP6H5crqNcD88Jkd9pvOo82OjQNU2l5T5vHjXZiDJG+yvZOZQW1XPJ/TD6tqfPVX" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEi8cB1VyRvptYhSqj4r4ZKL9JJ/U0HRzpISIwWlEiYClFay20iXwcYDQEaOdvLLfPEIjihhgADIYVsaK6ygTvy/BRP7wR/Z1OV8rL/topVj56wmnS8C8dmRfR2jcFU5xoHfHTm/i7URrWuJWuceN" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -762,8 +762,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2422" ], - "x-ms-client-request-id": [ "ceb519ee-43f9-4664-ac6a-5dfce99dd8aa" ], + "x-ms-unique-id": [ "1346" ], + "x-ms-client-request-id": [ "16129d70-9e87-4c37-a28e-9f1b12d27f73" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -777,16 +777,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8cfb8521-8eea-44e4-ab4e-1241dbded5b5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14128" ], - "x-ms-request-id": [ "8cfb8521-8eea-44e4-ab4e-1241dbded5b5" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:8cfb8521-8eea-44e4-ab4e-1241dbded5b5" ], + "x-ms-correlation-request-id": [ "daa5760d-4cc5-4512-8b4a-d56f6404144b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13972" ], + "x-ms-request-id": [ "daa5760d-4cc5-4512-8b4a-d56f6404144b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:daa5760d-4cc5-4512-8b4a-d56f6404144b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/lIDxUD5E3/ic8IF8AIEpz3fgBfqGYhu8bfueMQytT/jVa5b/KIJO5DdqlewiZl2AHVGXwu5J/gzUX1BGtGVKD6z2RBqNZFpKk5PXWBtWW4LA2VrZBDpOgzZq89CVhQZcCy+jkm9/2bp8I7a+9yu" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9em//CbKifTjg6LB56RJh+7g3thND66GxaOLpCd3xyH1J+S6TZP8/lkseKS70EdGK8vnS1KOX7/h49hLbQx7VKTbAMitGV0AdEtIXVbPzQJD3eYsH4uSWuzZZZ2TehZpYqGP5RWldKDM9w0IhffO" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -804,8 +804,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2423" ], - "x-ms-client-request-id": [ "bf25b7d9-c4dc-4e59-aea5-140fe4421bde" ], + "x-ms-unique-id": [ "1347" ], + "x-ms-client-request-id": [ "37ace11a-d348-4a29-b966-49e762d59184" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -819,16 +819,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5bca06a9-110b-4a99-a313-1d8528cea828" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14127" ], - "x-ms-request-id": [ "5bca06a9-110b-4a99-a313-1d8528cea828" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:5bca06a9-110b-4a99-a313-1d8528cea828" ], + "x-ms-correlation-request-id": [ "f1adc6b9-ee82-4952-af9d-1439ee24d312" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13971" ], + "x-ms-request-id": [ "f1adc6b9-ee82-4952-af9d-1439ee24d312" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:f1adc6b9-ee82-4952-af9d-1439ee24d312" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpgiaZhyNsREsg7gigTe2EBqf5mjSPofBkZ/47+rosUFEi2jPWD8IW+cVZzPZk8u548/CINKMd/MxuE38n3AyXn6zs8oLvd8uMdg1hKkuEQ4sM1lgOrfDqObKBf9ce+Q+Y5wRYnHy5vz5rZPHmFmb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhr95DyQTXzvGE639ubbHqAYC34lf9/TEvnxQZnwBDZCYzYFManxnOudKJ0d2Y+N6L3Cd0ENSnlzM3mYtejPcPPnaK+kcHOMOCVFpuwecNVx1oYOAMr5tbEDHE+f/z+WKbea9gYMikDiYjhM0Bz1D" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -846,8 +846,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2424" ], - "x-ms-client-request-id": [ "0ebb9b78-2916-4458-83f3-e94fc7ce5979" ], + "x-ms-unique-id": [ "1348" ], + "x-ms-client-request-id": [ "5329ba22-f95d-49f1-825e-5c609308f887" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -861,16 +861,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dc83348d-33b5-4881-974b-b69016adc297" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14126" ], - "x-ms-request-id": [ "dc83348d-33b5-4881-974b-b69016adc297" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:dc83348d-33b5-4881-974b-b69016adc297" ], + "x-ms-correlation-request-id": [ "1de46146-ea58-440f-8a7a-c7031d06c42d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13970" ], + "x-ms-request-id": [ "1de46146-ea58-440f-8a7a-c7031d06c42d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:1de46146-ea58-440f-8a7a-c7031d06c42d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvurOscBg/44sZfom/peH+yYVAJf0pZ7TGzfQz7UIxNNvbgkYmO/IorEHZNHqs62yqpFYpPIZXoGgXft4C/ith2zMbCU726IFFTSI0a7bGwSw1UdpJ2iz53N1uSIDSclgmo5bT3PQVYYaQADJVjt5i" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8Y/+ijBietdqrlajmKpWE7dPf4RwUTQhz83eEHfcFlQ6JqsRJ64+a0Y25CkZfShzMkgJJK2lQrI6BMrigX+kLIQ31GbOxFNxbluVTTjh2He9J0kM88mQRnCLSGEGgqHLmKCADRDJKHZCfKDGZIJq" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -888,8 +888,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2425" ], - "x-ms-client-request-id": [ "41d94bb6-ce50-4105-a02e-d3139312406d" ], + "x-ms-unique-id": [ "1349" ], + "x-ms-client-request-id": [ "f5748439-c0ac-4d92-98bd-d2566452b463" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -903,16 +903,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "598f12c8-2e89-4f0b-a1c4-7f7ab5f6f010" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14125" ], - "x-ms-request-id": [ "598f12c8-2e89-4f0b-a1c4-7f7ab5f6f010" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:598f12c8-2e89-4f0b-a1c4-7f7ab5f6f010" ], + "x-ms-correlation-request-id": [ "b5259272-e634-41ba-9654-928f68162c2b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13969" ], + "x-ms-request-id": [ "b5259272-e634-41ba-9654-928f68162c2b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:b5259272-e634-41ba-9654-928f68162c2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRdprnSRAaM5QnsRCIxL5zGJ6N3tKb+V69hSxiAUd3G5Kw1tfNlNbyVX5MVKuccNgqSusLSsZHKcydR6rJcnNWV673CxPM0VYHf6Zmh9pdZXKIRWwf2JybgeZrYNR0EZtbJxJSWoiWloM6wWCuYdK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvthPr9XL5x4UUu1aKv29nhtcH8gblbXODReKl030ioLZ4I0DiwdOAB4B/2sctqHNiavl+ieypYSeb2PqxFWooxdHewe9quNPjFBFMcK3RE34y9TSwJeTxl1b4tdlI6Z7UzpPLmB9gWb5QQcuNLPli" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -930,8 +930,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2426" ], - "x-ms-client-request-id": [ "6f417bb0-56a1-46d1-b84a-0c0c74fd7924" ], + "x-ms-unique-id": [ "1350" ], + "x-ms-client-request-id": [ "6d161a10-1dbe-41e7-98aa-12c9ccd3b546" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -945,16 +945,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9ee650f2-10a3-4d02-b14f-4ee48fdcbf9d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14124" ], - "x-ms-request-id": [ "9ee650f2-10a3-4d02-b14f-4ee48fdcbf9d" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:9ee650f2-10a3-4d02-b14f-4ee48fdcbf9d" ], + "x-ms-correlation-request-id": [ "72b3980b-68e7-41ff-b0a3-8c7ff5eab6c8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13968" ], + "x-ms-request-id": [ "72b3980b-68e7-41ff-b0a3-8c7ff5eab6c8" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:72b3980b-68e7-41ff-b0a3-8c7ff5eab6c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvqrUxnXPfs3OahPfj77uVkoRkYTq8+AaEFtofGUvWrysFEGNf+KnN7GUQmx/5y4MzkPNvPhuhPpOq/Z147aga7S7M2CnvpdQMJpKqnDQQ3Q6GJ2Tt09OfLMaX56UQ5it9130oJIrBqb8I/zgvyFy" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5ipNgCB4LunaoJHjALVLUVR9pYEdlpmuliB8GdTyAf7o2OW4Oo627hSQ6mck6HJOT1d1Edk6UBqL8ArxEYakf/qbMDtA0tcEk1C6PTlfnRq8oSJ8JEePcgZUQZrPyMKFUxw4YdHSTtYjaaugNxar" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -972,8 +972,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2427" ], - "x-ms-client-request-id": [ "6196f3f4-1725-4837-a7a0-4c8978688f99" ], + "x-ms-unique-id": [ "1351" ], + "x-ms-client-request-id": [ "d0094865-6ec7-446e-a70e-66c2239dcf72" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -987,16 +987,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e815c677-45cc-44cf-9586-4f9bf8d3cb94" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14123" ], - "x-ms-request-id": [ "e815c677-45cc-44cf-9586-4f9bf8d3cb94" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:e815c677-45cc-44cf-9586-4f9bf8d3cb94" ], + "x-ms-correlation-request-id": [ "0178e633-ad0c-49f0-9c6a-ed2bf37f1b67" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13967" ], + "x-ms-request-id": [ "0178e633-ad0c-49f0-9c6a-ed2bf37f1b67" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:0178e633-ad0c-49f0-9c6a-ed2bf37f1b67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHx47VKMfINlsU43WIfqXvwZFGo+i2RCCu/Dd4YN6N2Iz9dsGuAwGGXYQd9LUvdEdLuGafv/tcDJrXnQhjMm+D8noNl/gADrstYD54MGcBA8IfNl1mHmIXoiVsLjR9jvF26qee0E/TEyax3opI9Tv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvycUyZ+PBPbYuhjVe0CUMrMpLG53JrJRRTe0jnxln9dsd1Y/vbtvDL2N+Qt+gwtZflme+E3JhFg8yjwDZGouQSYuWyovf2rxcXwDxUlnJedF6FBOIohTbWjGcV8iGoKQFGBrVw0OEy6jbkUDL/H0a" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1014,8 +1014,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2428" ], - "x-ms-client-request-id": [ "8c4877f0-ee96-4526-8981-4dbaff2fa871" ], + "x-ms-unique-id": [ "1352" ], + "x-ms-client-request-id": [ "9411c337-7412-4549-818e-fe602eb0133c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1029,16 +1029,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4a18726f-c5e9-4a70-841a-688ceb740db8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14122" ], - "x-ms-request-id": [ "4a18726f-c5e9-4a70-841a-688ceb740db8" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001301Z:4a18726f-c5e9-4a70-841a-688ceb740db8" ], + "x-ms-correlation-request-id": [ "06db4106-a9e9-4fab-85d7-50f022c3ea73" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13966" ], + "x-ms-request-id": [ "06db4106-a9e9-4fab-85d7-50f022c3ea73" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:06db4106-a9e9-4fab-85d7-50f022c3ea73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQIi7vgyztJYqUYoy5JyY7oVPFqinjeKJfJDxlm31sh2R2HqiJck9RU5eAAnMyryeuUJErsdwzqIkh9gE8bPgjpGfIMlf14PppWG/Jk1r3gFJmDEJUBGurCzGMFnbwt+4vmp260PDFcvqISPuOIvO" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviimm9laYmgo4NixjPzLdQ2TgQqjIEFyenYMA8wDm4J+EYqJ81WqiXKtZYzvZM5uTIkB/WkrCKpWHKHd1MF80D4TdX61yppdZCVd4rAGqgdCurxTUt5QX6teu+wcy5al0kHCCSRcQuwgN6I6W1fj+" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1056,8 +1056,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2429" ], - "x-ms-client-request-id": [ "b77e4468-c350-4640-a9f3-a02eb8e9264e" ], + "x-ms-unique-id": [ "1353" ], + "x-ms-client-request-id": [ "4ab5bd8e-7821-43fe-9952-c0aa76b9a021" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1071,16 +1071,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "47034c54-f301-4cf4-bb51-a518324720ef" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14121" ], - "x-ms-request-id": [ "47034c54-f301-4cf4-bb51-a518324720ef" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:47034c54-f301-4cf4-bb51-a518324720ef" ], + "x-ms-correlation-request-id": [ "5014ee03-d40c-4a1f-9501-5eb51319aeea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13965" ], + "x-ms-request-id": [ "5014ee03-d40c-4a1f-9501-5eb51319aeea" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:5014ee03-d40c-4a1f-9501-5eb51319aeea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjn4NAEalIGfk0nBrSmckD0N38z9DOFrPVUHskvkNEjypSE/txcYGcAsASyOlfAJ9S9F/UUDHvTjDeiwpZ9ClkVtSTWeycjiXxlKxF7nP3jg/QGll2TutbKoh8bcPWEgNoipbZv1IDrXihpC6lXEY" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuQKnzEggCUxJI1EccOYL9wCZWTgkE/fXm+Ok8n4tUnolCMwlbyVDYd4Mu6yXm1BxWFWYFwCamccJgiCEi7l5WGkU5rU1fbEMZiInFlhnMM7nu79xePfR7Ky+tWeqq4OMD6LhO0ChRMK2N2wJ5Ec9" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1098,8 +1098,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2430" ], - "x-ms-client-request-id": [ "c43b82ee-1390-4343-b7dd-0db3f3e372f4" ], + "x-ms-unique-id": [ "1354" ], + "x-ms-client-request-id": [ "2a6f8a06-0052-4d8f-80c7-232c90a403ec" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1113,16 +1113,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "40ab2c7b-5b63-43d3-a5bb-de2dd5ce2759" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14120" ], - "x-ms-request-id": [ "40ab2c7b-5b63-43d3-a5bb-de2dd5ce2759" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:40ab2c7b-5b63-43d3-a5bb-de2dd5ce2759" ], + "x-ms-correlation-request-id": [ "9e5de092-4fc3-45d4-bce6-2137d803e7b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13964" ], + "x-ms-request-id": [ "9e5de092-4fc3-45d4-bce6-2137d803e7b4" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:9e5de092-4fc3-45d4-bce6-2137d803e7b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfo1c9CHZxq79shlzpIAm5cyEzpcFHCFIwrrCCDN47uPBp2xJsPb0e3Emxh621pSUiRAFo7+rwr/nE8APE7c+SPhIaniszhWW57daziQRyF6s5361M+nsMFjWXEk25N30vQFwylVK1Cs13goLIfzV" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOzir5PKXCpldrLL1Lh/s01Cmxf2M+pIxuotoA3+1AnDvRIqX1/rOyd6v+k26Sn2m2oKyEKTvl8XHVG6s9WJbD+JrDv66dTEyqTigAKaKsmCbyXVvaaOrr6SJQaZrnK4nsl+TKwQRY73epqmpx84t" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1140,8 +1140,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2431" ], - "x-ms-client-request-id": [ "fc6a40d9-1844-4550-b42e-d1bceb10219e" ], + "x-ms-unique-id": [ "1355" ], + "x-ms-client-request-id": [ "4e07c627-224c-49b9-b623-580a693d2642" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1155,16 +1155,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dea2a19f-1805-470e-9ffc-819f0bc3e3ab" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14119" ], - "x-ms-request-id": [ "dea2a19f-1805-470e-9ffc-819f0bc3e3ab" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:dea2a19f-1805-470e-9ffc-819f0bc3e3ab" ], + "x-ms-correlation-request-id": [ "1a71f9e3-ca6d-4b12-9bb7-5e20a301e8ee" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13963" ], + "x-ms-request-id": [ "1a71f9e3-ca6d-4b12-9bb7-5e20a301e8ee" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:1a71f9e3-ca6d-4b12-9bb7-5e20a301e8ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8OKB88cRWVnfic75lS76E6CjfP1Cbo4fPwLSSjWwcqxe7ODs3ZDdvsa8XuOg6tImIB69jSA+l3vtWcMS+HTlSQhlNlvw+L7Hr/147KIpqJby00DIYxG8NYbjOdALQGvmodV32+YGnTlr0aeSII7M" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcU0XCGP7ZElb/x5Sgl2+pF88fPoi3tLNZFCHckrPyLb7KFmBfWS0c9rEr0BtbHuK00np31cZCF8HSY6CDOyN+YoQaGRQ1NTTPQ5MMu6Qk7fTlOFDaV44C5h/EcQAWvS5dG3QttitInkk5Fjha3Iq" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1182,8 +1182,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2432" ], - "x-ms-client-request-id": [ "81b9e3a5-c1ad-47e3-8122-a568a6560f97" ], + "x-ms-unique-id": [ "1356" ], + "x-ms-client-request-id": [ "6d8785b3-fec3-4be6-ba6b-b37d88e1a39b" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1197,16 +1197,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "aa4995b1-82c8-4796-ba77-9fc85dde6b13" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14118" ], - "x-ms-request-id": [ "aa4995b1-82c8-4796-ba77-9fc85dde6b13" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:aa4995b1-82c8-4796-ba77-9fc85dde6b13" ], + "x-ms-correlation-request-id": [ "8f15b7d8-39dc-4e59-af88-707289c7395f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13962" ], + "x-ms-request-id": [ "8f15b7d8-39dc-4e59-af88-707289c7395f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:8f15b7d8-39dc-4e59-af88-707289c7395f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0eKKwFf2bTnbPM+7di6pNK+qIUb0XOts62BdcaW2d6T9gyRb2r0eM2Mppwq7jrUzCkuckJfDyQTW/5mTRKmi8pK8Ur2Eadijr+szKJWV7cqS9S6gl3fAeKwpWFV20RkmAvg5qjbalqnLkmHJcD2W" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWhajDghrBOppFE6MAn1Ak9H8NnR6uro0Ptk2IMhWYpm00XoHWEHHp+G+OATf8ic1YIWlX5T8mHnvR102SxZzN151Q+8Qd/fM2Gojo0Vkb6KvKEgvqYPiilf57excn+A2euSMYT8CQfDFG+fYZMaE" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1224,8 +1224,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2433" ], - "x-ms-client-request-id": [ "fe0f4be3-f3c0-4864-a111-afe7c4419187" ], + "x-ms-unique-id": [ "1357" ], + "x-ms-client-request-id": [ "bda90f52-0625-4c34-89ce-bfaff6fa9426" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1239,16 +1239,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "15af1995-d9a0-41d2-9d84-0a1bcfd616b9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14117" ], - "x-ms-request-id": [ "15af1995-d9a0-41d2-9d84-0a1bcfd616b9" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:15af1995-d9a0-41d2-9d84-0a1bcfd616b9" ], + "x-ms-correlation-request-id": [ "7ef218b1-5970-4b45-9355-28ed7b770d13" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13961" ], + "x-ms-request-id": [ "7ef218b1-5970-4b45-9355-28ed7b770d13" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:7ef218b1-5970-4b45-9355-28ed7b770d13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMabts8WvKtsAozUphB/HUHXcgws7SnLARkQe1TZXmEy4HsEZuvnJq0E3l9To5ArFTXMXLnofwDLE1IkRAsjqq2+92ldYwSPMItu2GWvpkB5kBQaM2CI9+3lmhzgfN3HjjROLjTfoz1L7wZSWlk33" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0ISTS2hBTSwhvSRGEwmE2pfdQ0SjjnopSgMjPQ7SPi6Jx70ax3GMY++kaqbGtsIEGRoYM362AHMd+qMcVtzJ7Krfs64nXKIuZY0T79ZaSToDba/R91cF0YMz3e097maQJoKSq57yHp/aaHA5JHfO" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1266,8 +1266,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2434" ], - "x-ms-client-request-id": [ "a8c99cc8-9363-4774-907a-2b03992d971e" ], + "x-ms-unique-id": [ "1358" ], + "x-ms-client-request-id": [ "d7972e25-b279-4882-9c43-22c59df16c11" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1281,16 +1281,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d957a9cd-8d8b-4c7b-81a3-6bd1f4bf2098" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14116" ], - "x-ms-request-id": [ "d957a9cd-8d8b-4c7b-81a3-6bd1f4bf2098" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:d957a9cd-8d8b-4c7b-81a3-6bd1f4bf2098" ], + "x-ms-correlation-request-id": [ "ea31a3fa-4a5a-412c-828b-dcaecacb980e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13960" ], + "x-ms-request-id": [ "ea31a3fa-4a5a-412c-828b-dcaecacb980e" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:ea31a3fa-4a5a-412c-828b-dcaecacb980e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJgnP+4VLwcocyYgASXigl8BcpD0iPFjblvLLZYn0Yk0pHSYceoit4Xlz0r9Y1akEdyQBQY9B0Mviwy2Rr5DntnMlgDltmjP82HNZXb5VGIeBb0CxNZqD4wO/1hs740XpvG27gAOnGoo2Gx8k4qIH" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv75xhv5qX1I4T98cxrhQ5RaJ97lSxar7ZV9ZkKJMRnjSeiIrlbCMaX18CNFOjsd1OAzL9U8yaosKKt/zZLBgOoeu5OsLx6FflFlTTgTZ9RioHbkhXpdO21CiA+Pv5DlaQ7Y4hdjmmBrG0XdZfRRAs" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1308,8 +1308,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2435" ], - "x-ms-client-request-id": [ "10a0b082-b7ff-498e-a66d-af0e2d6df10d" ], + "x-ms-unique-id": [ "1359" ], + "x-ms-client-request-id": [ "2e01c250-b2d1-4fce-800f-53bc0d201422" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1323,16 +1323,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6e56157a-ecfe-4626-b737-bba6e995c255" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14115" ], - "x-ms-request-id": [ "6e56157a-ecfe-4626-b737-bba6e995c255" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:6e56157a-ecfe-4626-b737-bba6e995c255" ], + "x-ms-correlation-request-id": [ "9624f102-f772-4b65-b798-ba8e08f30166" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13959" ], + "x-ms-request-id": [ "9624f102-f772-4b65-b798-ba8e08f30166" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:9624f102-f772-4b65-b798-ba8e08f30166" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoueNhQ1KO32qpvAgZALl6Weyt3wNjHpRBrJyyKz4uomxI8QfaNILicsF4sS2OEZZYhB5JAXiGDGlQRQmSU+QuIRKZCumvzyZxeNTQjylhJOa8Hvach/di3dBnmd9CgBpVIIHII0MhfCajexsv9qG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvz/FU6oxVp9l0OTGd0SP0Y+793xEgclqiryU8e9cGziGASoDwIzxJTc+3v9JZoD58mbz7onsAP3jGbMQn7TPdckFi6uCj8gudU3VYYvkEKLvoJ2kzmCaanABvv6i32SjKcbZp4xFbitY8y/nsUtRo" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1350,8 +1350,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2436" ], - "x-ms-client-request-id": [ "9a0a969b-1c21-4a80-84fd-bc9bcfc5227c" ], + "x-ms-unique-id": [ "1360" ], + "x-ms-client-request-id": [ "fb0e20aa-8fc2-491f-868a-176935a7ea1d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1365,16 +1365,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3f0fc2b9-4713-407a-88d0-32a922db0621" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14114" ], - "x-ms-request-id": [ "3f0fc2b9-4713-407a-88d0-32a922db0621" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001302Z:3f0fc2b9-4713-407a-88d0-32a922db0621" ], + "x-ms-correlation-request-id": [ "dc7ed7cb-2d5a-4005-8edf-fc1f9078f635" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13958" ], + "x-ms-request-id": [ "dc7ed7cb-2d5a-4005-8edf-fc1f9078f635" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:dc7ed7cb-2d5a-4005-8edf-fc1f9078f635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhhf+TPlgafHOdTmTnptOB//111kuylzNRsMbVU2wS81krVE24X3Gb228cT2Z6uzjQI1VNYAxg0Um7e+zbbnp09UFfsyV+SRZa68BT/9Sv4cim3W76t351IobEe5/qnjB1vnp8hv2g9+VTzEhZsfD" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv20nvwHybnwenXTnijSVwlk9UiXe4yw9BCZnpSgZkzrWQzTvlDVhbLWT5yIG+ryEA04XWemgD8mkmPaB/GkqTM1h3Lz2aJbhOv9QcM8gDm1NnIQzSLWyzlLtH5KQZ/wXyi20YjDdgCNCC76xUXXrK" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1392,8 +1392,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2437" ], - "x-ms-client-request-id": [ "565111f9-1aba-4a5b-8efd-6c40848bed78" ], + "x-ms-unique-id": [ "1361" ], + "x-ms-client-request-id": [ "02bfddf1-f7ce-4f47-88dc-0368c88342ba" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1407,16 +1407,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f076c794-b66d-45a6-bb82-692f090f3b58" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14113" ], - "x-ms-request-id": [ "f076c794-b66d-45a6-bb82-692f090f3b58" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:f076c794-b66d-45a6-bb82-692f090f3b58" ], + "x-ms-correlation-request-id": [ "7d000704-acd9-4d90-b7c8-a7d8ce601ce3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13957" ], + "x-ms-request-id": [ "7d000704-acd9-4d90-b7c8-a7d8ce601ce3" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:7d000704-acd9-4d90-b7c8-a7d8ce601ce3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4O9FY/lDO6RUf2PW6uS71J54bk2nSorxGJZN3XpQc3uNQ10DZnTEiZ9HTjHFvc1kzqV6SdCnJzEn+mTClXZMjNTA0micI50AKhhkl9vHiDHLPdL/KZJfa4a+Yel0MKHH5sci02JsmsFLx1jNpLPU" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOs015PselWswO2cGLNs7pg0uSwGhlsBW81mPBZQXxtnzHMiqLaC3nELgCrhRB936CNcEu1V4h4KTv1rRO1wSrUMWAdco4mGwaKlOUG8HkKGnMEg4qarxG9S2mGX/ZQYm/FOX5JJ8X0E5vCxDXUAQ" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1434,8 +1434,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2438" ], - "x-ms-client-request-id": [ "1255f156-32fd-46cb-baac-361e4814790d" ], + "x-ms-unique-id": [ "1362" ], + "x-ms-client-request-id": [ "6a9ce849-c238-4277-ae22-bf5144b3cdea" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1449,16 +1449,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9f0eb78e-d2d5-4d79-a1ad-84773437af15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14112" ], - "x-ms-request-id": [ "9f0eb78e-d2d5-4d79-a1ad-84773437af15" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:9f0eb78e-d2d5-4d79-a1ad-84773437af15" ], + "x-ms-correlation-request-id": [ "d4462690-0a7f-4100-94d5-4ba82c29a01b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13956" ], + "x-ms-request-id": [ "d4462690-0a7f-4100-94d5-4ba82c29a01b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:d4462690-0a7f-4100-94d5-4ba82c29a01b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBtPQh6EelnOe6mKogd+htPzxjg8Nq54KFFnFw/LyGhWbhrTeqPM3wUA304/L4s0rITpatok1ZQmMcJLE5Ap1kUrMq8v1WuDywdOecg+Z/3CmanO8TSztPK6mkfAe0LsjR8AElG3JDz3clLakxUDy" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY8AjGFEA8WM4EjPV97lmfipf/yCie4ZTXKLpxxaXl1OOlRRuCHgBIoRf/FZRfNyBeDjly52CG+vxUM/QyN/JnLh6e1cjQzqN54rkGvqQM3VQ5Jc68Y6dKQ/8vx8UI56pTPRz6OraNCQOhw97uMoh" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1476,8 +1476,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2439" ], - "x-ms-client-request-id": [ "8b2e3ba1-73dd-43e6-b3df-f8fe5637b976" ], + "x-ms-unique-id": [ "1363" ], + "x-ms-client-request-id": [ "89be2c38-383c-460d-ae2e-579c06251db3" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1491,16 +1491,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "61f7fefd-5234-4c18-a193-ffdcaaa7ce0e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14111" ], - "x-ms-request-id": [ "61f7fefd-5234-4c18-a193-ffdcaaa7ce0e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:61f7fefd-5234-4c18-a193-ffdcaaa7ce0e" ], + "x-ms-correlation-request-id": [ "f10ac955-cc45-49dc-bdc7-9b8530c2357a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13955" ], + "x-ms-request-id": [ "f10ac955-cc45-49dc-bdc7-9b8530c2357a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:f10ac955-cc45-49dc-bdc7-9b8530c2357a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvm+JRtlczVrnTt/rO5scxQuIh+JaW1+ZOVC2WuRdeZPzB88AAoytd41GBae5X56TKJxNTyxbwKah6jzGWtywc0VpDwy2vgZQaoTdQ/3cupmHAazl2y6r9oTY0x2zEMnhi6b7XG9m6cdNeoAinOxCg" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv54/w9N7V8otKLa+rbOB5591PEqc5KK640JfnIfcsCTNm7U2ehXKM52BCufSp0fsEaBlAsqX46UbWPtGV3kDn9pPXlLrd+oDC3xSC0N+iiWvAcbB7OMgd/A1+HQh4UcQpA0Z/E9ct/7nozDvSSAq7" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1518,8 +1518,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2440" ], - "x-ms-client-request-id": [ "ca404dd9-7e03-40f1-9066-dfe1610e6d2d" ], + "x-ms-unique-id": [ "1364" ], + "x-ms-client-request-id": [ "f4287bfb-b98c-4455-8626-05cc70de58c9" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1533,16 +1533,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "693c8b82-87dd-4d4f-9380-b72ae08cdd59" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14110" ], - "x-ms-request-id": [ "693c8b82-87dd-4d4f-9380-b72ae08cdd59" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:693c8b82-87dd-4d4f-9380-b72ae08cdd59" ], + "x-ms-correlation-request-id": [ "e7f7175c-05c2-4c0d-a5d0-60290c567773" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13954" ], + "x-ms-request-id": [ "e7f7175c-05c2-4c0d-a5d0-60290c567773" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:e7f7175c-05c2-4c0d-a5d0-60290c567773" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDL62Gn24lx5cu7BQAmWPsxHmM4EwtYm26MlVg9LVBtMswZ3cVkbw8adxg66toO4ljbq2sOqOGAgkBDEiJ1huelC0lBGWamP1wNyalYlLrVckj0TfqEttA/550aFNXFdUoxFo4UfJZhOGuqMWeiGA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJhbMAj7usp1QnSXZqd6PSbiL4izNVOitgA4lXOajYDUpc3+uXKAzmr8cIm0hmROnqyor+UCphyEtGxVn3N9LUxN445YLrVEU4Xnl5cXOUuYh6NZS0u0EzLtcUO1CRkfDjEPSZyLJ+JeW4IVdraYD" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1560,8 +1560,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2441" ], - "x-ms-client-request-id": [ "2897a553-f5c3-429b-849c-5701b98dc756" ], + "x-ms-unique-id": [ "1365" ], + "x-ms-client-request-id": [ "b82cf1e3-4ae5-4dce-b156-517874b4aeec" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1575,16 +1575,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b2be9c66-fde9-44a4-8795-71b6a90ed878" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14109" ], - "x-ms-request-id": [ "b2be9c66-fde9-44a4-8795-71b6a90ed878" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:b2be9c66-fde9-44a4-8795-71b6a90ed878" ], + "x-ms-correlation-request-id": [ "2c44ecad-f45b-4737-a992-fb86943fbfe0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13953" ], + "x-ms-request-id": [ "2c44ecad-f45b-4737-a992-fb86943fbfe0" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:2c44ecad-f45b-4737-a992-fb86943fbfe0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvc/FkRGNubwKVAdCxTdOBnvpzWS1Fdc6tQXCvY+B4UJCci1RuJXqqjArdcVxVIWqdDEUzMBwIChdB46TTH9a5WxGZjZ1v/+zSUehEo4GsaUa7cOnD+dhqaQIgwnZp9KYhiLDY+nurEGXo6xmQztBv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuH4nx0F6lJDIPA2uKHLBKdCtllP5Yz3DHHu8HPHuRhK949LETApD7BNVZogK4m845OPvaeoaidzGrC28FO+zca2LsnPZYZV7zIW7NgEIh4D9BV+q3elb/4wh7axs/mn5TDQPwlYdJ6nvPrpWZdTJ" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1602,8 +1602,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2442" ], - "x-ms-client-request-id": [ "ff4e280e-a00c-4d4d-9ec4-b6454646f65c" ], + "x-ms-unique-id": [ "1366" ], + "x-ms-client-request-id": [ "00ceb14c-62f0-4c12-99a2-02e20e3b4db6" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1617,16 +1617,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ad1abc71-b5de-4149-9cea-01925eddab39" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14108" ], - "x-ms-request-id": [ "ad1abc71-b5de-4149-9cea-01925eddab39" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:ad1abc71-b5de-4149-9cea-01925eddab39" ], + "x-ms-correlation-request-id": [ "dd1c78f2-0c76-41b5-be49-4d06a2b0fb43" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13952" ], + "x-ms-request-id": [ "dd1c78f2-0c76-41b5-be49-4d06a2b0fb43" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:dd1c78f2-0c76-41b5-be49-4d06a2b0fb43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFJ66aTIDO9FThBdCKmVSj67VQWP6GLVWP2ccsUwODc4WkK4ROSfDvR2X86ZPpFOhfSnMjfZrgeoyQ73e9rhJTHi5WwIoAS+GV8ZOr/on7vyg2l6jD+OJoPQayLgIVtq1uhFS4uDSm8cMdfsw81hE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvowk0Oy027YoK/5HjDNR9m5RDRelPfk/0O7qVEuB7qyjcnRPnIBnKszoc3EPw0zpLEO938yfQ/5SJ0Hx761RzRIibAIixs9iXUXLaP+TQl46IUolitVDxvJ5/3FUJvUzSnNNgo9jZU+3YXRPsd4Lh" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1644,8 +1644,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2443" ], - "x-ms-client-request-id": [ "821a033e-611a-4d47-a274-8e91e711f3b4" ], + "x-ms-unique-id": [ "1367" ], + "x-ms-client-request-id": [ "7f354496-9865-480e-a8ec-4af7394eeca0" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1659,16 +1659,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f909342b-ba15-409c-9489-5f1ff127498d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14107" ], - "x-ms-request-id": [ "f909342b-ba15-409c-9489-5f1ff127498d" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:f909342b-ba15-409c-9489-5f1ff127498d" ], + "x-ms-correlation-request-id": [ "33602a46-c392-4d5f-93bb-a6040236627d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13951" ], + "x-ms-request-id": [ "33602a46-c392-4d5f-93bb-a6040236627d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:33602a46-c392-4d5f-93bb-a6040236627d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvm+qgK62bW/OGLY/wstMpeErd9kAw0Ib5+aWhy3WahX8iMrxl1fA4dGnxPGEzw15dAA9WQ8CKLgcIthnnvhrDbOQ2bufxSWOZ/3fc/B2TLl3qdy7r2XD9ZmRdch52VmpC2BRUbVob3VVxNYFBXqh+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH+D6jgoQysO8NOYKu0P0BcUcB2y4jP54Q9KQ1FtSenJ3cspzcUqkwE4i7GbRYNvYiuATPaj1e351ttd3OhvtpMWeFHUATb4WStZTXh2kXAaluCaS+MMzl+Ujn8Tu9HL3rO0ydpST5MVsavROHRQt" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1686,8 +1686,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2444" ], - "x-ms-client-request-id": [ "af787810-6e5c-49f7-8776-987033926d16" ], + "x-ms-unique-id": [ "1368" ], + "x-ms-client-request-id": [ "54c67a49-c125-4c57-994a-e4e3efa9570e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1701,16 +1701,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "97a23416-65c3-4c7c-9992-2bf8d317eec7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14106" ], - "x-ms-request-id": [ "97a23416-65c3-4c7c-9992-2bf8d317eec7" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001303Z:97a23416-65c3-4c7c-9992-2bf8d317eec7" ], + "x-ms-correlation-request-id": [ "755cb4bc-6886-47d8-8b6f-5f148203a9ba" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13950" ], + "x-ms-request-id": [ "755cb4bc-6886-47d8-8b6f-5f148203a9ba" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:755cb4bc-6886-47d8-8b6f-5f148203a9ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQs7LDItZ4uUA1AZC1OK0wosnUDCUmsh8zACAa3NOOPpHVyNJNuZPBBssGbACZ67+CzgBlKyCyhquKChzag8R8ia54uUvxNesJUw8x+PMe5ix/2is3LUuyHmtM//kDMijEYGSx9IDUpaC4HkvF8wA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjW4aJ5H7xpcDKNfPCxDDPVLr+uPr8qY3ysVZyMxaXRYc3GDRRLTOBcHD5gS2vbG9jYTewjLK+VInY6jRWxlE3jjma/M00wIcfC2bOgJMiA1l9eJDMJzKDhIMGTkyp165g1i9ydxbiS0REpY5AeLg" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1728,8 +1728,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2445" ], - "x-ms-client-request-id": [ "29daef84-0df4-41c3-8227-f571fc361600" ], + "x-ms-unique-id": [ "1369" ], + "x-ms-client-request-id": [ "732d9da4-d51f-4bf6-81f3-2b540ff4676e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1743,16 +1743,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "17cf88bc-3b83-476a-b8fc-728993ae9f34" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14105" ], - "x-ms-request-id": [ "17cf88bc-3b83-476a-b8fc-728993ae9f34" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:17cf88bc-3b83-476a-b8fc-728993ae9f34" ], + "x-ms-correlation-request-id": [ "efec9cc1-e33e-4a9b-bc6f-becbbbae0ab0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13949" ], + "x-ms-request-id": [ "efec9cc1-e33e-4a9b-bc6f-becbbbae0ab0" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:efec9cc1-e33e-4a9b-bc6f-becbbbae0ab0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfv+hJMfZ2MNhdPYZdUBZoMYPObW6oGMHkEfWlxoJw4a9B6L6Mix3Cb5P4pQPoXp6ubj6fF3RIW4ZLCR1lLfXNVR3IA6OjHjP/gfq47Rrnc3TF1M8V/0ls8YvEiP3vFe6da9HWdezFp10iaMFh0oj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvxFrwmF1j4xObExE3UIOxgxYn6QZi1eBL4yw+SGFWvNXbIeoBTz71HP60Yi9e+eJHb+R4xeUVXiMJLjNmT/x8XK9X/9atV3Owebqu+1Y4MKKCYZi/8FqrGRGwcBYCvIcv7MkfsWBJFmXz7SMKBF+" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1770,8 +1770,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2446" ], - "x-ms-client-request-id": [ "62bbff2d-8959-4ec4-9b66-699760615e3e" ], + "x-ms-unique-id": [ "1370" ], + "x-ms-client-request-id": [ "5d9e8518-2c6e-4af3-af01-9dee7be0b442" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1785,16 +1785,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1297c5a5-2043-48d5-b72b-179379a5e6fa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14104" ], - "x-ms-request-id": [ "1297c5a5-2043-48d5-b72b-179379a5e6fa" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:1297c5a5-2043-48d5-b72b-179379a5e6fa" ], + "x-ms-correlation-request-id": [ "2b141267-6ace-4aa3-91ec-fdad23c326e3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13948" ], + "x-ms-request-id": [ "2b141267-6ace-4aa3-91ec-fdad23c326e3" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:2b141267-6ace-4aa3-91ec-fdad23c326e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:03 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk0BjrOMXyQ0jYvevi9G9NlWyi4mGlbBCHvg7FilgrE8qIDJQYImG18MYpOGEKAb3zS/r6J/1RB7nPxBW73N+2Xd4vQAuDnZOp/eKUlOp83fnK+wgiSQnKiWRYrPorX/jdjidwEZLd7bWkhVycuBz" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9cMdZvDk26OHA/9coQMdBgBfqPfteLuieuTwSPoGVV0ypoQHNiSmEDzUUmlRP/0St8T0Jzq1TvI04zT6Aadv2SjuljKP6zE1tl8JaNFMdDBWn17DJle78WOtzdouRAluAK/nFiP8cjIa7l7Hkc48" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1812,8 +1812,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2447" ], - "x-ms-client-request-id": [ "af26e0a2-3544-4822-92cb-668957d61975" ], + "x-ms-unique-id": [ "1371" ], + "x-ms-client-request-id": [ "18c5c757-6332-4d6c-b4af-65a8445f7d69" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1827,16 +1827,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "60c049e8-0940-4885-b4aa-2000353b214a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14103" ], - "x-ms-request-id": [ "60c049e8-0940-4885-b4aa-2000353b214a" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:60c049e8-0940-4885-b4aa-2000353b214a" ], + "x-ms-correlation-request-id": [ "4de4bddf-d10c-4cee-ad2c-716aa4ef051b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13947" ], + "x-ms-request-id": [ "4de4bddf-d10c-4cee-ad2c-716aa4ef051b" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:4de4bddf-d10c-4cee-ad2c-716aa4ef051b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUE5tPOTOWD3T1EWYHPV9aY2vwahnrhZwpMQei85XPzLSrwN1Zpy8CRcIzRS/0Hgr8HAeXb6ccNvCljZcMZzBAO3LaHr568UqrjUQtdiOwYsNzzvITdUd+/Em9P91lMRdDBEbyTUv7ktpg9E8ctn5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgCUSLV7lE5ThEKmNc3K9AXsySltxnC5DQRKlTBfJJyiNdgvscw9ig8RVR61lW/ZbKpzXE0XWvY0gTrT28F53HlrMsHKih+3Ze52UD1lW6AIRCksmvi9o909M6cj7igRfGXOmaj/EaIOpTQlaN6Bl" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1854,8 +1854,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2448" ], - "x-ms-client-request-id": [ "b6a22219-f54c-477b-8d8e-c91154f9b9c9" ], + "x-ms-unique-id": [ "1372" ], + "x-ms-client-request-id": [ "cc334de5-5483-457a-8dd6-f3c6310ca934" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1869,16 +1869,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "12de98cc-f1e7-48d9-bdb2-b48794ae7918" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14102" ], - "x-ms-request-id": [ "12de98cc-f1e7-48d9-bdb2-b48794ae7918" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:12de98cc-f1e7-48d9-bdb2-b48794ae7918" ], + "x-ms-correlation-request-id": [ "7af8687f-0f9a-46d4-9ba3-11a32b8a81d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13946" ], + "x-ms-request-id": [ "7af8687f-0f9a-46d4-9ba3-11a32b8a81d5" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:7af8687f-0f9a-46d4-9ba3-11a32b8a81d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbQgXM+J7s3OV2HO99b4gsvrEqvRxIzLBmtDCqfg8IgzuYmbgH7mrWzM14Ew8ef1N2NRLH8IfkrcpLc2096Ao5E77rrkAUypwshZ410cpb9q8+WzNMkO7N1aHAxcaxqd6kd3V8z34AJMDSH8320vc" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8FuIGTEJ9nQ/tgfftCUd0349+x7tpUiLruR9mNTCSpoBi5P5buUblPoikXK5H9R9xxB9kev9ZKIuigwzS36Wxl61WHHlmMv9K4qZYVh+2F/OT8R9ers79g30dXAoS1j9kVh3vJFPX9JkIYzmRdQ2" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1896,8 +1896,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2449" ], - "x-ms-client-request-id": [ "618cd4e0-1038-4303-89bd-d33141559e5c" ], + "x-ms-unique-id": [ "1373" ], + "x-ms-client-request-id": [ "31375dfd-e6ce-4007-acd2-1cd7195c7260" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1911,16 +1911,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e75fb69b-5a5d-4544-a9c3-79077d439052" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14101" ], - "x-ms-request-id": [ "e75fb69b-5a5d-4544-a9c3-79077d439052" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:e75fb69b-5a5d-4544-a9c3-79077d439052" ], + "x-ms-correlation-request-id": [ "7de89501-7451-49f2-a5c8-1009784c183a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13945" ], + "x-ms-request-id": [ "7de89501-7451-49f2-a5c8-1009784c183a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:7de89501-7451-49f2-a5c8-1009784c183a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvz5HxhTgWnaXi9nIAiqA3ZyXZYAqYSLo7viauuHRLQ+YhLGB+6MaWi1Yk5oeypwLv92fC3i/Wfv2Eg8hAsxH20vCT42c9jnTtuT98Fa/X/DuZa8WBiXBYzF5GiYSmmXtnjRWFb9D9cgzuUA8406v9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlUBVG1zAr/AyjgQ3tIUDkBV6F+UCHnwjY4qRSaprIe2pjv1yAn2WJfW7uhB8yRi1SkOcs8WK80EreQhnM/Z3lq2dTiQTUmIYf+1juxO96uJjnRlS4MgBn5v7dBWc95aDvyejwZnAUf7DeaGQCNl/" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1938,8 +1938,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2450" ], - "x-ms-client-request-id": [ "9c97d44b-38e5-4b9b-bd6b-2b65536763e8" ], + "x-ms-unique-id": [ "1374" ], + "x-ms-client-request-id": [ "2b3651f0-60fb-47b6-b5f1-fbecd5dbc0f5" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1953,16 +1953,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9801c0b2-d446-4bef-897e-4b7b27574e02" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14100" ], - "x-ms-request-id": [ "9801c0b2-d446-4bef-897e-4b7b27574e02" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:9801c0b2-d446-4bef-897e-4b7b27574e02" ], + "x-ms-correlation-request-id": [ "98ea7294-f791-4107-a552-4819cf1bf211" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13944" ], + "x-ms-request-id": [ "98ea7294-f791-4107-a552-4819cf1bf211" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:98ea7294-f791-4107-a552-4819cf1bf211" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCD9DlJaEqaCT+6uefbnsaTj1g5UTGKcbtXZQgXTbG6LdGMmGz14fLFljGPlS+A3dGWUE99hC1nYpeM8XogVlWFXFDXqIRY7M0Mx0hR5G+zcL1Qcn3LZTA/qoiG7Jd4hpjrxN0xHUip/HkMOYXBNL" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMhRDEacl8H0UaLTQlQSa9LIY0NBO7D+3MO2GA8jzQvhLCu1Kx1RajxSschcFSrJiv7DRYYcsEx5OBSl/TiyX2IndAlnR6pe6VQfC3ku/Z9sbbGCzL3jRNiE7wzfWz9c897zmGR2W5Tg5QrvLUkek" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -1980,8 +1980,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2451" ], - "x-ms-client-request-id": [ "5a8a26c7-9797-4110-aaca-d6581f8a3e1a" ], + "x-ms-unique-id": [ "1375" ], + "x-ms-client-request-id": [ "c61271e9-ea68-44ee-b617-9331a4503480" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1995,16 +1995,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "564af100-eaa7-47af-8238-82c0397d5075" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14099" ], - "x-ms-request-id": [ "564af100-eaa7-47af-8238-82c0397d5075" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001304Z:564af100-eaa7-47af-8238-82c0397d5075" ], + "x-ms-correlation-request-id": [ "e6ce5cd8-0c0d-49a8-a0c2-b0b225807d1d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13943" ], + "x-ms-request-id": [ "e6ce5cd8-0c0d-49a8-a0c2-b0b225807d1d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:e6ce5cd8-0c0d-49a8-a0c2-b0b225807d1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1Lv9yyPUxu6H9gws33FBnTqXi16FLLgkKda3FLl2zEufh4+YyRF54cCKAmtREx6Ot7MKj0Gzhqax91692okm5YcnE81q/QwgUpRCd3XHU4ms+Of81TwiWdsrApYrUW3VE12JrDOaG4rvMifwBkkP" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRKyYwXnWPs5RPir5ujAlVEhoHNrkTabe4Y7FjFhc62uEn0OdKaftfygkXxJPzYpewu+yvC4Hvi9pXTsHXn8HaoC9g87mFAx3tiflTwkp8rseeKvNXw6aOuQtueZigg64mUjSluwpVcYPOEWa+3f7" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2022,8 +2022,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2452" ], - "x-ms-client-request-id": [ "a3067bc5-ddf5-4e54-9997-06cadefb1cde" ], + "x-ms-unique-id": [ "1376" ], + "x-ms-client-request-id": [ "47ba7fce-8a4e-41e0-b69e-80c0c3a35f30" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2037,16 +2037,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fe1400c7-db10-4b1c-a5d7-61264abd8f78" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14098" ], - "x-ms-request-id": [ "fe1400c7-db10-4b1c-a5d7-61264abd8f78" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:fe1400c7-db10-4b1c-a5d7-61264abd8f78" ], + "x-ms-correlation-request-id": [ "e479e170-3875-41cc-92a1-cded1eac348f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13942" ], + "x-ms-request-id": [ "e479e170-3875-41cc-92a1-cded1eac348f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:e479e170-3875-41cc-92a1-cded1eac348f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhtrcohXvxhuX4OEO0GBk9EhUGMQKTFz8cdHz7WQ6+ytb7Z+785Oa0SLx6Ho+eiMLbS0hRXGPrkrQtHYwXclx50ahzHADi3obvd9HMVVdxWki3JnVLyt/4uFgBRv0s/8oR49Q22nom5qQX3Z+h8N9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUIMYjPgc9igQjEagpLphKKDkF6ccq/+i9a8I4/E0NdD/6oV5mHA3Q5ga/e3tV1QzWAcbVIoWsoYZNYkuj7fx4pcKNau3Sn4WHQECiY0xq/SpIVXPA9ptL7wPbrieNaOM6SL2TmHZvuyZ8Fe/hF0+" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2064,8 +2064,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2453" ], - "x-ms-client-request-id": [ "00ae6065-ec7b-4a32-9383-d56bb6ae07de" ], + "x-ms-unique-id": [ "1377" ], + "x-ms-client-request-id": [ "5a6be992-8fc2-4547-b48f-43ababf9d0cb" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2079,16 +2079,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5563a073-f6e6-47e9-b3c3-91c9d29ffd28" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14097" ], - "x-ms-request-id": [ "5563a073-f6e6-47e9-b3c3-91c9d29ffd28" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:5563a073-f6e6-47e9-b3c3-91c9d29ffd28" ], + "x-ms-correlation-request-id": [ "a44b81aa-c2f7-49a2-9096-95f5ad335cae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13941" ], + "x-ms-request-id": [ "a44b81aa-c2f7-49a2-9096-95f5ad335cae" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:a44b81aa-c2f7-49a2-9096-95f5ad335cae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:04 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLiacjdFon78vK+Lfr+yA7ICNVxjRaP39r5OfF9DzBrezyt5ceBKCDRXyuCjlrg1T2a29d67qyf6eczVTcfUK8uSNRSSbQZL3VVdHF0nRDD4tBj1oMAzbdZxTPJ2v+rowEat2Xb4qlmXnJADuZay1" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHBEchGDXv2jmCipj58UQ984QohxFv7jlAZgJFgRogNGXvXazSZKN6PAP7ZeoTHuSQtbhlSoYQlZ08bvrWgBs38g/h6OzF5aH4+uqjODg8AhRFUYpDE1yUK8mmfwkIE8U0tpJipnSStlnvCE4bXMk" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2106,8 +2106,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2454" ], - "x-ms-client-request-id": [ "1a8145e0-b5df-40ce-9019-cff56b24ac7e" ], + "x-ms-unique-id": [ "1378" ], + "x-ms-client-request-id": [ "e719092b-c4ea-4ecd-aa1c-a8274d78b5e7" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2121,16 +2121,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "790e22cb-dc37-416e-8604-415648bdbb34" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14096" ], - "x-ms-request-id": [ "790e22cb-dc37-416e-8604-415648bdbb34" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:790e22cb-dc37-416e-8604-415648bdbb34" ], + "x-ms-correlation-request-id": [ "875c6fc2-1bfc-49a4-9685-50f6d1ba234a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13940" ], + "x-ms-request-id": [ "875c6fc2-1bfc-49a4-9685-50f6d1ba234a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:875c6fc2-1bfc-49a4-9685-50f6d1ba234a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvg9RaZzA94NX/folILI7G+Hr6iFDYUGgj9iII8kon46YSSqji58ggNJxU35Pci426AoxDfee3jILX4CpIb9QIPVKg+Hdf9S9HJDuUmx+FZKmAWiO0iEz67psuZFOD9THHx9I9woaggEw0mVYwVhdm" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKDOkKUMmuduoSdvY8Tj/QMejSyhEWoM0BuYBGeeUkwWzvC7WOtK46gEQl6/KzmT6s9rHzY0awfHVtGCkPxcy7knkVk2xUirKAKv0/MzPU9cJrS++/MT5D4kqwOm4A3/aZvo+ZPMGXY7sJiWBkAD7" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2148,8 +2148,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2455" ], - "x-ms-client-request-id": [ "ac38457a-ca7d-4ed9-8517-46ecb9cba0a2" ], + "x-ms-unique-id": [ "1379" ], + "x-ms-client-request-id": [ "4b54d72d-2ca7-4f58-a08e-d99fecd281bf" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2163,16 +2163,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a4829b91-afb6-4de5-89b7-27d48879f492" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14095" ], - "x-ms-request-id": [ "a4829b91-afb6-4de5-89b7-27d48879f492" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:a4829b91-afb6-4de5-89b7-27d48879f492" ], + "x-ms-correlation-request-id": [ "fb070064-6512-460f-9c37-90924098e47f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13939" ], + "x-ms-request-id": [ "fb070064-6512-460f-9c37-90924098e47f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:fb070064-6512-460f-9c37-90924098e47f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVVhUXXoQRGXQLUHOgGsto2DAaZnX5loQ7pQsp2q9OgSOtvRzlN9zN9wid9IQtPkMhtVgufJZ7mTROjeAiDkzXqetBJD5Id3RyRNStQ/w3+1ci/5WWp+n2V/R9nI7o1e9iALREdkZl8jcXAShlFGA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveEAXD7nYHdSv/LpLp7AX+/N5L2SGkVm85hO/VKERhQiDJ4LnMcoqyYYEbjp3+VWXxUcX7BcIRM2BSkqb/+Xr+PlQ2lmOohOJ/4230G+rBA/IgPR4k4oiOJyqs+BsaFLmSsBUW95TutrmtGgvz7NQ" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2190,8 +2190,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2456" ], - "x-ms-client-request-id": [ "1f19d029-16bf-4d7b-b4c2-69efc4814ecf" ], + "x-ms-unique-id": [ "1380" ], + "x-ms-client-request-id": [ "c044309c-de8c-45b4-8c5f-4b38965e7166" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2205,16 +2205,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a0f767f1-d8c1-479b-8cbf-021002fc5e90" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14094" ], - "x-ms-request-id": [ "a0f767f1-d8c1-479b-8cbf-021002fc5e90" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:a0f767f1-d8c1-479b-8cbf-021002fc5e90" ], + "x-ms-correlation-request-id": [ "f83ee3d5-64e2-4123-95cd-1329e263a43d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13938" ], + "x-ms-request-id": [ "f83ee3d5-64e2-4123-95cd-1329e263a43d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:f83ee3d5-64e2-4123-95cd-1329e263a43d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvM4bt1GxE+HfSNY8KiQZNI3D31gRjZLlqb3k6cGfDuAgc4PrrYPC5WoI4j8D2hDYHLTonLAr63jbQ6vJGI/0uvhfCSgdBMsoql3vrvUobZIKAbe9IJjM33l1CfH3lQbjrb7aGID3NIelE9ENFeYJc" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvShn61QncPKUj7bRQN4joo+fwTzKnNVtsq3gL7v39WNJNHg/4zJ6G3b9EjQj1GNphSfOOExtJjvhklvCuKns6qZItLgJFb0VulVhpifmWJo8ZyQ5psGYv7qsuJ6PNqpgs/qExzOk+ueaxDxk+brAo" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2232,8 +2232,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2457" ], - "x-ms-client-request-id": [ "3091d02d-069d-4f9a-897d-6b8cb7d9feef" ], + "x-ms-unique-id": [ "1381" ], + "x-ms-client-request-id": [ "0813d4cb-4d1f-4b75-a9a8-c773e911a524" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2247,16 +2247,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "31dd4c9b-4a08-4e05-82f7-5ae372d79ea5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14093" ], - "x-ms-request-id": [ "31dd4c9b-4a08-4e05-82f7-5ae372d79ea5" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:31dd4c9b-4a08-4e05-82f7-5ae372d79ea5" ], + "x-ms-correlation-request-id": [ "a485c0c0-6489-4f7a-87ad-552c20d5403e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13937" ], + "x-ms-request-id": [ "a485c0c0-6489-4f7a-87ad-552c20d5403e" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:a485c0c0-6489-4f7a-87ad-552c20d5403e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrKlouD8WLMckuMNJpxRR7WFh0i3rvznscoT8nKlOuMQ1BR+Fvgd3VvGDo8Shhuy2Oodp9GNitqVLDqfpywOESbDbT97IsQe4A2h8jz/SPxLLDlZXRG8yp01YINa7d7ywcIpTwSXRjSFioBVPt7kw" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwq+v5TaXZUlvutBfzzNjw7kYM2VaCDe4hhvfCKDP90+cgm7l52CVbMVmQMmBZPoIOR0FfUrw2bUgUboph9+6IAyLSavCrC99MX/Ew1HMJ1eS9syRa6oLEgpMLFkOERTNLPxWFIRhg9Ylll1V63aV" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2274,8 +2274,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2458" ], - "x-ms-client-request-id": [ "c5c3b774-0932-4aeb-9ebb-b27e0acda073" ], + "x-ms-unique-id": [ "1382" ], + "x-ms-client-request-id": [ "0c8385f3-b636-4e6a-9a1c-952939bc1341" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2289,16 +2289,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9d996ab4-17df-4029-8c0c-98d95e0ef873" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14092" ], - "x-ms-request-id": [ "9d996ab4-17df-4029-8c0c-98d95e0ef873" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:9d996ab4-17df-4029-8c0c-98d95e0ef873" ], + "x-ms-correlation-request-id": [ "4c83161e-9c5e-4531-9f4b-8f702b77a6aa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13936" ], + "x-ms-request-id": [ "4c83161e-9c5e-4531-9f4b-8f702b77a6aa" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:4c83161e-9c5e-4531-9f4b-8f702b77a6aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoQEp0/EO92FZoAbQHjSdcXf81/FB5rBwTrPlKcmmNczzw6GAXbInZDuc647dKP6d3W8/kGd9Ppt05E3n4LqIoixPSjh/Dt5aGMjtBFdzuQkfMp2pqM4DPML36XOn3Hf3W/AASzFTenf2jpZMQiKj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5uaSJNrmI4F/zU7beLqEUebNzgHhDQAXBINcI9q76EpNqXERiRaJa/ipfAzTiN3WDLeuC0SH2Oj4MFn2J8FGiBcbDI3Ghs5JQWSE4UF5EbynTg4bO/7fWCuiiQAt6EjI7RmI50nlcrsndKYS+x1A" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2316,8 +2316,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2459" ], - "x-ms-client-request-id": [ "a8fb73c6-16bf-4036-9be7-16867703c085" ], + "x-ms-unique-id": [ "1383" ], + "x-ms-client-request-id": [ "c1717b39-a64b-47bb-a449-faf00d1e18eb" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2331,16 +2331,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "126f306b-ec3f-4667-bed0-0fc4e0a9e73a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14091" ], - "x-ms-request-id": [ "126f306b-ec3f-4667-bed0-0fc4e0a9e73a" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001305Z:126f306b-ec3f-4667-bed0-0fc4e0a9e73a" ], + "x-ms-correlation-request-id": [ "c675e29d-c681-4062-8ecf-7e669985ed29" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13935" ], + "x-ms-request-id": [ "c675e29d-c681-4062-8ecf-7e669985ed29" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:c675e29d-c681-4062-8ecf-7e669985ed29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOjiHnZXVUG4lAjbY1iCq2Na8cFHRb/jDCeMt45C4bzW15RkbxTFzigI9cez2Pv1On355AtbYW+ZjpbgiGAHHKXGfp1MPyJ1hCp/UgmW3QcIdAbsZiEovbkP+MAhBU6BRXH7im4wbhw09FVReq+D8" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpi7r+LI1mhcZvEBp8c+OxkRN5aMGjOc3VMYRVmxXV8o91FVw69zsgEX19EscrepkjABSWgsuh+/2bAHJs7yLdLPBEv19gznXKlPCKn9S990Zfl9hZk/m1oIBDxY3y6mHCexvqZ0C8bBxBjabfGNe" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2358,8 +2358,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2460" ], - "x-ms-client-request-id": [ "7d9f3c88-a705-4a3f-91b4-a4932f9ca92a" ], + "x-ms-unique-id": [ "1384" ], + "x-ms-client-request-id": [ "84780fdf-26ab-4350-971c-6f314181ae21" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2373,16 +2373,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cd3a2a7b-dbf6-4fb2-a690-bf5d350c692b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14090" ], - "x-ms-request-id": [ "cd3a2a7b-dbf6-4fb2-a690-bf5d350c692b" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:cd3a2a7b-dbf6-4fb2-a690-bf5d350c692b" ], + "x-ms-correlation-request-id": [ "284094d1-eaef-4e3f-b4bb-a9636ea8c666" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13934" ], + "x-ms-request-id": [ "284094d1-eaef-4e3f-b4bb-a9636ea8c666" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:284094d1-eaef-4e3f-b4bb-a9636ea8c666" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmcvuR+sfXqTL0F9G+efucQAaCJuVUnwKDLJPbZ4JfrJG0ofKoyYulrc966gJxBtYMIm27hwQnbXPVad8lgqjicL1bCdbh/AAY7Y9ncDAL/9Qx2uFN30yxj/luAV5Bk0SDbgyqFdNO547Q9hCPd6B" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvczl+F4kkE0KRifEMOB4JGgrt6XTSvoSFuLWeg/5PlRxiVv9NWchicEg9OUouvpS9/w9i6yOVkMR0X7u74lmN7wqA+PKJPc5puxi+qKZkL7lwEQKDE/wbfShAzdeW/+TMg2UNWLsqPTtIX2nPAXw3" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2400,8 +2400,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2461" ], - "x-ms-client-request-id": [ "ac3c4c1e-5e4e-41ed-a8de-ee93e107ec25" ], + "x-ms-unique-id": [ "1385" ], + "x-ms-client-request-id": [ "d6896bde-60d7-4875-8312-191cb01c9e5c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2415,16 +2415,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a2a7dc43-d892-4263-96ad-0428f09178d1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14089" ], - "x-ms-request-id": [ "a2a7dc43-d892-4263-96ad-0428f09178d1" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:a2a7dc43-d892-4263-96ad-0428f09178d1" ], + "x-ms-correlation-request-id": [ "ffa4f443-58ec-406a-8c7f-bc93352cfeaa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13933" ], + "x-ms-request-id": [ "ffa4f443-58ec-406a-8c7f-bc93352cfeaa" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:ffa4f443-58ec-406a-8c7f-bc93352cfeaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvASmnjpTf00wE2rTLGWUBUk0FGGcNrtZk0mMVbPttLv3aYhcyhvTJ1ZdnC2Ir3fzEOaiJt5Er/c0WHHdHvdxglfA0Bp4PgbecmQftmVPx1Co55xGaCy+E/KfgUpN5GI93LCV2p2qN2NTXMTwH04o8" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6n7eRiCXMY/GlV2SM7MOzRw2oKny9wRmcIMuByKgOMrUNDYlGmyF1tVig0q1e0cZgI7MgRHZ/zE5/YadBWjFfp+Ptix9qS0Uw2h+Cm92Ju3VnYvg1kbCC8SufEXRqfmYWhl0LXj02wEaOqD4jphK" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2442,8 +2442,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2462" ], - "x-ms-client-request-id": [ "23e373f1-bdb0-4476-9c86-f73b1aec82c6" ], + "x-ms-unique-id": [ "1386" ], + "x-ms-client-request-id": [ "e11b4626-ab30-4d63-8e14-9623a516b606" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2457,16 +2457,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ead6b6bb-c2bd-4e23-ade4-c8301e4ed05f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14088" ], - "x-ms-request-id": [ "ead6b6bb-c2bd-4e23-ade4-c8301e4ed05f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:ead6b6bb-c2bd-4e23-ade4-c8301e4ed05f" ], + "x-ms-correlation-request-id": [ "56804d0f-5787-4ed4-a245-265317581af1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13932" ], + "x-ms-request-id": [ "56804d0f-5787-4ed4-a245-265317581af1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:56804d0f-5787-4ed4-a245-265317581af1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:05 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi9ru2UlyLW774lCuQa7mYHWNDw9mwGQPgB9iwDPAWZZwRzEXkfjAGX1t8FZCvKhP458RQKPEvUW9tOarmruX1vSkTjaiXz6tMqBmfC5C/t+8IUh7sM4FkSSfPTOcRwyJWcxhzNBi6YSlmtPSnQ0s" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAExf20n+s0rhDO6QlK53dUWE5w06k/35w2iq3LmPbzyZNRw8/hkhYP9KQYHFeCR4G626NtpsCnFsp4kOYAWmyMT/59cyttalXwp192OTeMuFpcHTo4nX0/B/QAnNd6C5Shfv/n4R21pzeQm1yZ/K" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2484,8 +2484,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2463" ], - "x-ms-client-request-id": [ "d643972b-2846-444d-8bdf-c4af7074a710" ], + "x-ms-unique-id": [ "1387" ], + "x-ms-client-request-id": [ "7f6410f6-9593-4c1d-979d-6e57021b3ecc" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2499,16 +2499,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7a1b132a-e270-4557-ab98-ed4c0d7b8d06" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14087" ], - "x-ms-request-id": [ "7a1b132a-e270-4557-ab98-ed4c0d7b8d06" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:7a1b132a-e270-4557-ab98-ed4c0d7b8d06" ], + "x-ms-correlation-request-id": [ "63752e17-9455-460d-9182-c326f8df32f8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13931" ], + "x-ms-request-id": [ "63752e17-9455-460d-9182-c326f8df32f8" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:63752e17-9455-460d-9182-c326f8df32f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcj2nadVo+6WO3lpYqoaHGys7A+29QhKU4vN03NdedVHJE7TN5F9+tmFyWlo1wupyHKOHburyl9XN7+yvP4vzE5WyQWoUFgOcaseauAFyumQRJMG6OflBNHHwSvsZAoF+qzgOc9ovAGffeeij0MNh" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyz9IKGqCk6NFB7XhIYMhJeXCK5pAV+yHH+fnl/WDWbqxohvmZJUqQ6STjkPCiHTsN1QRi7pJaZ2v/f0YyE40hNuxQX5JS6QPo4IgsWPCa5z8XvF1K06ZQfvXstbdwHdu/qb9fRCmXUox6JXTgAP8" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2526,8 +2526,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2464" ], - "x-ms-client-request-id": [ "d2cdfa8e-0ea1-4122-ab38-548c893a2381" ], + "x-ms-unique-id": [ "1388" ], + "x-ms-client-request-id": [ "87e43d2d-8b0a-4ae6-9e5d-e50f5ebf8ea2" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2541,16 +2541,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4aa9c340-e4a6-4037-9c24-c6231a04a70e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14086" ], - "x-ms-request-id": [ "4aa9c340-e4a6-4037-9c24-c6231a04a70e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:4aa9c340-e4a6-4037-9c24-c6231a04a70e" ], + "x-ms-correlation-request-id": [ "415bfdd8-cf05-4af4-b245-555326d44201" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13930" ], + "x-ms-request-id": [ "415bfdd8-cf05-4af4-b245-555326d44201" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:415bfdd8-cf05-4af4-b245-555326d44201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMFCKJE2fCCeYT84vjVeC1MRb4o6FvKsyIXq+jNerI8pilQOhXUVBNib+Az7wf9/F54glSxx3N7duJb6lge2vyQu8O/yxJZqDWz/FIZsM+yDuVnZ2xW2mjNScw1NbiOi0txZAZbLweaJ0I8EFJSbb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFXfsJH6pWf4iLRmOc9ddxBxJ8W37dMXOTloVLub9B8n1JFtFpNHCr2soSqHDfl/VBwwJQNb4pcD1uMqZWGCMQNMLYYkvkdLEOD5BjTu+qmcFmgFZ/4j35y/1lb2hYHGNMR887IbOzD6AG55fQf1Z" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2568,8 +2568,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2465" ], - "x-ms-client-request-id": [ "4f48686d-60b2-4149-b6e3-d98c7a3d0ec9" ], + "x-ms-unique-id": [ "1389" ], + "x-ms-client-request-id": [ "13ebdb6a-c60e-4ed7-8de7-e6bb4546e0d3" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2583,16 +2583,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7bda6d41-a747-4c17-975e-21a570c2f7b4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14085" ], - "x-ms-request-id": [ "7bda6d41-a747-4c17-975e-21a570c2f7b4" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:7bda6d41-a747-4c17-975e-21a570c2f7b4" ], + "x-ms-correlation-request-id": [ "cbc90828-7d61-46ba-b398-e4f876a83cb4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13929" ], + "x-ms-request-id": [ "cbc90828-7d61-46ba-b398-e4f876a83cb4" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:cbc90828-7d61-46ba-b398-e4f876a83cb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+LT1qbbSnNaNDTFER6hcNVM6S5N9iJ0w+x5ZSQBD/UJEJKUukiOhBgCllEsd3SY3yBZiGuhF7RHGuS1ueEC984/TKYgxUG13OglLCylkVkfZ/ywtIpctcM/lF31D8V7EwMowq06eVurxoIO3ZHIf" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV3z3caYJONU162kpI0X+ZLdvVQgvrcbYhyvvX0RegXmLb0hJW86uD6qEAYt5Hz+beAzG5nM1U5qYVd4ghNR67MYgrPAGiQuGCXok8AHNu3xZHliSN6rVDgzdDjBAjuz34x16UuZp4/i2ECOujMSE" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2610,8 +2610,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2466" ], - "x-ms-client-request-id": [ "c56b1510-3bd3-4319-84e0-e7d5a3a4d851" ], + "x-ms-unique-id": [ "1390" ], + "x-ms-client-request-id": [ "fe81b211-1d41-4fe9-9959-c0b8b65d0949" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2625,16 +2625,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "040b4cb3-78ac-4cb0-9a46-194ead0d17ed" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14084" ], - "x-ms-request-id": [ "040b4cb3-78ac-4cb0-9a46-194ead0d17ed" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:040b4cb3-78ac-4cb0-9a46-194ead0d17ed" ], + "x-ms-correlation-request-id": [ "042e1ec2-5426-4625-afc2-f9964cdab428" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13928" ], + "x-ms-request-id": [ "042e1ec2-5426-4625-afc2-f9964cdab428" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:042e1ec2-5426-4625-afc2-f9964cdab428" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOnLdY5+PtUSyqCezsLD8DK+MoEqzcfAJBFRhIrxa6r371wQ96FYEN8nm/ZQXo0FbZPasdE4o4nG5kpjr36G4YUKx8qJTWvJNqOJHS8s4e5L4KYVvaKO3mnxgxpfXTQg2vYUA2n6V+S/mJhTHzaqE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlgQy6GEcLG/3/B7xkqARr/nnxHZCZupPhf/TLhH1KSKW4bekcXeUYT1GlNknsUem3kWrkP8XjlSIeC8mlQ/zRWs7FHNM92gN56maAAKnlrCMdcZggPnARC4jumguA1wsY8Cy2+98m4QSfNOO+l/6" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2652,8 +2652,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2467" ], - "x-ms-client-request-id": [ "a2401554-f5c1-4da6-84fe-578828dcf88b" ], + "x-ms-unique-id": [ "1391" ], + "x-ms-client-request-id": [ "951435b5-db12-4fac-aaa5-67310f45bdd2" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2667,16 +2667,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "23afd8dd-798b-452e-ae30-6b5e7a30405a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14083" ], - "x-ms-request-id": [ "23afd8dd-798b-452e-ae30-6b5e7a30405a" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001306Z:23afd8dd-798b-452e-ae30-6b5e7a30405a" ], + "x-ms-correlation-request-id": [ "d4a04eff-0148-474d-abf7-874bcc81f25a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13927" ], + "x-ms-request-id": [ "d4a04eff-0148-474d-abf7-874bcc81f25a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:d4a04eff-0148-474d-abf7-874bcc81f25a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv98QWeBXy59YibfMNXpxeClnv/qUAxIGk+syR4Ev3Qi3PvVQfIv49/VyGcLiapthswUzFqHkp2wXzqArOJG9CzlZpvSWXlp1ixQ6d3CscoP3yW9SXmhYqLd1f58v7+noxD+SVF1PJkD3ta30T3H+7" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxEx0h+HiP0QkS6/vT6bmKTTV3TXEpjGbWa9ptzCc4RwtaNmA5eu2yGlKEtmRky0JFKc63Wy5VMoje7L8DdFK+X6u69wVUDdZeLOCWMH1nu2niQKIWV+dF15M663ACJIyYgDPVkTjPIzwZSaBeLyB" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2694,8 +2694,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2468" ], - "x-ms-client-request-id": [ "40267d03-f776-4ffd-b6bf-1ae5fd2ece53" ], + "x-ms-unique-id": [ "1392" ], + "x-ms-client-request-id": [ "c50e0679-9652-437e-bd50-28eec2adb078" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2709,16 +2709,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8b950682-5bec-425c-83ee-7aa26f856155" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14082" ], - "x-ms-request-id": [ "8b950682-5bec-425c-83ee-7aa26f856155" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:8b950682-5bec-425c-83ee-7aa26f856155" ], + "x-ms-correlation-request-id": [ "5a6ec7ef-0556-4ba4-a700-5b511d5d0d94" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13926" ], + "x-ms-request-id": [ "5a6ec7ef-0556-4ba4-a700-5b511d5d0d94" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:5a6ec7ef-0556-4ba4-a700-5b511d5d0d94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCzkMrv9R6gFlBZYqaQyj9Vi4BICZX5wGczk0k+pd+ftfqHAedPbFPsq6s7LG2fZF8JUSjipdqKXWfYSWl/6R/ianxQNyVd3t2OWbekCcS8KQkia8kDZXx9dXTN2AaCn+ZWKPTr7zoxnpOh1dxwhr" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEAfPVaBEYj+tKsdx6Do1tyHpUGzHw+xOi6tFR61qyDfkdDmsk7nxmpgp1wUnrSzTuKQzjvjiG0Ew3+LWhIeOuL6tAHozVLqh/LzLP57hCcRk8SRKDSJzdHlQeQc4k1sk8CwW/fiLuIoadz/fsbXZ" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2736,8 +2736,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2469" ], - "x-ms-client-request-id": [ "1aa6ba28-37b4-47d3-91f0-deebd3f5e3de" ], + "x-ms-unique-id": [ "1393" ], + "x-ms-client-request-id": [ "e6cc721f-e4dd-433a-b8fe-14e86720ebb6" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2751,16 +2751,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e01a8afc-3b06-48e5-b25d-d9b1dbbe4c9d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14081" ], - "x-ms-request-id": [ "e01a8afc-3b06-48e5-b25d-d9b1dbbe4c9d" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:e01a8afc-3b06-48e5-b25d-d9b1dbbe4c9d" ], + "x-ms-correlation-request-id": [ "c57e500e-0ceb-42ad-877d-503e80eb93fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13925" ], + "x-ms-request-id": [ "c57e500e-0ceb-42ad-877d-503e80eb93fa" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:c57e500e-0ceb-42ad-877d-503e80eb93fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBDQQWca4QqYmCxJy4C/u3YH1hizF3auxwQfYmK6WYrUx4SoQaPhtXm5PK0uLkUuwGPaFPZGeOXyb1bx08vfC+cO7qgdmDmEW/iXivTTCri/tStodKt5d//FB6FJDPouhEi1fZbg115MaEs6rigRc" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlDHymDgGhaoaSMOe97uTK24/yCb0XhbKkC2i4VCRpJPnr6w9LclVVB771z2mW1S26uWl2tmUG+719JVGf+QN0Y50FH4d83b8Ve/PA1AXt7HsbGZLB4utt5HfwfHuJ/mIqtHAFMSYg4B4HLqDJhhs" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2778,8 +2778,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2470" ], - "x-ms-client-request-id": [ "62bcc876-85fd-4bee-ac88-c178936039f9" ], + "x-ms-unique-id": [ "1394" ], + "x-ms-client-request-id": [ "a749fce6-5b85-4aad-ac32-3b7e033dfdbf" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2793,16 +2793,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c319aa39-5901-4492-b527-c90103c026e2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14080" ], - "x-ms-request-id": [ "c319aa39-5901-4492-b527-c90103c026e2" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:c319aa39-5901-4492-b527-c90103c026e2" ], + "x-ms-correlation-request-id": [ "9cee2836-8900-4994-8ecf-283aaa0b1982" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13924" ], + "x-ms-request-id": [ "9cee2836-8900-4994-8ecf-283aaa0b1982" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:9cee2836-8900-4994-8ecf-283aaa0b1982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:06 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXU1RMiP27YafFRpabEQpnHUL0wthgiG7rNkq6JfPxx2HCzVsjrTEbLIMHUDuK3UCHwKWMMWw8rrLbptY5FGq7OvRQk2PfGmZJF5aIAd2tY7LrK+6IeUgnaG37a0NSeCSiOwxvgjLsrTXD/ce6Ox1" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXC88pm9cBGUrV5DROxOFgsWBesXoHWAZ5YLpania6HAt4RnzoA/S9BwS3gZCqf2Cx261epG+2LbiT/YWUQZdw0pBpJTkaxXCDfaPPBonsn18162xpb3NTKCgs9uIo1/cevCEjUCeGO9deivvwdb5" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2820,8 +2820,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2471" ], - "x-ms-client-request-id": [ "0f8eb634-6b0c-4050-8756-b4986dc621a6" ], + "x-ms-unique-id": [ "1395" ], + "x-ms-client-request-id": [ "7597b4b9-7bf2-4d35-ac17-332f77fc5448" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2835,16 +2835,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c0a59753-ba84-48a4-9611-8c90aeb1d15b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14079" ], - "x-ms-request-id": [ "c0a59753-ba84-48a4-9611-8c90aeb1d15b" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:c0a59753-ba84-48a4-9611-8c90aeb1d15b" ], + "x-ms-correlation-request-id": [ "7bc59dd5-0119-4337-be23-9e296a93267c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13923" ], + "x-ms-request-id": [ "7bc59dd5-0119-4337-be23-9e296a93267c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:7bc59dd5-0119-4337-be23-9e296a93267c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ6I41OfjUGXA/ApqPYGK3DSAT5d9jMgJ4nXNqO5uH3qO6q7M6IrHkISbBkf0ye1H4gWY/MBJpxoSN+0SnXpRatokpU1p9481jXLA0VuTcM624Oj1nrqlyV5hwcyuWsMzyrOvJjCvetkiDEWtWkwx" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkpTwfVl4tKxXi+xldFwXCg+S9891axw5A3hCLpzlG3/Hmyw3JMvcS6k6UHHFKpOBdSOfu4jNnYnIYzNQ9iJrIl146fHzzjUYZWhkuTbbQLA3pcSWrt7GUogJuGKH1Wn5E/HnSpbV7muxhu0VeRo0" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2862,8 +2862,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2472" ], - "x-ms-client-request-id": [ "e57e6b82-173f-41c6-a0db-3cb9bbc6a29c" ], + "x-ms-unique-id": [ "1396" ], + "x-ms-client-request-id": [ "5ef8f76e-f149-485f-85b7-534eadddc035" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2877,16 +2877,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "caadc135-d012-4bc6-a541-5134e3a541aa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14078" ], - "x-ms-request-id": [ "caadc135-d012-4bc6-a541-5134e3a541aa" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:caadc135-d012-4bc6-a541-5134e3a541aa" ], + "x-ms-correlation-request-id": [ "b497fbb7-0162-4a6e-bb55-01958b1f547f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13922" ], + "x-ms-request-id": [ "b497fbb7-0162-4a6e-bb55-01958b1f547f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:b497fbb7-0162-4a6e-bb55-01958b1f547f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4k8cuxSbzNEjvMWjzOjfkFV7u/d9JOdrZdCYgXTdAgGDWyYyV32nAPOM0DJgUoTEbXfIhfgVINSe5lswNFuBpvdwswEMybWREgbmX1XEWTeVl5KwYG7TnjSRDL1TrgelxGBR6LR39TbLijuH33Eo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzEjp4QE0zGGWlU4XY7A2+D2lgp/zDw8UdFmyiovgVkkf+da4OCWcM1a6m5xQyrS0nvCN8uSuNtxoRBqG/kXgJo2gyYmGmv02tcsMZebuypiUJhJqUmqqHdvzVUHEvH2y/kaOZIw0qy2r7fvslLND" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2904,8 +2904,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2473" ], - "x-ms-client-request-id": [ "fa1216fd-73ac-4c2b-862d-5ad537938a39" ], + "x-ms-unique-id": [ "1397" ], + "x-ms-client-request-id": [ "83815c84-c64e-42c3-b1df-ba0fdf488ece" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2919,16 +2919,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b8a7b25d-dddb-4038-a2b6-53c1e3c33f89" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14077" ], - "x-ms-request-id": [ "b8a7b25d-dddb-4038-a2b6-53c1e3c33f89" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:b8a7b25d-dddb-4038-a2b6-53c1e3c33f89" ], + "x-ms-correlation-request-id": [ "25e28e8d-0214-4487-83a5-1622d63ff6a5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13921" ], + "x-ms-request-id": [ "25e28e8d-0214-4487-83a5-1622d63ff6a5" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:25e28e8d-0214-4487-83a5-1622d63ff6a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT/2+x3F9KIKtaXb4krWJIhsDcrP3QjU3acj4iyOgWuGng85L0MrcSdSZAMsxuDktL16v8RzdYCxPMmFbtAHM8Lq+VbuSbga9urH3ubINQYXl/6B2x8AapyVstVBxLWFj0phcKj35FKlA+Wg8s6Vi" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlYTUwhh8UKgfae127lIjL3HXrrOlu7OkZV/jg7rCoZpp7m/IEMGhPzy6RNMD8RX7X0iuzoLPQSCwHFqilTViDKeOGQkq2raWUa7FuaT3rAM+fbXRXyTUMxqlYyrKXxucM9i0eDuyzHHgFWiQDV5d" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2946,8 +2946,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2474" ], - "x-ms-client-request-id": [ "8cc33573-f01a-4d00-b8a4-39d12ab723cd" ], + "x-ms-unique-id": [ "1398" ], + "x-ms-client-request-id": [ "fa346eff-b93b-4c82-a23d-8a05317f02a5" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2961,16 +2961,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "84389c1b-984e-4be4-b5d2-ddfcd9c0aa0e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14076" ], - "x-ms-request-id": [ "84389c1b-984e-4be4-b5d2-ddfcd9c0aa0e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:84389c1b-984e-4be4-b5d2-ddfcd9c0aa0e" ], + "x-ms-correlation-request-id": [ "5f5ed32e-ad2a-4515-8546-eccf58ba9bd2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13920" ], + "x-ms-request-id": [ "5f5ed32e-ad2a-4515-8546-eccf58ba9bd2" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:5f5ed32e-ad2a-4515-8546-eccf58ba9bd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9gDNYT+Ewrx1BoibSgLAjQyQpttVJYiSOuuj2n7JNSYZ1CRapNs+kKwNvzt3s/n1rtASu4ytuaFT9leNNRxgHXBYv0WAosdvuDgtyBaktlz31TN7HefvdAfT8+FIEx+XtCm0z01Nx7xbFgpDc5mm" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvf0uVzaG/sywI3NS8QS/vAxPORyO3E2rF64h3w88u4Qkp3/2g2H8Bvz6uHihLZ/Q2nJmH6P29+mRtaTzAEit6skRjLA9cUTO1j73eBch2ORWVNqAar2vPplbbcHWwLI+joATNDsbqOSk869LFBzHJ" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -2988,8 +2988,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2475" ], - "x-ms-client-request-id": [ "c6638668-92c6-4f9c-81aa-8439cb176d07" ], + "x-ms-unique-id": [ "1399" ], + "x-ms-client-request-id": [ "1892713c-533f-49e0-9aa1-a2a120e6d74a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3003,16 +3003,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b78092a3-bd53-4449-b6e4-34714e7975f2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14075" ], - "x-ms-request-id": [ "b78092a3-bd53-4449-b6e4-34714e7975f2" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001307Z:b78092a3-bd53-4449-b6e4-34714e7975f2" ], + "x-ms-correlation-request-id": [ "42d63784-7e2b-41ff-9682-db9b8b4848ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13919" ], + "x-ms-request-id": [ "42d63784-7e2b-41ff-9682-db9b8b4848ac" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:42d63784-7e2b-41ff-9682-db9b8b4848ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMVjIFm1fFdWmg1KhMid0ix7sIZZabiks2IRuNHhYCVvV7ftXtfXb7yB08wYjw9ayQb3GfUiMKENJe5nx3gDCnNxpAM42uUCHcK0Hfm8FWDtoryh1T3QYoEu7XcZw8gzQnwGa6F0TUxZsz480yn2p" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCJ5tgYYkDo3B6FFJQidJB4N1pkSxJ2T7UGubNcd3BC1YnS5Ih7xSiFW/mOy2hMFdIAQl26FDr4A5kadIAhwB5pSahINr29cY0OCkD1RQeaqZ8ikzFxCnDo7VRJrjvfMeGsSoB+K5bvP6Ozg5prjt" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3030,8 +3030,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2476" ], - "x-ms-client-request-id": [ "e6b5c6ab-4f10-4dd5-a66b-f533e3b4b2ee" ], + "x-ms-unique-id": [ "1400" ], + "x-ms-client-request-id": [ "6254fe8d-142a-4664-88ce-8bd436d92f2a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3045,16 +3045,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "32394781-4fbb-4f0a-b5b1-d7b74a234cea" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14074" ], - "x-ms-request-id": [ "32394781-4fbb-4f0a-b5b1-d7b74a234cea" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:32394781-4fbb-4f0a-b5b1-d7b74a234cea" ], + "x-ms-correlation-request-id": [ "e66cd4d3-7846-46aa-ab8d-8938511d079a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13918" ], + "x-ms-request-id": [ "e66cd4d3-7846-46aa-ab8d-8938511d079a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:e66cd4d3-7846-46aa-ab8d-8938511d079a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOCOaSVIR69wvqbe+8HgQn1gCSxsiepX13ZfFdJo3jkLMWcls044YqbUyaGpoqxPs1PsdjmA63xv4pY/wlIoZjCvghj/TJG7XbkL/4QzD+bW7lVq65M6LuysVcso3w3gNhUzMuV+LbesQrbYj+rL9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvylp34LFZbqDSFOAz/hOUs18st3TqXQf/EqmLukNeMnn+Ak+u2Hbks4xg/pgxdkYO7Ya8990WUTe3iNX+3x8bf2GN0xy6M/ix5sg3NB5PcH1joJMSaTXtw9r70cv67oEX3YwIBMSpvsy5Y9OJO1x/" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3072,8 +3072,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2477" ], - "x-ms-client-request-id": [ "3144f5a3-0c85-48ab-88a2-3a5493b05ba6" ], + "x-ms-unique-id": [ "1401" ], + "x-ms-client-request-id": [ "f1b3011c-e7fd-49df-b6e8-3fc3b4a056f8" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3087,16 +3087,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dca231cb-6a9a-4e75-a791-50d94463327c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14073" ], - "x-ms-request-id": [ "dca231cb-6a9a-4e75-a791-50d94463327c" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:dca231cb-6a9a-4e75-a791-50d94463327c" ], + "x-ms-correlation-request-id": [ "2cc4750c-88f3-4423-83ef-1d64bc101218" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13917" ], + "x-ms-request-id": [ "2cc4750c-88f3-4423-83ef-1d64bc101218" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:2cc4750c-88f3-4423-83ef-1d64bc101218" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9QbQ2ZlBaxJfERsRqfL9eV386iN/IJ1lAUDbzquAQlArlsxvoOKd8Hc4GelSBQlDsxgLYRDSwoDS757f6gESXdTbaHKnNo8NHLDHJy94DnxbQkgiuKMoQtPZ+6d0jCcQh/xewXWgOePLmLA7GI2N" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSQj58/5qNglrDhX0iQbNGMXBcQWVvJF6Ul8ZOFQefdwAszQsGSPd6ah+iauf0adeEGiNKDBzeZDDhjyfhTVpkuSsrTAcy0oq41LrfgzWRK9n+hJIbYmugfsdVH9DIIrTBUxSiy7x+X+3RD12hXCK" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3114,8 +3114,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2478" ], - "x-ms-client-request-id": [ "c22e0df1-d8ea-4d26-b261-91c292cd5c33" ], + "x-ms-unique-id": [ "1402" ], + "x-ms-client-request-id": [ "a3fdc1a1-7b7e-46ea-938d-79ebd278c69b" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3129,16 +3129,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8536d844-c727-4ebd-81a4-83310fadafcd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14072" ], - "x-ms-request-id": [ "8536d844-c727-4ebd-81a4-83310fadafcd" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:8536d844-c727-4ebd-81a4-83310fadafcd" ], + "x-ms-correlation-request-id": [ "237991cc-e8a9-43c3-902f-bb15e0dfdb1f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13916" ], + "x-ms-request-id": [ "237991cc-e8a9-43c3-902f-bb15e0dfdb1f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:237991cc-e8a9-43c3-902f-bb15e0dfdb1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaQ+tpq0E4tn25LzGfEtVNd0BTS6+H6/m9y+UM993bm5CNnsYH0yZLcCc7d+pG16CPfUnhiRsCokq6m+y1k7LFR+X9j8IbnqPnf8lRoX5G3EWJEZLSi/tDNR3ReIXWeJDMQJ7/V4u46L35nmTQtrv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE6GomKCPaepG9Xm5QfXlIdGwq8pmBoxjqevhWC6SeIJhm937f0lJEOAaE6tgNx6lHVsYFxgJNX1Nar0VnpIoUw4kCtXXco38URLVNvsUq2BhSt9MED3SRRIvdm+C+NHMfskIGgqY1U+p3tYT84hf" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3156,8 +3156,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2479" ], - "x-ms-client-request-id": [ "128c61c4-045c-4b95-a24a-d30f882a9f1c" ], + "x-ms-unique-id": [ "1403" ], + "x-ms-client-request-id": [ "9b06d4c8-ae34-46c3-9577-57648e19c227" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3171,16 +3171,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "840f1b67-c91e-40f1-bc77-e98856ecdb1a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14071" ], - "x-ms-request-id": [ "840f1b67-c91e-40f1-bc77-e98856ecdb1a" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:840f1b67-c91e-40f1-bc77-e98856ecdb1a" ], + "x-ms-correlation-request-id": [ "d500fa67-b45a-42e8-afa4-fde5a040c940" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13915" ], + "x-ms-request-id": [ "d500fa67-b45a-42e8-afa4-fde5a040c940" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:d500fa67-b45a-42e8-afa4-fde5a040c940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6Lv8wfHNCz6NKQ7rE52q5P2Ly0Bmvw+OSBqc95WkYk9ZSiN0eG0jbuStZAvGYiGt3oZ47Lq1DJLr1DKdTpC4vD/FhepIRYSBECLgLxtQc4moaINo+x/mvDeM+MkUZ3spqJZYdKv0PGpXu9L1eKSj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDjxEno5NXsHajfRs9WjwT3rs0GrDQ2umJku/MoiGAIix7QHi07spdftQHKwvOjw6UBlS44RZPgBi+MTDAar7VIToPyTCpN8pIcGzSvCVWrj2Duz6ut6GtulO2quhH0e+lNz7rq1KH5nY5OjJSM1e" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3198,8 +3198,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2480" ], - "x-ms-client-request-id": [ "5302c326-ef99-46ea-903c-a0c0d2384fc5" ], + "x-ms-unique-id": [ "1404" ], + "x-ms-client-request-id": [ "17c0325b-0f80-4507-96eb-0f31d2de8c8e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3213,16 +3213,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "02f446a4-749c-49ad-952d-e338e5eb7f45" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14070" ], - "x-ms-request-id": [ "02f446a4-749c-49ad-952d-e338e5eb7f45" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:02f446a4-749c-49ad-952d-e338e5eb7f45" ], + "x-ms-correlation-request-id": [ "cae46721-a4c9-444c-821d-9173613bca55" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13914" ], + "x-ms-request-id": [ "cae46721-a4c9-444c-821d-9173613bca55" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:cae46721-a4c9-444c-821d-9173613bca55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1Jj7k5XD0++zdbESPn/wMTMcnP/gWyB9UHvnJQwJg7jhJuXdYQza9srHlgs8pDdK3QRWAxPGErvol8HT9YsJ+bAd2787ObsFgh9WWqNxMXeAiBAZqssXijAsByfn0P0C4/XzS1+c9+lhVQT1wUdP" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0JUEV/hcXsWF/VcCodh87prJDP8Vsd7U5R5Z6czYZA4VttTl0TWJeQFaQIbi4tuY8SEyvq2ObLcjaeso2PX/JF9m7mBdk3byCSyIh7wnJO2qRmU/6NA8VPTGH8b3K+8wW+j5KnxznvpTScxLFOM7" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3240,8 +3240,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2481" ], - "x-ms-client-request-id": [ "6bdab6da-8249-436d-b5be-7c4977ff6fea" ], + "x-ms-unique-id": [ "1405" ], + "x-ms-client-request-id": [ "78f088d1-71b1-4f9b-9c8c-25f1d7cf4d3a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3255,16 +3255,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "583d9129-24d2-4291-9451-8bfc6ae7fc00" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14069" ], - "x-ms-request-id": [ "583d9129-24d2-4291-9451-8bfc6ae7fc00" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:583d9129-24d2-4291-9451-8bfc6ae7fc00" ], + "x-ms-correlation-request-id": [ "ff958011-dbd8-43a6-8433-7d248a9e8e76" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13913" ], + "x-ms-request-id": [ "ff958011-dbd8-43a6-8433-7d248a9e8e76" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:ff958011-dbd8-43a6-8433-7d248a9e8e76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgVWGb2XmCHJ7wIuAuJtivfk28i3ftAf+EeYPhAX2NpR2jGrad3/A1B958npfINXdldZ6L38AltE+ETUjB5QvXMgCLfArzsTyafYwjjpevfvhmB9ytarmTkxTjqRYQSiypM7k3zMp//myDFD6JzS8" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvX+qOryjSZJD+42MwwhE4D1ay+dnhYLZe0sZWZ9MNARazLSUlcGnz9Gu9bS5SfsYS1vQJY4Llry8PYWAuchen5QNp1w4nzgqdiONzKNVjyuYvfAZ8se6Vge8u+P+WtTL7DjAjCSyWt5sT2RnCKiSD" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3282,8 +3282,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2482" ], - "x-ms-client-request-id": [ "be64ca04-59e6-48b0-b4a9-ca361ca8c7aa" ], + "x-ms-unique-id": [ "1406" ], + "x-ms-client-request-id": [ "8b6fadb3-3000-4d88-94a8-f46276d37457" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3297,16 +3297,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6357acde-5669-44f9-a6c8-a5198a2f3d5e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14068" ], - "x-ms-request-id": [ "6357acde-5669-44f9-a6c8-a5198a2f3d5e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001308Z:6357acde-5669-44f9-a6c8-a5198a2f3d5e" ], + "x-ms-correlation-request-id": [ "577e8860-d8fb-4bc4-8caf-32f8f187a86e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13912" ], + "x-ms-request-id": [ "577e8860-d8fb-4bc4-8caf-32f8f187a86e" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:577e8860-d8fb-4bc4-8caf-32f8f187a86e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxMcHU4ieNLXWJbDXkv7bBCNqg5lNp5RtFviyIzwtc/DjUBIJFshu6a7+l8YR9oQxQYP/CJxjM7qe8Sdg3FVLlMNGWGjCwFCdU/fkWh/LvIXea62f5l1TacD6az2saToDhse7r6tGoKciVtH2UDgH" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBmqq3rpMdaAf/btTvjMwC4lpavqw8iV4HfA6O/ZfX1iUUCpxEEAbZZILlJbKCsaILEoCV+I6EbFT95MK6y0nahgcy9lF6Jx36KP++kNdfVfhaUa2zxHhbd3z8YmLtFcplyh4kCCb5h/6YJ2Hp5hb" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3324,8 +3324,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2483" ], - "x-ms-client-request-id": [ "e81ac65a-d164-4d4d-952e-5425fac8640c" ], + "x-ms-unique-id": [ "1407" ], + "x-ms-client-request-id": [ "cf797d70-c7a2-418c-8e79-bdedb48ff5fa" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3339,16 +3339,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "683d9daa-d90e-4baa-b6b1-f83f43260ea0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14067" ], - "x-ms-request-id": [ "683d9daa-d90e-4baa-b6b1-f83f43260ea0" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:683d9daa-d90e-4baa-b6b1-f83f43260ea0" ], + "x-ms-correlation-request-id": [ "0bec7044-7eac-48d9-939d-19e8615be608" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13911" ], + "x-ms-request-id": [ "0bec7044-7eac-48d9-939d-19e8615be608" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:0bec7044-7eac-48d9-939d-19e8615be608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvo1DrIsZGD3M9xTIF+6R4JgElA+FwrLpvgg+ofbwgwR9AXELnqwUHqCbOJqVZgNWfdzzxPBKOeXif/rEGa8rblEh3vqMZ/kXndhqbU1PHpX58KA2INIP38hv5vN722a1gTvMCyo3Y+ro/yOgnI6x2" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEc2d0BvbQ53WzJLSgJDhQSFaSpMJtZ2aJtFym9NX/riJYDd7KyjQHvIAr3QmQOnTeQM0aUt2wLGvhr3CDaXlNwDFwQU/q17ZLmh57GNvUpXVr0CusbUWCPTi0kisoI8NmKNsQD6rnazdDR3vF0IX" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3366,8 +3366,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2484" ], - "x-ms-client-request-id": [ "bae22474-373f-4b1d-a09c-5b03092eaa60" ], + "x-ms-unique-id": [ "1408" ], + "x-ms-client-request-id": [ "1469ab49-aab1-403a-82ea-55e4f4d95c33" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3381,16 +3381,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a8889a3f-12ab-452e-9f5d-fda9256312ec" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14066" ], - "x-ms-request-id": [ "a8889a3f-12ab-452e-9f5d-fda9256312ec" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:a8889a3f-12ab-452e-9f5d-fda9256312ec" ], + "x-ms-correlation-request-id": [ "a3606b2c-cf11-4f6c-acdb-8f28be5e6d31" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13910" ], + "x-ms-request-id": [ "a3606b2c-cf11-4f6c-acdb-8f28be5e6d31" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:a3606b2c-cf11-4f6c-acdb-8f28be5e6d31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOwPv5tUrSdlVdaGA1VAnz4kniB1RgZqp2rwJCMO5ug7Uw6WVroMQw9pW0wJ5IVTh7CiT7PnijM8eVefITNdeiBAveaAMVOkHXdlHKDWYWUrP32vWieyFWQ1gKQF96K+4Jdg6/70HOkiPzSQSOoWh" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+JEvlQbQCC/Eu/rKI/Ik9GL4adwXYevY+p8gJC/1oENmt5XhmW3AgIowJYm0fVN4YwE+GTrpRqHJpnbucWzaVGbKeuu6rAYtoIGrGIrud6i6UJfQJ4R7MWEC77ad+aZYmO7godWiXUFKU2rjzGY2" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3408,8 +3408,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2485" ], - "x-ms-client-request-id": [ "41c49869-cbd4-47af-a298-786f04a5c4f2" ], + "x-ms-unique-id": [ "1409" ], + "x-ms-client-request-id": [ "130e9881-bb18-408f-b0aa-d26196cbe0f9" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3423,16 +3423,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0f4d7a05-7aec-4afd-bd07-cd61c60cf97c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14065" ], - "x-ms-request-id": [ "0f4d7a05-7aec-4afd-bd07-cd61c60cf97c" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:0f4d7a05-7aec-4afd-bd07-cd61c60cf97c" ], + "x-ms-correlation-request-id": [ "4c75f068-9485-422d-95f8-94fd59f4227a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13909" ], + "x-ms-request-id": [ "4c75f068-9485-422d-95f8-94fd59f4227a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:4c75f068-9485-422d-95f8-94fd59f4227a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdNHvBE3/A7YVPF2vvmvlJv7Vv3luWlzibGSrzQIO8VGFtDIOfH5Ecd2WbCEBp6YEwUbCspldjCUcvjNJFxgKTa6P8x+AUAxE3FTiIM4bcu3mzGktPmPiXfgXqzwvFyagqMppsdOXqZBILZmDYEKO" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvv5LcrCxWBkCXwz2MTc1MJ7trkMooMPi8dBA3hCW0PH0eGcvUuC6T4F7g7Dsi6iOcxjPtWuHEzIBDLSMK43jZ+Iq4THdPqwC5iVsMcRkIykyzqM/PervQYtoxwoRGY15mN96NUAevGm9qC6cANoYe" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3450,8 +3450,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2486" ], - "x-ms-client-request-id": [ "542deefe-2fc0-4f45-9dd0-aa427194fb07" ], + "x-ms-unique-id": [ "1410" ], + "x-ms-client-request-id": [ "63d1e48e-14eb-45cc-80d7-8815f041a81f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3465,16 +3465,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "33f26276-e19b-4fd6-8489-ed2de335c0fe" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14064" ], - "x-ms-request-id": [ "33f26276-e19b-4fd6-8489-ed2de335c0fe" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:33f26276-e19b-4fd6-8489-ed2de335c0fe" ], + "x-ms-correlation-request-id": [ "b7f0e1fa-972f-4f45-8d91-2c1896b00953" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13908" ], + "x-ms-request-id": [ "b7f0e1fa-972f-4f45-8d91-2c1896b00953" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:b7f0e1fa-972f-4f45-8d91-2c1896b00953" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:08 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4a0oC3dA0cf4CadYdM0oWTtYHZSbqi7jw7bpsVjErhlW36jZsebl51kog8kjnVtXz2o40Qr8iW2Nejip3MNpEBvt2zAua5z7x48xyw9/S0ALU/HVC2Mu7JRGZ0biswKcxxY5ZqzS/j7ctmw1gbNF" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveEUW0fzRfyMcVJ9jOmlYnHWUn/zTPos3HD5zrbX3fF4FQZRtF9vVt8Ros3ji8wSKdT2nO+KIzOP5FbjZUi3Gp1vWVfUwvoXSKIFcJg0U1ALOo5vllE8hZYiSN2NzIbw6P2/bmM7rtyD5ExVSfEir" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3492,8 +3492,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2487" ], - "x-ms-client-request-id": [ "829d2bb2-007f-48f2-be3c-0bf87129faac" ], + "x-ms-unique-id": [ "1411" ], + "x-ms-client-request-id": [ "2b728a6a-6200-4ea9-b451-bb8fb2ebcbbb" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3507,16 +3507,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7d3c6fce-39ac-4006-8d40-665b2959b251" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14063" ], - "x-ms-request-id": [ "7d3c6fce-39ac-4006-8d40-665b2959b251" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:7d3c6fce-39ac-4006-8d40-665b2959b251" ], + "x-ms-correlation-request-id": [ "c6e2d27e-4a23-4822-a461-a5da23eeb9e7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13907" ], + "x-ms-request-id": [ "c6e2d27e-4a23-4822-a461-a5da23eeb9e7" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:c6e2d27e-4a23-4822-a461-a5da23eeb9e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3elLbbTo1FBBNyxiw/W9OSbV042EX19hPrv8xPfuGV1Rt8eaVZRgCoNEAV7iESWj6ylos3EGDf0W+eV+H5Yvw7Z3zZJ3HXdf+cUG6HQrovRjeSulAAksK15oUoryhUiPDCRd29rXhXTSo9IHFA5V" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYHawjesPtrsS4n42olOkJYlVRipP6d1fS3nafsnWtlOEDpqaB+CvQYUCVYSdAsCMPVFHXh+sFlbnCQ8Kypr2Z0sq3QBdmN4yA+o59/fK04JKs50iWwPO4JASSk3VsOt6l/KKnS0zwMOGh1KZlySb" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3534,8 +3534,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2488" ], - "x-ms-client-request-id": [ "af35b1a1-e695-4432-9a3e-7b75e32a7389" ], + "x-ms-unique-id": [ "1412" ], + "x-ms-client-request-id": [ "b340f8bd-6d6c-44d7-a5e1-59ec692ce48e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3549,16 +3549,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7791efd3-7a4a-41ea-82d2-3b9953910703" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14062" ], - "x-ms-request-id": [ "7791efd3-7a4a-41ea-82d2-3b9953910703" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:7791efd3-7a4a-41ea-82d2-3b9953910703" ], + "x-ms-correlation-request-id": [ "63d7cd69-ca37-41ef-bc6e-0cfaa532cdb1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13906" ], + "x-ms-request-id": [ "63d7cd69-ca37-41ef-bc6e-0cfaa532cdb1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:63d7cd69-ca37-41ef-bc6e-0cfaa532cdb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUy+P+B8lMbU/aNPVCf8c59LQKEjtIQsrwJK0NauReBKMjQtq8+TZcf566byWPZJ+k505oLtWpS8muLlG4z6o8U6WVZlBjSLgO4yh4oPAzcmSahpSrmeT80Q8Vo535kly7e6ptOKpfmn/1mCGzdEd" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvglq8WmmkAg7ULSw3RK1AWudvE32LUyVlx5wb7RNiU8MAhP3k62znJ39m7Tld5h3y34HfuHZemPzkAVJjcxcWjdiHFaB3qNCAM6GNHqMv+1BY7Qu/TrZX6HcIMMlIOgwIi51YgiTZ9KIx7uhytPn3" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3576,8 +3576,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2489" ], - "x-ms-client-request-id": [ "c670d871-b13b-4005-9976-3e02a37c446c" ], + "x-ms-unique-id": [ "1413" ], + "x-ms-client-request-id": [ "ccc42201-8789-4b64-aacd-8730f97ac780" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3591,16 +3591,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9db0fb0f-7861-4e4c-abec-bdffcc56ffc3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14061" ], - "x-ms-request-id": [ "9db0fb0f-7861-4e4c-abec-bdffcc56ffc3" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:9db0fb0f-7861-4e4c-abec-bdffcc56ffc3" ], + "x-ms-correlation-request-id": [ "293716da-9211-4bec-951c-46505d06dbf0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13905" ], + "x-ms-request-id": [ "293716da-9211-4bec-951c-46505d06dbf0" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:293716da-9211-4bec-951c-46505d06dbf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzdLdRdZCgKvKgQH43Q26E6Z1pOHIEctbW2CielWhjmGxm1reRBv7Ka23Ii8pehk4DTvlOQOqywwFuDoXI83h/UFHQf4Mo97mdStdOL+mdWhCvHJFt50Rq6FHpf/I/fGPsxlXnYMP77MqzH53hNkO" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv58t4dn892NIKHfjYLw8V1s350HOrNSu9aXjLN1bv2zbrBy8QyS55mangCftvLJr5w7JAWq9QmSQnpeVofeSvgjOO9zOhDyijQXGMWW79uAbXgRxW++xXNGrAyDhv00CCyAD5UnnLCoy3LI2IBp57" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3618,8 +3618,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2490" ], - "x-ms-client-request-id": [ "83e391fc-95c1-41c9-a566-441746a83827" ], + "x-ms-unique-id": [ "1414" ], + "x-ms-client-request-id": [ "d8820025-87cc-4e35-bfd4-49629f5ee566" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3633,16 +3633,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fba61169-5a2c-4960-a19b-081fbb0a696f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14060" ], - "x-ms-request-id": [ "fba61169-5a2c-4960-a19b-081fbb0a696f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001309Z:fba61169-5a2c-4960-a19b-081fbb0a696f" ], + "x-ms-correlation-request-id": [ "794bdb91-6c46-41a8-b326-e7544e3564a9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13904" ], + "x-ms-request-id": [ "794bdb91-6c46-41a8-b326-e7544e3564a9" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:794bdb91-6c46-41a8-b326-e7544e3564a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvh+pPY4bCwdNYSmNrM9sBmWgjV5br67IIafeaC1sLXLV+7wCIUkO3TOULcW0N/D1cN5fvQO7xZCa0Jsrg6yZyjx4ZMzf0ysKvMi1qV5Y+/n2fyvJeDsINbHUVcrlFMByXAif61njREiW6otebLm1/" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtPer976aU4CZ7EgSIgoT011fSqEQHLeiz7pMOI3gRvK8F50pZ6Mm3Uj8HunCjxrw966uFrsdrhRz8c3DT/Om3Bi5ttGqH6ZQUdH/LDLCPKhod7lttKCyfaJW+WdPX/q3xHyjZQ3tJQ09H7uKllNA" ] }, "ContentHeaders": { "Content-Length": [ "536" ], @@ -3670,16 +3670,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "897d4a0e-32da-4ed7-95e4-dd1192f3db6b" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1084" ], - "x-ms-request-id": [ "897d4a0e-32da-4ed7-95e4-dd1192f3db6b" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001310Z:897d4a0e-32da-4ed7-95e4-dd1192f3db6b" ], + "x-ms-correlation-request-id": [ "ecc692c8-888e-4029-9b84-91dbcf46a48c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1060" ], + "x-ms-request-id": [ "ecc692c8-888e-4029-9b84-91dbcf46a48c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213922Z:ecc692c8-888e-4029-9b84-91dbcf46a48c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviVUKoKQ5pXroRs0C2J6TpacIunE7LV6cw8QuZ9RUCca6ioNJih+G3QNqJ4AwB2oWMtNeDTPdNAfQEj9YkY420WBf+9kv7XRo98pOwm6CN1RshSDfn3CGX2Vfl+ooOfi3U3IOKZP67TjOQKbGPx2q" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhINtOZVKKNo1So54KQzPKlyZDVR3cAKKV4LzdzTpZGQgTC2SN6KodmmZG8pVbt+wEp869e//Fewhtde/ndESAYDvByJhhZF30HRZAy8ReAht9ivejaOpN77Wsg6kU8A3UP65e4FDWaGeGx8qeQhL" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -3707,16 +3707,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7211c120-c406-442d-a536-a160de8e899f" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1083" ], - "x-ms-request-id": [ "7211c120-c406-442d-a536-a160de8e899f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001310Z:7211c120-c406-442d-a536-a160de8e899f" ], + "x-ms-correlation-request-id": [ "2def7042-23a6-4961-9674-161bec110989" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1059" ], + "x-ms-request-id": [ "2def7042-23a6-4961-9674-161bec110989" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213922Z:2def7042-23a6-4961-9674-161bec110989" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:09 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpE4o4LutBT3tJ+bm2S1NZ7BmR4icsbAvkLkEyD1zI0fipsKXbxjtAHIwZrCTw7lVqwHhX1JWgUMN3I+bdcvXKsnWDish1sGLWwpELGCEPYn6PBelrkgZBBaN9B2f6WZNl3ZHsQtVsb/dZWS+AnPo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu7jKslgXiWSGXU+pWH6cvspz9M4aykLmtUXneNdv3mX5JQa/Fuhd5Dlv3rzWlPlOa7HcPYpwUSrKSG2+M23Imt3FHLjTU/ALcQ8gc3HI6yVjCObn+r7pkYFv2/x7ZMpDJ6q1T2KMkg09zXgqlQwW" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -3744,16 +3744,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bff44862-672a-4c4e-833c-0d5967dc5bd5" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1082" ], - "x-ms-request-id": [ "bff44862-672a-4c4e-833c-0d5967dc5bd5" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001310Z:bff44862-672a-4c4e-833c-0d5967dc5bd5" ], + "x-ms-correlation-request-id": [ "cbafc826-599b-45d3-bb77-c7def4065904" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1058" ], + "x-ms-request-id": [ "cbafc826-599b-45d3-bb77-c7def4065904" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213922Z:cbafc826-599b-45d3-bb77-c7def4065904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:10 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0wdkJfYblii/gHvbb0h6dwGddegF8eZ+HlDJwgZSeNk2D+nB/x+Ym0w+iBRz/BFyW7JNNBzsG0cFvazQIVSCvQlRAknoY3f291AXXXusNUN6J+nLDlwMvPuMA6/jdxZLcJpqP9/GgXzLBzz/tcMK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0buvOHJeltDmcmuMXzcRNdbRDnwEV6AVlu6RTItNQcEHqNTW9V0MIQk5Q28HMlJGLs1T5XSkbX6YnU19jXn+TbNlAksqH24LEdXmfY2CQ5JeJrqx6Nl+5bQVOE2+qYN0PtVCWDBXIvnTC/T1ePzI" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -3781,16 +3781,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3bbef5fc-7c18-462f-8be8-a130468f6122" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1081" ], - "x-ms-request-id": [ "3bbef5fc-7c18-462f-8be8-a130468f6122" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001311Z:3bbef5fc-7c18-462f-8be8-a130468f6122" ], + "x-ms-correlation-request-id": [ "a27daff8-8e58-4473-b0c1-c20176fe7e29" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1057" ], + "x-ms-request-id": [ "a27daff8-8e58-4473-b0c1-c20176fe7e29" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213923Z:a27daff8-8e58-4473-b0c1-c20176fe7e29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:10 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ7AYlyN/zI2JANVi3rBf48PZBIsJptkIv4fF8RXoo0RTvbLH7BFxomxueoxqwgchHU+F01g4445tMjM+gbGEMz01cs/lv2+niXhlqpdrcjnlogoszZOqo3vkC0Dt1ULJ92GR8Id/II9njFpGqEag" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/L4mGQVbBpRFKfMWue9rhfIMz61/5U7z94Sx5rzp5QrEfqQEvCqvQJaoOsVExUkC7FfXeuJYDMKzeA2Y1TYtzfyOCxsXDT5ZkKeBiugJYh1XWplJvFKr1g1r/z2ZqckuQuFYH6D5MYU6HUqeKVW7" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -3818,16 +3818,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "31b9d5eb-59e9-4dc5-8569-93aaac9cb64c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1080" ], - "x-ms-request-id": [ "31b9d5eb-59e9-4dc5-8569-93aaac9cb64c" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001311Z:31b9d5eb-59e9-4dc5-8569-93aaac9cb64c" ], + "x-ms-correlation-request-id": [ "d858be02-f6b4-416d-ae26-0c603be5e9c8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1056" ], + "x-ms-request-id": [ "d858be02-f6b4-416d-ae26-0c603be5e9c8" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213923Z:d858be02-f6b4-416d-ae26-0c603be5e9c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:10 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVNwmM6XCWO/7CuxUNQrHLU4nIOvoJ6eI//1YVv9FQC9uojMAIqA9YNAhyww8+Zj/sCyGQCFhMAIM1+CRtJCMeEKIMZQSOnFeIazlodimzvzcXfgSucOzsyhYfA+LRXyn7XRZRFNvd5OCqcKGisDo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZmc6sRRpJOG7v3VZhM05yCYPd+n3VKpn23IR1H1bPoZrFgkNFBw8a5lA0Okz6zBVYI+QuelQPbIh/F6rVSso2cG+SY3ke0z+44RgvY9otnIHz5sRfqt96MtkWIBnYKPa4zrChB+JwBnxxcPC9d4A" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -3855,16 +3855,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3a8ebadb-4d80-4036-bf04-66bf8739c688" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1079" ], - "x-ms-request-id": [ "3a8ebadb-4d80-4036-bf04-66bf8739c688" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001311Z:3a8ebadb-4d80-4036-bf04-66bf8739c688" ], + "x-ms-correlation-request-id": [ "3b2fa1bb-7b04-4003-a228-bda8cd3066ce" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1055" ], + "x-ms-request-id": [ "3b2fa1bb-7b04-4003-a228-bda8cd3066ce" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213923Z:3b2fa1bb-7b04-4003-a228-bda8cd3066ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:10 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5jBcCleCfOAX6kWgrPFx5hKIQn+YRVG1YKq+7/xQYX7VrAYdlslLpuzgwJlkocwVjn5Ocgu6wU6T99VNVZYiFByhN4u3Wx0l56eEJWUresicu36G982bbVIArIZiiTqgWh105msiKxLj8xVGBb3I" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvHAVuvLTe4XrzHMOPQzIvFj2yH4eGXdv57L7OKa4f2qNGSbzO45MMXfqi6zPCDTbX6YzfwfflOM/JAczuW5m4Gpw7W0jOLxBTizZw2vRkF2LwJaWgFb6JT5Q3KPOavjetp6m49IMUbC+wMMtK6aW" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -3892,16 +3892,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0f293f0d-3c47-4561-a90a-ff9e8fda8162" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1078" ], - "x-ms-request-id": [ "0f293f0d-3c47-4561-a90a-ff9e8fda8162" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001311Z:0f293f0d-3c47-4561-a90a-ff9e8fda8162" ], + "x-ms-correlation-request-id": [ "1614b280-d428-48cc-b57b-94ac538c14d2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1054" ], + "x-ms-request-id": [ "1614b280-d428-48cc-b57b-94ac538c14d2" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213924Z:1614b280-d428-48cc-b57b-94ac538c14d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:11 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsNxuwpZTNnLtgAzKqldQXGgem+0t7FR9LSJaHO5fW52QG6hbl13WxdmuXG5bFUqNnIKWQjZT6vlHb343JgX8HP/BajZqMTTUR2qKu1EctH+nGxVu4puDdo4KMTMkQmSpqW3H5tHG0lYvcAXDk2Ef" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3o2KmKRbtjoVDAKGuZmlK1Vomi9I8TqojZ+8vjokii0tXhV0Lm22UATVMbODmy3jk5sRAlAcgzqF99ApRJFxjBI39uw46i71YADloozEvx2CrWpVXo2sXIC/EhP779tPHfioVVLtShuOQcbL8eX+" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -3929,16 +3929,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fbf6337e-2e8c-48be-aca5-f2395745a124" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1077" ], - "x-ms-request-id": [ "fbf6337e-2e8c-48be-aca5-f2395745a124" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:fbf6337e-2e8c-48be-aca5-f2395745a124" ], + "x-ms-correlation-request-id": [ "0aa8b123-9346-4d53-b1f1-526f8566b204" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1053" ], + "x-ms-request-id": [ "0aa8b123-9346-4d53-b1f1-526f8566b204" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213924Z:0aa8b123-9346-4d53-b1f1-526f8566b204" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:11 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT1L9tdkId4p5yskYLG1qNN/BUtXGHdQsbaT1Bw+8GkU4X36QXcD2+0Zm1mlD4wATQcGaVEq90qgjPTXviHtK+lk2y5Laq44nGsqYs5SlguXORCia48ma3oyPKdu05Eetv0g+PGDDZsflB51l/8mH" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdw12WfwGPxDWH5uLeaQfHwzzGb00oTSXOhGi7RwJ1CyJM3fkk8hXt7PCC5N4tf0zfpBu9BqkXSEGZaODGwu1pmnseJF41E8jk0TWRUvyO2mfxdyAlGSsTdm2qWVBi56ALX6GvajA6CnsuZAQTfRo" ] }, "ContentHeaders": { "Content-Length": [ "461" ], @@ -3966,16 +3966,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "86495f7d-83ed-4b8b-b1ae-d7ea9e3718d6" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1076" ], - "x-ms-request-id": [ "86495f7d-83ed-4b8b-b1ae-d7ea9e3718d6" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:86495f7d-83ed-4b8b-b1ae-d7ea9e3718d6" ], + "x-ms-correlation-request-id": [ "53a3ada2-cfbd-4ad1-87d9-5db24494bd77" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1052" ], + "x-ms-request-id": [ "53a3ada2-cfbd-4ad1-87d9-5db24494bd77" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213924Z:53a3ada2-cfbd-4ad1-87d9-5db24494bd77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:11 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOqvHe0qLdeSPYPM7m9jqlsJg8U1PvBozY+W4vd6KZolW2IKT25LOtdMGg1dc2DpOm1JIPWdIanNHQFTkD4g8Hid8v7s4Jy3sB9lPViqhTso3Q8+j0YzYueSR8wGoN9MIVmUnqtkHErrbeJVT3qD4" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMeaPkushkCR8J4kqfo/pHArJTuTTrsDD/bdmbIkyp4v4sj8IwodIkozOZN6CMjZ/eyNvmlR+/SlSRMe3pDLuh3I12xdg4sitUqNrZS5c0SaDevtssI5TuwVzR/G/ebl4qRb/5oU9cv2+Qt1RRqwa" ] }, "ContentHeaders": { "Content-Length": [ "467" ], @@ -3993,8 +3993,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2509" ], - "x-ms-client-request-id": [ "2ba9720d-15bc-400c-9f1f-9f0e8efd25f1" ], + "x-ms-unique-id": [ "1433" ], + "x-ms-client-request-id": [ "2ff54c82-7e70-40da-8b61-7875161cd644" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4008,16 +4008,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1ab0f2c5-189f-49e4-8649-00b0db518db0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14911" ], - "x-ms-request-id": [ "1ab0f2c5-189f-49e4-8649-00b0db518db0" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:1ab0f2c5-189f-49e4-8649-00b0db518db0" ], + "x-ms-correlation-request-id": [ "9940d561-15de-49f7-9cb0-34e4d23cc3b1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14887" ], + "x-ms-request-id": [ "9940d561-15de-49f7-9cb0-34e4d23cc3b1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213924Z:9940d561-15de-49f7-9cb0-34e4d23cc3b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:11 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNkYNFBd9SKPj0Vk47f6MWDazKbjMjs/xyOujWqrFGklJkJh9Vi7wdteiZLWY3rv3oKkMX4NSFSptLcWn6TbugkXPlspxjIZfr7a1JwLfhONiAqaxm1VzZQT41J5aBE3eGiO7I3SzD/nhFARQdeuY" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQFKMe+F6s5uRxrPQHVQYkayUUI/sPciersFM71fgF/F8UySncJ4FV7s+RZl+TKBYUN5Atw9VYUnC2Bx2CuGfMsv5/acfCVNw/KwGxZsF+YqOhhE9rxbU6ciaeCtB0/3mInloQ6V2hWreclAo6omP" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4034,8 +4034,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2510" ], - "x-ms-client-request-id": [ "2306552b-6501-4dc2-83cd-692a93df1a97" ], + "x-ms-unique-id": [ "1434" ], + "x-ms-client-request-id": [ "8a02ea83-0190-4bc1-a91e-02150a98e4f9" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4049,16 +4049,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "559cd97a-5522-43b4-b951-e512b3717722" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14910" ], - "x-ms-request-id": [ "559cd97a-5522-43b4-b951-e512b3717722" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:559cd97a-5522-43b4-b951-e512b3717722" ], + "x-ms-correlation-request-id": [ "c979b917-065f-43cd-8b93-e1a883605630" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14886" ], + "x-ms-request-id": [ "c979b917-065f-43cd-8b93-e1a883605630" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:c979b917-065f-43cd-8b93-e1a883605630" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:24 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU/3FU8u+G44G5mO9R+/SFiLxs17pAup/HJHCzqJICRQ8GPqH6xzwW5JI7X9Q0IL/NPx24aYPDw9R0eBAwWeX9yI48tXOIsk+GhxZEKesuxNunIq8odRXR6A2prNUkGvRN2gAEsm3BiRbRLLxIO5g" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDkuFjdpTgvmkQ6eQolQNGScK+kgaVe8Hc8JOs+Lmis/QGPkX8kH47m2sSaL0gltOy5QsgHUvHQrdDQ9tmc1jruwLhTLWRhZV0Nz0VLpdaY+w59fd+Akw54gEpVP23/CfncnB7Z1VRzeeKTAZMj6k" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4075,8 +4075,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2511" ], - "x-ms-client-request-id": [ "b270fd7e-b850-4c0e-8ff8-bdca88cf790c" ], + "x-ms-unique-id": [ "1435" ], + "x-ms-client-request-id": [ "149b2144-02b1-414b-9db5-a30308498e4d" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4090,16 +4090,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e67f4f75-5652-4c7d-af19-36cda7960c12" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14909" ], - "x-ms-request-id": [ "e67f4f75-5652-4c7d-af19-36cda7960c12" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001312Z:e67f4f75-5652-4c7d-af19-36cda7960c12" ], + "x-ms-correlation-request-id": [ "b35c8dc7-f9ff-477f-8ee8-ce252d1cbccf" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14885" ], + "x-ms-request-id": [ "b35c8dc7-f9ff-477f-8ee8-ce252d1cbccf" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:b35c8dc7-f9ff-477f-8ee8-ce252d1cbccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtf5GefcgUnJJjXAGDWt1KjTCpo+YJfQQWoke2q/SaLnDLtSGqidHE420R2pbxAoLkI2k2cU9ZfuyuG9C7f1j8Wl1xuPGaifX5rc5Z1DccBmYA9OEBHFhBVsk054m0mCwW8bvQ656kXfmrlwjywsA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7yOd/Zdf46uxley4t/eNbFgJS9ppnhlTaxhMQYdZsdeC1BmC4ELL7TA2nIF2Ck1qa6T2YacEdAHjpchpUMskG3qEmR+na31Pc0EO7xSykNC/N1pgMB4C/eox945CmwIaJCa7hyjsjS6sIwf/PDMN" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4116,8 +4116,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2512" ], - "x-ms-client-request-id": [ "cc9e3253-d996-47f1-86c7-e76a7e402c20" ], + "x-ms-unique-id": [ "1436" ], + "x-ms-client-request-id": [ "832bbcad-e69f-4213-9394-c282baabd686" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4131,16 +4131,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a5c8be19-c27f-46d0-b9c2-56d95d4378b4" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14908" ], - "x-ms-request-id": [ "a5c8be19-c27f-46d0-b9c2-56d95d4378b4" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:a5c8be19-c27f-46d0-b9c2-56d95d4378b4" ], + "x-ms-correlation-request-id": [ "32d48258-3e0c-4c92-9703-7a233819a22c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14884" ], + "x-ms-request-id": [ "32d48258-3e0c-4c92-9703-7a233819a22c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:32d48258-3e0c-4c92-9703-7a233819a22c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY7mdVAQQU+dhg+qX/Jc2AN6PAtYKK87nd3o5Lfvq3hqhS73sWZDwONWvPJewZgTmKPOc79KgjKRuD7XQSyyhXGBEOtkozfvVRl0Kk1Y34xRSyt+MA4BZVoHb571xPBfx40fPRAIA37EtJI31GEWD" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvX4AveD9/82N5yXCL4wZIC6EfDGuHTcJ+HkjSRDZBXS0QPkXKNsTpbvzkm8ZCuoUe0pzRRuFX8oA0hrJGGZlzcZ5BmGgJra3k7wQq4rrtnpItl7Ecj4YtTO048FOvq0D5zbE3Lozdy5blv7K0Rw3x" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4157,8 +4157,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2513" ], - "x-ms-client-request-id": [ "063cc5c2-4958-4d40-bfe9-f740eb1c7ee9" ], + "x-ms-unique-id": [ "1437" ], + "x-ms-client-request-id": [ "d71d4a32-41a4-4ea3-8d17-271abc78240c" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4172,16 +4172,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d9f40f8d-a502-4086-a462-ab31bb941616" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14907" ], - "x-ms-request-id": [ "d9f40f8d-a502-4086-a462-ab31bb941616" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:d9f40f8d-a502-4086-a462-ab31bb941616" ], + "x-ms-correlation-request-id": [ "14bbbf6f-44f8-417a-855a-c96acdd3ea28" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14883" ], + "x-ms-request-id": [ "14bbbf6f-44f8-417a-855a-c96acdd3ea28" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:14bbbf6f-44f8-417a-855a-c96acdd3ea28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFf71BcIdqS4PyFLGgAXW8HQmCt5skYXzrDbF2ivrWM5vujMTTul1vjfhi4MnWACW0H9fjX8+MHwQPf3I1yBosy+q4rtAOXhmh9Vn2j3M3RctLT+GPxtFLXVGHMCFYONZnVoro+iKUhPygOu0OO8x" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9FzbupfN/McaWbhQe3uoZIVCn1A8rmpft0dirtFeJc65Q1CLsWAgI0uM3WgI0T8lgZ9Vtvh4E1FX3dj8FNUk/zPQrCiWBMzIaAJE5cQKDLHKC1dDC7kVZlumIZLNjCOLsjm0dSP3LkI1ef6hWw0U" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4198,8 +4198,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2514" ], - "x-ms-client-request-id": [ "0416fe55-7669-47ea-849d-aa222c4d14b9" ], + "x-ms-unique-id": [ "1438" ], + "x-ms-client-request-id": [ "2649cd71-ee8e-4f53-8338-a047dc0c4d59" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4213,16 +4213,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a6b8db90-817a-40c5-a810-03c68bea707f" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14906" ], - "x-ms-request-id": [ "a6b8db90-817a-40c5-a810-03c68bea707f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:a6b8db90-817a-40c5-a810-03c68bea707f" ], + "x-ms-correlation-request-id": [ "a7d781e0-082a-4e4c-ae52-9815fe0e1845" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14882" ], + "x-ms-request-id": [ "a7d781e0-082a-4e4c-ae52-9815fe0e1845" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:a7d781e0-082a-4e4c-ae52-9815fe0e1845" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv80lrUmdmxjmf82HjGJplHd1OGBHS6oFCSK+AuA7ZVvKOCrTUsH3Y2W/E2AgLuJRUcR9xjGJB/j3zOaB4rc/pafEhoXPaumnY6IKPiyrFHaMyh6itGgfktgEOSw8rhUdPkUe/XQWAEIgPYFul0O8U" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEpexmC4DUsubEstl1I1FFMPE2KCwb3Dg00gBI+X2zxdEz05wL/T5hLmH+Gc8T9D9p/7gJ52A2uDLabhtl8VXvW4gb8bFe90LMe4ymKlsbhJv+1WyQAFzpTXbXCOmhdPzPZn3vVq88VkDRJKV6/0x" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4239,8 +4239,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2515" ], - "x-ms-client-request-id": [ "04370f7d-5b01-489f-841c-955881388e49" ], + "x-ms-unique-id": [ "1439" ], + "x-ms-client-request-id": [ "0e019404-8a0f-4205-a5cd-ed0932b1677b" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4254,16 +4254,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "35df2621-d99d-4e33-8b8f-c8e8b8d170c0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14905" ], - "x-ms-request-id": [ "35df2621-d99d-4e33-8b8f-c8e8b8d170c0" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:35df2621-d99d-4e33-8b8f-c8e8b8d170c0" ], + "x-ms-correlation-request-id": [ "41e936aa-b288-4b4c-bc5b-d63dce6b9ea8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14881" ], + "x-ms-request-id": [ "41e936aa-b288-4b4c-bc5b-d63dce6b9ea8" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213926Z:41e936aa-b288-4b4c-bc5b-d63dce6b9ea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:12 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFSUwzP37sRcJZf0g6n6wSnG40zh7VFSgnBK4yyB4di0bwGDJ5gucyhkzBRxZJ1tUeGBcWSJv5BBORgnd/bci2j1o3egTi7xguE5D5e1eMZCliSJg2mSxXGq6K7ziJf+VlmySnIN2neyw1cIoVMcj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2Psmpz70fyNCgR6dBNH47Zhs2V9+UK878KqT2dl7JLatWWbH8cNtM+XaFPfKmCMkXKPBqAellofpJ5BCYamLqb32Ag7qMcl+2W7qAbYKx17GqqRnXvzRYurGbDFSz5vixMzIutj9lVdaoIKFH042" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4280,8 +4280,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2516" ], - "x-ms-client-request-id": [ "a532837a-9f15-4f3e-a265-93ecb850d728" ], + "x-ms-unique-id": [ "1440" ], + "x-ms-client-request-id": [ "f6026c6e-928d-4e27-a19f-d190e26b1d7a" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4295,16 +4295,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f96e9ec6-ab4d-4231-8aa7-94c29e9f6e3d" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14904" ], - "x-ms-request-id": [ "f96e9ec6-ab4d-4231-8aa7-94c29e9f6e3d" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001313Z:f96e9ec6-ab4d-4231-8aa7-94c29e9f6e3d" ], + "x-ms-correlation-request-id": [ "16fcc466-522e-43d8-a85c-98ad23a7a595" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14880" ], + "x-ms-request-id": [ "16fcc466-522e-43d8-a85c-98ad23a7a595" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213926Z:16fcc466-522e-43d8-a85c-98ad23a7a595" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:13 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7Ue8HgBj0i+P+eAENZAXMpOxGcsAvjrV06NccoMoJb4VfuEnpn5RrvIQk1AcZ7LVQfDBTrxTu/+FaXTr2F1617H7cErVocORYFW4lLEZzo20Mp6lEUk4UxBZn/W3kbM97iNcHyYOdPfjbt7Z6wzn" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE/L/gU3M6TqmZ/C04cWWEWgHxRogWTZnkI9lBTdmi71mZQg4TGTwjBGrf89H6sGvltpl8RJidURTBFHNLMMCEbCREJHDOW72uKPcijGzmEGLaI9HSCT0L/nB8qc1oim5fKItD+jKqU13+nPD1uBj" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4321,8 +4321,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2517" ], - "x-ms-client-request-id": [ "a0e56435-eb44-4ab4-9ddc-729ceab448c8" ], + "x-ms-unique-id": [ "1441" ], + "x-ms-client-request-id": [ "d752a894-7652-445e-9c6e-138129afa4fc" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4336,16 +4336,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ea6ac9b6-340e-4b6b-93f3-a1187874f9d0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14903" ], - "x-ms-request-id": [ "ea6ac9b6-340e-4b6b-93f3-a1187874f9d0" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001314Z:ea6ac9b6-340e-4b6b-93f3-a1187874f9d0" ], + "x-ms-correlation-request-id": [ "d4b5bf85-5eab-479a-af6f-2e27c3e73a79" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14879" ], + "x-ms-request-id": [ "d4b5bf85-5eab-479a-af6f-2e27c3e73a79" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213926Z:d4b5bf85-5eab-479a-af6f-2e27c3e73a79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:13 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH9qIT+c8jJemX+H+nfFHpa4EdrvddYmcdXTFDTn4d9NpsH26spcrP3olhvHTC9+N2kbNw/Yz8G5K+jCQoJlBG+DA0sng9fMjIFHVsqwTQq3FRJ9VS7mC4eqDURNaULsAs9GLyX81VuUmvFh5ssQA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuv0Hryb2E7p5Rx07ZhPJ5CGPQccy9I5P7OG8nM1KjvJRkOLs0u1uxvzGiqhlu0CxuIrdtqmbUml7TizrecZMW8c30Dj9AxHoe/OVRY/qt8FxQDmYposO+UrOaTIQoq6QZC8xaU3dDsLzuBlXtnsv" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4372,16 +4372,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "29f4e31b-7d81-4762-adc8-3110894c58b8" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1075" ], - "x-ms-request-id": [ "29f4e31b-7d81-4762-adc8-3110894c58b8" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001314Z:29f4e31b-7d81-4762-adc8-3110894c58b8" ], + "x-ms-correlation-request-id": [ "7e3e9079-c832-4aa0-be98-74e711912d1a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1051" ], + "x-ms-request-id": [ "7e3e9079-c832-4aa0-be98-74e711912d1a" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213926Z:7e3e9079-c832-4aa0-be98-74e711912d1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:13 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfMJnIiQqC57gZD0IjxT45pkZA0zllYFHTGF9RrBCq7JpUEp4e4RmBsAId13qnIbdL9bm/OmVrDbwduoPUA9jA6Sgjy2dl1yb4C/prNbMpIyiIPNiJ0NLPW6T2/rBdolfxhXZ0O4+czoPs7cpjPSg" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZgw8y/eVH2h2jeAuX1eorLpq5GfqruOtgB0b43vGAEg4OadxqOxjASxzAiMH3KrqJC3PRF3XYLN7CJnJBLwUhE2TuzqFff1l49Jkudwpq4oh4HBRqrGGArPN8wXQP4agcDrpn07ZZdEUOV4/C8WI" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -4409,16 +4409,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6413e837-22e3-4e5b-a648-0fd98d4827b3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1074" ], - "x-ms-request-id": [ "6413e837-22e3-4e5b-a648-0fd98d4827b3" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001314Z:6413e837-22e3-4e5b-a648-0fd98d4827b3" ], + "x-ms-correlation-request-id": [ "d950560c-44a6-4b26-a4af-ee58f610bf87" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1050" ], + "x-ms-request-id": [ "d950560c-44a6-4b26-a4af-ee58f610bf87" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213927Z:d950560c-44a6-4b26-a4af-ee58f610bf87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:13 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9tOraDQ4pFQ8t9y5yp711vhsKca/dYhCYi7GpKC5ysu0/Q2zM9/wD8NLh0QGpZiiXxy7CI8OBKfYdPaMqN62sPAp66phc4Y0xUNyW4HTMGDafvVUekFhKs8E7N7DAEm86MJT1jWFr9//QJu6lUV6" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7Jzro3X4sMVZWdFkomCXDasGlsNgtkWAywfy3uS+BQC8IpQAE4b+hSQF6euafR/lWsYz+0KScWwcNjVnsAH8et2X17ezF+u/9zfQ/EidpnGHxPXZN8vvjiq6v+zXoSLyoysIkrmcD0smlU0HJtzh" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -4446,16 +4446,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c5af1b1d-ed55-4b71-ab37-76b600e5434d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1073" ], - "x-ms-request-id": [ "c5af1b1d-ed55-4b71-ab37-76b600e5434d" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001314Z:c5af1b1d-ed55-4b71-ab37-76b600e5434d" ], + "x-ms-correlation-request-id": [ "2f01af2f-10e6-4d75-8117-b1e286df7a25" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1049" ], + "x-ms-request-id": [ "2f01af2f-10e6-4d75-8117-b1e286df7a25" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213927Z:2f01af2f-10e6-4d75-8117-b1e286df7a25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:14 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBY9B/bjkKFCMar4Rv74WBuwh6RyPTqi4VEwpsacwe88+UHZDrqa2JDq63GV+cbrG8AXriL7LT3aEJcsOoPk+CzwnTrXxa4uphFGgJnnFatX7rUsgOuamENUcMYcpQPeE9xvM3tTA6WofKgwWRMiS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF6zs37FvnanY89ea63Ni0Vl2VbYhypkurZwDJHbp9PPdFB+y8N4+uBmlrgXLwMCbnl9ZqgfHQskh8jOzURZx2ic4CDApnWQPpc1WlkVOBI8P5n8icvHeYfhGl1HH7DF5uBmT4TkJJMebFfO6Q8OK" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -4483,16 +4483,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dff3d97d-3f12-4fd9-abd9-08035c7e9d4e" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1072" ], - "x-ms-request-id": [ "dff3d97d-3f12-4fd9-abd9-08035c7e9d4e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001315Z:dff3d97d-3f12-4fd9-abd9-08035c7e9d4e" ], + "x-ms-correlation-request-id": [ "1e5795ec-5856-4a04-8b84-e0c8ed61f1c2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1048" ], + "x-ms-request-id": [ "1e5795ec-5856-4a04-8b84-e0c8ed61f1c2" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213927Z:1e5795ec-5856-4a04-8b84-e0c8ed61f1c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:14 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyNJwYLD9F8lG897LU3ds8qSEReGVCt3WlEUBpZ3537NJW7dH+/sE+u1SHDpj50HAPDwAiexlrNAdnIQ9VFzs5BAMJmqAdhIa2NPcT7r3OskZXQlg37x22SfvhyU/uJ6OMjryY5DZu7oc6HdIu6bF" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXhcGHlKTKGMxbI6f5hbFEnTRitz+imVDQGZe8ikjt9WVfhP4EQo1FSr3ni5+8HPYvIgI/5NyAaZM6Hug2kbQXz6u8ZYHZ7S+RpROPgO2XOq1CywrUy2gp0WC4pdkDlhFOUqjXQxdcF0vWM0CK71q" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -4520,16 +4520,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "04cccdd4-9729-49c1-b379-dd467a61a8af" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1071" ], - "x-ms-request-id": [ "04cccdd4-9729-49c1-b379-dd467a61a8af" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001315Z:04cccdd4-9729-49c1-b379-dd467a61a8af" ], + "x-ms-correlation-request-id": [ "eef9e703-a7e8-44b0-a973-c057fea21101" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1047" ], + "x-ms-request-id": [ "eef9e703-a7e8-44b0-a973-c057fea21101" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213928Z:eef9e703-a7e8-44b0-a973-c057fea21101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:14 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnK/lE1OszTNUhcbyOzXigWsFdjd7P1AT8n5Dnc+ipfWikyMQVldTiREF7kU+OvYGMzPg1GZnwvGmZZe1JYTdEBqYKnoRHJMkNyLCgJufmbbkWbneydFim8Z0xIL7h5IGIofXra1D8KpV4UhL3wm0" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGu6iqjFEdXM9oNXOgHgCZYymIMeubWqpEyLCmHY7cOapJwAa5t5OUvduaLXHr5O9qi05JdViKw3FMtU8uBz1cRGgy/OUoRcYqHKC0bEVfILZD2gKpk/Kc+c7LSdTxz7DSL1LpfoeYY3cks83HC2r" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -4557,16 +4557,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f48725c8-41b1-4657-ab16-40a54368112c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1070" ], - "x-ms-request-id": [ "f48725c8-41b1-4657-ab16-40a54368112c" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001315Z:f48725c8-41b1-4657-ab16-40a54368112c" ], + "x-ms-correlation-request-id": [ "c2516a91-9e1d-455f-9841-d50cc409090c" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1046" ], + "x-ms-request-id": [ "c2516a91-9e1d-455f-9841-d50cc409090c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213928Z:c2516a91-9e1d-455f-9841-d50cc409090c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:14 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvet0wlteESxbEdgJweh50ZREtlMMyToIEuVruqbrcPiTwr5/OUCVdprUtamOlse2jkl/UH/PN4MHIORdDa4y51fyfpd5CS8sUFnatik7lKZH0C2csv+mdhVgHAIANL1YQaMTNixTgI/FW7dJYDoAi" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaQp6bLV9raahnFbyE3rjVehlDxZpChPGJdNLiQRN+QQ5ZsPSqpwDQWGp+WPrLFb8V3EUBaU3D7CadpZ9f7578FTQEPrJmUYvKz9TFYYRBCPkzVGC1dUQ9iSgToGa7rKbxC197sMJkLt5ordm0UgW" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -4594,16 +4594,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "980640e4-acb1-49d1-b7ed-1249cb202392" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1069" ], - "x-ms-request-id": [ "980640e4-acb1-49d1-b7ed-1249cb202392" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:980640e4-acb1-49d1-b7ed-1249cb202392" ], + "x-ms-correlation-request-id": [ "02939d32-d949-40c4-8903-b4d8a78e9485" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1045" ], + "x-ms-request-id": [ "02939d32-d949-40c4-8903-b4d8a78e9485" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213929Z:02939d32-d949-40c4-8903-b4d8a78e9485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:15 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqYy19IxQiYA/UdxJjJeb8Z0anZSNke7nXEX489BH8jsm4fj5w0L/eVoqKBWn4/T7Ola2BAzrAxBWRGQJQ/0OYtVnJC5mtr3IJK8qy/FQjR4R5/5dTJNXqSSM0fCliI39CDWD0+wRJajjhHZkJsbh" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmO+pwZz34QmNCtmDOhX02gG1kf4CqMFVn38a8N60K8mKNknFzo2UkmiHQakJiFbh8OpS7bKeBSbjw5NQxKwaaIDgCcgaG5CT+vZrSmTG9ZNIAyTsXVbfg7ywtZrlrv07FL7JzWdBcnsdXcL2gTzl" ] }, "ContentHeaders": { "Content-Length": [ "449" ], @@ -4631,16 +4631,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "445a3074-0e85-4004-beae-67bbce81fa6f" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1068" ], - "x-ms-request-id": [ "445a3074-0e85-4004-beae-67bbce81fa6f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:445a3074-0e85-4004-beae-67bbce81fa6f" ], + "x-ms-correlation-request-id": [ "f8432b6e-599c-4ce8-a01e-4d19b8494e61" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1044" ], + "x-ms-request-id": [ "f8432b6e-599c-4ce8-a01e-4d19b8494e61" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213929Z:f8432b6e-599c-4ce8-a01e-4d19b8494e61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:15 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9pO6SLpPIxTgFY5aP/F+X224WEblU95Diy9oSqXcyv0rMiT7nVsDXmw6xBOlJuVBPdbx8YczJrUmpEpRcvG1vxNmvKN8Bn5pImTW9Ln/RwFPrRwkoBEmwI8KGQ9Z+ztCtoFJG8kUK15aPYrtp6Jt" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPyRooDfTsg1MoOhJdnjYfZSA9I+GlPNta4fTG09eoi1WQSLP1VLwknJBLQLCZ3+Yn4RUZVGr9tJoFZXzrEhV0nIF+t2zQMzQl9x4LGh+/gBnexCRMU0shrefs2lkf+dMJY40k3pmVbMhb4pUHci9" ] }, "ContentHeaders": { "Content-Length": [ "461" ], @@ -4668,16 +4668,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cf2a094a-8d6d-445d-8e24-c76ca64de031" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1067" ], - "x-ms-request-id": [ "cf2a094a-8d6d-445d-8e24-c76ca64de031" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:cf2a094a-8d6d-445d-8e24-c76ca64de031" ], + "x-ms-correlation-request-id": [ "9e063ec1-9b41-45fd-96cd-7b6a18c9ffd1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1043" ], + "x-ms-request-id": [ "9e063ec1-9b41-45fd-96cd-7b6a18c9ffd1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213929Z:9e063ec1-9b41-45fd-96cd-7b6a18c9ffd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:15 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjj/2ra7VCZiWmUUa+HZfg//K7HPkgIfjF5/ABZSd5noiKx3D10bF4eDsoxZdSmRLq4Pm7mS8vvZq1TkoWZbfzOVkRtZramtUYB+vsUkbotEjoN2n4uraliZKBx7WIiuzQiZB4mBGn9KCyDAU+/Cp" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKgeYwHvnZb9ZRUFmSonOVbHvAQ8reTnUFh2hJm2UjheYl6Z2MTAuR1RBlDIWM9h60+0cvu2gbgTopCEOBTYoOpW4rdicwxya5+EuFWlSeSZr8IhPFixS9TVVdt7dZpw7P62YJV7R51meNxYf4D6H" ] }, "ContentHeaders": { "Content-Length": [ "467" ], @@ -4695,8 +4695,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2536" ], - "x-ms-client-request-id": [ "e4378ec5-11c6-47f7-85bb-a87d98c1b3d9" ], + "x-ms-unique-id": [ "1460" ], + "x-ms-client-request-id": [ "683de420-35bc-4bce-b077-ecf858c5a53d" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4710,16 +4710,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "566116b5-5f5f-4c02-9832-9412bdf5d7a6" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14902" ], - "x-ms-request-id": [ "566116b5-5f5f-4c02-9832-9412bdf5d7a6" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:566116b5-5f5f-4c02-9832-9412bdf5d7a6" ], + "x-ms-correlation-request-id": [ "e85b76d5-8c15-48ae-a1fd-b1e3855c3dfd" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14878" ], + "x-ms-request-id": [ "e85b76d5-8c15-48ae-a1fd-b1e3855c3dfd" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:e85b76d5-8c15-48ae-a1fd-b1e3855c3dfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:15 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGk7q066exicTnDiQ0BQTEb6MkVk5IfcO9o4ErzulyAlyfPKSsqpqG+zUEGU6z/yy1LjK2QSl1sZ7/Z1hFmYYyzv6/q6G9QsptWH5U42UoVj6Wk+EMV9I40NCOYldl0omRb0RUc9JyD63oN/RMB0v" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTItrsNkEpcV9NXGcFTiE519slLV6zRn9MUQ7pMLDG8sTV8Q7KtY2T7Ogy+ikM0nT8aH3aJmEgFpkOBYTVC5ctsAM7muJGzq/u3ispzLIAxtiXf3URZcygmI9MMVLR7UMJWKGkoDW2RvX/Y7aFlwi" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4736,8 +4736,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2537" ], - "x-ms-client-request-id": [ "726efc08-81af-4e44-be96-f445093f421b" ], + "x-ms-unique-id": [ "1461" ], + "x-ms-client-request-id": [ "3d4821ea-326b-4868-8be9-81f757b81624" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4751,16 +4751,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "16aefdeb-0a3d-4250-8c39-8ef099f63d6f" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14901" ], - "x-ms-request-id": [ "16aefdeb-0a3d-4250-8c39-8ef099f63d6f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001316Z:16aefdeb-0a3d-4250-8c39-8ef099f63d6f" ], + "x-ms-correlation-request-id": [ "6612238b-ac25-40cf-8639-0ac919458c55" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14877" ], + "x-ms-request-id": [ "6612238b-ac25-40cf-8639-0ac919458c55" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:6612238b-ac25-40cf-8639-0ac919458c55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvniSmvOJhO/TXsy4v+Q19wsj8Kvs4UsXV46EeDGgKrwmWFDMAWBT7MJxXwJamPcRt3J9sfnvumbW8fdJIynT+CjsN8Nu5LBmzS7CwsF0cpz7M5gxW0htEdsTY7NWd6medYAuNXTEle6WiRNFVqryG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdc/EtPQHquaqf9W76dELhdQ/i7Nsc1+uuUZALff+BifH4/RhiCr+Jpl6BFil0PLa5SjToMEVKjWAYMN+cLrrubh/bgjKVWG2ktzYStm3LNhA0upOSbQ3K2gjTIQIMNZKCMRS3kkuRf66PpLRO7LG" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4777,8 +4777,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2538" ], - "x-ms-client-request-id": [ "95c7aa1f-33ae-499a-96e0-556263da66a0" ], + "x-ms-unique-id": [ "1462" ], + "x-ms-client-request-id": [ "30b97a1d-78c9-4111-a5a3-2300cefc7a81" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4792,16 +4792,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a061cfa9-7b9a-45cc-9d43-373cf5ca4d9c" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14900" ], - "x-ms-request-id": [ "a061cfa9-7b9a-45cc-9d43-373cf5ca4d9c" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:a061cfa9-7b9a-45cc-9d43-373cf5ca4d9c" ], + "x-ms-correlation-request-id": [ "2a273b13-f1c0-449f-8edd-c27857d5e5f1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14876" ], + "x-ms-request-id": [ "2a273b13-f1c0-449f-8edd-c27857d5e5f1" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:2a273b13-f1c0-449f-8edd-c27857d5e5f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvemp4fHVhKt6MpLhwAINEXgMxGRQXP5gDBErLFU9m5m7r1Yhz3O0jLW7iNxOfb08hR16f8sCWg6f1ijYL++9nQw8ZkoI9xhck70yNNnSmx1LXtFyINuGdUVdnmE02GqMaHiQ8kq2HDK9SCRlVyj/Z" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2yhKp9+zcgvJnnsjyvbV6/+vF0Bg8jFO2aPRdOF3PVVbah+jYLJ/kQtJslXvBjZOLELCWGKeAy2C8R6mxd3EGDAtsVUYF0UJhFE3f6shR9HnN3kErtgtnBRj2B2LQSG4juztUOslEFbd+xto5ViH" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4818,8 +4818,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2539" ], - "x-ms-client-request-id": [ "71c4662c-5aaa-41e3-b199-171253913d6b" ], + "x-ms-unique-id": [ "1463" ], + "x-ms-client-request-id": [ "bebc3650-2f74-45d8-807e-0e098fd3bc3d" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4833,16 +4833,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "eadf46da-fada-457b-83e1-d02fa9a0fe83" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14899" ], - "x-ms-request-id": [ "eadf46da-fada-457b-83e1-d02fa9a0fe83" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:eadf46da-fada-457b-83e1-d02fa9a0fe83" ], + "x-ms-correlation-request-id": [ "5d9c811a-3941-4b5b-93f9-5ef84971266f" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14875" ], + "x-ms-request-id": [ "5d9c811a-3941-4b5b-93f9-5ef84971266f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:5d9c811a-3941-4b5b-93f9-5ef84971266f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgfFr1GeR5t7HpaPgaq7Ec5gjNvY0yLFKVVsQCZt8VISRjWOmRRM9GiDh8t7BDtIOvAQL6pzRDkeAJFX3UxzUl8Ovd8Uqd+fy/rV6WmgWeTBV0hD6uncZSIBwDXu7ym/AvHTiboItNARQbAB1b3GR" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyGtmAQRiv0QUmH2Jd9M691mAPwakkdUAE19iE3HwXfq/+AkE9OBAnpMYyabt+tGynPAQVjG9X6jnC22mv1QcgtJYxfP25mx4E1MJYQxqEgmR8h6ibjmUmrHmd3XXyYXrLcgpJXsGP4ANEi3tT7LB" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4859,8 +4859,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2540" ], - "x-ms-client-request-id": [ "a7cad570-e57d-45e0-8ec1-630992b013eb" ], + "x-ms-unique-id": [ "1464" ], + "x-ms-client-request-id": [ "b9ee740f-574e-419c-9eab-cc7e02355312" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4874,16 +4874,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7ca3cca4-12ce-41db-b92d-35591bfb5130" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14898" ], - "x-ms-request-id": [ "7ca3cca4-12ce-41db-b92d-35591bfb5130" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:7ca3cca4-12ce-41db-b92d-35591bfb5130" ], + "x-ms-correlation-request-id": [ "d5a970e9-6e29-4076-8f15-229383b36bb3" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14874" ], + "x-ms-request-id": [ "d5a970e9-6e29-4076-8f15-229383b36bb3" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:d5a970e9-6e29-4076-8f15-229383b36bb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvM9B1Wo3PtJGAa8uGBmlxBe1QvMMvZ4vlHevFPzmK4r/sxqf7YKImbT0akgjsjSCBk+aO2KN3q+8qxUO4un/jTRRLHwJ2Z4q+n+za/NuuUb8dQCnDCNjC+Zh3cZvn+iouBm3SWM4WTVtJus8vLiKJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQfnyUCIfbJvCTCswvSF3fykT+qjwoCl0PGXRsbj9pXMgFpPY8vZ35l6eEhTF1dy52Nc6J0epYTCsiSa+NRAKVZnCvmyj/YKQ9+WNpVMwwvq603MIeIRDMof5omNUtlVkqwzA8V+QIKQ0D5oSgwNl" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4900,8 +4900,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2541" ], - "x-ms-client-request-id": [ "6f72c977-4904-4d7a-b184-dd9d688fe3c6" ], + "x-ms-unique-id": [ "1465" ], + "x-ms-client-request-id": [ "f18031ea-04fe-4f89-8dcd-5305aefadfa9" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4915,16 +4915,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8f4cae51-b7ed-4274-ab3a-88291f886998" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14897" ], - "x-ms-request-id": [ "8f4cae51-b7ed-4274-ab3a-88291f886998" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:8f4cae51-b7ed-4274-ab3a-88291f886998" ], + "x-ms-correlation-request-id": [ "de2cb15e-7f44-44c5-9a65-59275728c86c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14873" ], + "x-ms-request-id": [ "de2cb15e-7f44-44c5-9a65-59275728c86c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213931Z:de2cb15e-7f44-44c5-9a65-59275728c86c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvROrx+xjB3Id0qyCSBRTbmMhUZ1foq6hMGTbxq9OAofEqWtfuDB1MHSTyFr11SEf0lIxWAyeFWk/4mLHsQWj5JLOx1gaq6CmIKInJX2xPUf4b70OvBXx8LO5ty8t/qipPDYj1rO8TS7R3LY0944nh" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYKaTLwfwzCzLPjBpgSW0bTgQp3UBVd/HU7XkhT6Q6sgZHkpHwVPLf9LGQrNM8R5W3MgbFMJD92uPqpVQQTD6qmLd6Xk0+E6jZEKswmVk+kzOf0T6CDllHr0c3Qc1JqYYcNmPkeYrhY7tSg4VZ/g/" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4941,8 +4941,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2542" ], - "x-ms-client-request-id": [ "331b0c65-7d2f-46c0-9ded-5c87a99a25fe" ], + "x-ms-unique-id": [ "1466" ], + "x-ms-client-request-id": [ "7457684f-502d-45e3-b36e-b24b629e3f56" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4956,16 +4956,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "45148fad-3348-4d27-9bda-3649c8adc029" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14896" ], - "x-ms-request-id": [ "45148fad-3348-4d27-9bda-3649c8adc029" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:45148fad-3348-4d27-9bda-3649c8adc029" ], + "x-ms-correlation-request-id": [ "18df04ea-6839-4d5d-9b6e-8b5433b32ec2" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14872" ], + "x-ms-request-id": [ "18df04ea-6839-4d5d-9b6e-8b5433b32ec2" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213931Z:18df04ea-6839-4d5d-9b6e-8b5433b32ec2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:16 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9owGSmVKxGdx/cm4nHlYmGFW/diDsIFcR4KK9EjlVfn5OyApe4QSDQTCfEjoNVmyc0hTu97I+Y8LghjMmFbC7FrnXbS516pC4Pn1PT0FZbm+eipTgS69aeAqB9qfo5lZkOfF3qD93ALIW+NS300v" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBhXCNqYq49V2jglAUwuSjbuKXb+b7Vm8yjtC43YU4LhUXNZCzMKtQf1hQewpaBVrH51GsdbO8oHflY4ycpV59VU4AGKzJ6qKGiiKeWuSrYYrTvJjcKNPsj3R+BU1rff16efJ9WLOvIO3tv10SbHf" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4982,8 +4982,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2543" ], - "x-ms-client-request-id": [ "b1be18b4-8338-4787-a2e3-5da7b71b13a5" ], + "x-ms-unique-id": [ "1467" ], + "x-ms-client-request-id": [ "626fdbba-c0da-4576-931b-ee62d16f76e2" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4997,16 +4997,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f65e4867-3527-41bf-bf1e-b0759fe8bb3f" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14895" ], - "x-ms-request-id": [ "f65e4867-3527-41bf-bf1e-b0759fe8bb3f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001317Z:f65e4867-3527-41bf-bf1e-b0759fe8bb3f" ], + "x-ms-correlation-request-id": [ "87519dfd-dc58-44ce-93cd-b0f3ab591ecb" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14871" ], + "x-ms-request-id": [ "87519dfd-dc58-44ce-93cd-b0f3ab591ecb" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213931Z:87519dfd-dc58-44ce-93cd-b0f3ab591ecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:17 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpXIEZRdomlaIAHGCgXfZbwsVu5eZiGxC0aHlGLFaEjhO2yX9cjb/VsZXwl/meL+NdW5EtocvvFW35GrIua9iEfGk1PJM/vZEcRxoYf9dWRfBSTa1cuv7EQPCybMH2fntkp2ezEnjYTvwAZuX2rYO" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFWhPoY5f1xb3mfLOEeLosfLU+lUqa8rFTnYH9tOp+RR4sLH0XFuG/zeNZSGMBM7s/lQ2akTTmHGLw5vQ2/dcJC4coELfJgcZOq8sRJ0p7PcRmcS8G+5afn/6nPpn2Hyf2pUE0XRUaohC4sb2zGy8" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -5023,8 +5023,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2544" ], - "x-ms-client-request-id": [ "e51201c5-684d-4643-9517-956ccbfa9fc6" ], + "x-ms-unique-id": [ "1468" ], + "x-ms-client-request-id": [ "5dd0736a-c5cb-42e1-8e20-00c610457607" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5038,16 +5038,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "adf61005-ba5f-4d7a-93ac-7afd531750e1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14894" ], - "x-ms-request-id": [ "adf61005-ba5f-4d7a-93ac-7afd531750e1" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001318Z:adf61005-ba5f-4d7a-93ac-7afd531750e1" ], + "x-ms-correlation-request-id": [ "0e489022-587b-477b-aeb4-5a416d48ef3c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14870" ], + "x-ms-request-id": [ "0e489022-587b-477b-aeb4-5a416d48ef3c" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213931Z:0e489022-587b-477b-aeb4-5a416d48ef3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:17 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDRKNVQYNfGrRqq/Xp9c1zGpxFnflpCAX4ROToxkmUHxG7E8AtNGWeObTGG7JcLC+41lrkxbXNdtiQ6o8/76lyCJmXmE9CvkuGx195IH3A1QdSPSrwka5JN5UIVGrrCpBk4MDP30CYRhP6Cau1Knj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHcxBMRJFj8QB0W7ZhwU6oG+zp5eRtZ6BvA5nmTpOZweLwjj6WaGsIvIKmtt/crzgIIrBF1qfoA/Lmhkqt7cv/DNchShMoi2Q6DzxExvNFmHIBlaRpsD2J/0w1cLNqd2ecClqsvuxclaDhUFkwQmf" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -5064,8 +5064,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2558" ], - "x-ms-client-request-id": [ "b86ec417-6c8c-467f-833b-4903603da844" ], + "x-ms-unique-id": [ "1482" ], + "x-ms-client-request-id": [ "2366fb82-5bb5-45c0-b33e-67d01b9cf381" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5079,16 +5079,16 @@ "StatusCode": 400, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "827c3ab2-e539-47fb-9b46-9cd950d55c20" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14028" ], - "x-ms-request-id": [ "827c3ab2-e539-47fb-9b46-9cd950d55c20" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001319Z:827c3ab2-e539-47fb-9b46-9cd950d55c20" ], + "x-ms-correlation-request-id": [ "36528645-916f-4792-95ca-1dc22bc3b9d6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13872" ], + "x-ms-request-id": [ "36528645-916f-4792-95ca-1dc22bc3b9d6" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213933Z:36528645-916f-4792-95ca-1dc22bc3b9d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:19 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDfS5X+vVjFJMFwI0rnfUAvsKEkC8rguGH5E++6Q/XiZtNWLMPoJzeyn6LyOQEwZwpyvKhMFiKL7Rf6fQoyO5YekdVrN/pivZsbFNBzJmNSlqwiQHgKjPT5ZgaPJipJ3QHEXv26kxeAMJt40BUSyS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv81fGnSh4UTX7w2PCvGLy8nlSaQ8S3Ad17zPjk2QBQlZ4my7DgTRpBsEFonfYShy8MfRQFeCTRfyDxIx/MV/gHyUlNhDtfd84LZL+hOa/ZsQP5Jz3aOTeIKtnGs1IPlU2Ck9T2G/H/ZhAgmscUTI3" ] }, "ContentHeaders": { "Content-Length": [ "61" ], @@ -5116,16 +5116,16 @@ "StatusCode": 400, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bf9c41ea-8b5a-404e-8a23-f7c548a59a2e" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1066" ], - "x-ms-request-id": [ "bf9c41ea-8b5a-404e-8a23-f7c548a59a2e" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:bf9c41ea-8b5a-404e-8a23-f7c548a59a2e" ], + "x-ms-correlation-request-id": [ "0c47ad3d-0b8c-40df-85ea-73f29d28b363" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1042" ], + "x-ms-request-id": [ "0c47ad3d-0b8c-40df-85ea-73f29d28b363" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213934Z:0c47ad3d-0b8c-40df-85ea-73f29d28b363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:19 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVi7iEhy6pVdDxo0q8UYXDQlX+Ip9nDYlhmXRNgLESTRw+IdMsgo7AfAwq1onnAK6uweJQSh7gsLbbDtlD1kKgZAbKKC3tP0kQsf38sl/fvbm0mUyFEEnqe6jMpoQO1a86B20KRE5TMu8yF6fLD3c" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKAr0ylY37qExJ6on5s6h+FBiFnsGnSb2ZibKNFhnw/Wb/YKV3NS4b3ABBZvGsLkTT9DOfQNbUx6xbDnt8uxqGOQFDKGftabRG4oJxF8TKYeN3lskS/8OxZjfSRIyWu8VkjEJxmV759uh3VlLF9jS" ] }, "ContentHeaders": { "Content-Length": [ "66" ], @@ -5153,16 +5153,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e0856a3c-dfe6-4865-b70d-7aca3a6613c0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1065" ], - "x-ms-request-id": [ "e0856a3c-dfe6-4865-b70d-7aca3a6613c0" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:e0856a3c-dfe6-4865-b70d-7aca3a6613c0" ], + "x-ms-correlation-request-id": [ "023fba3a-ce0a-413b-a3e2-2a724c98a486" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1041" ], + "x-ms-request-id": [ "023fba3a-ce0a-413b-a3e2-2a724c98a486" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213935Z:023fba3a-ce0a-413b-a3e2-2a724c98a486" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:20 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuLbgopaiEjAq1T034CfcUxjD03Rad7LCNFNnxrQ5mtbBeJVEubvs5Wk5DvwRSfWFfX2hW//T3lCv5p6W+BMHHMBobJxUs1ZEV5tkf51++ps45X+EVtMIi47jkMcudzsbyUoAcuHOE5FT+KoM29LX" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY7F9ol6QEO3RcsOTUZ8D6eIC59nFG1cCZfK7SwlJXXcFpN+/M2N0qheqTeDGoTnP9HluUAYj4lzqpnX6neQ8559omm6Lvv/Qx/AWsoT0uJgdIBpeLYv2EfO45Yf1lmhqv3cWIwAfrRxBTxzAORXv" ] }, "ContentHeaders": { "Content-Length": [ "494" ], @@ -5180,8 +5180,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2563" ], - "x-ms-client-request-id": [ "c2032ba1-3ad4-4c86-bf14-bf429858e7b1" ], + "x-ms-unique-id": [ "1487" ], + "x-ms-client-request-id": [ "6ee265e7-441a-4bdd-8e46-918d0547bdd2" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5195,16 +5195,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1b30fa6b-0f61-4d49-8fbe-331e1ca20013" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14025" ], - "x-ms-request-id": [ "1b30fa6b-0f61-4d49-8fbe-331e1ca20013" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:1b30fa6b-0f61-4d49-8fbe-331e1ca20013" ], + "x-ms-correlation-request-id": [ "7ee2aaf1-894b-4e7b-8942-4fdd98e7e29f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13869" ], + "x-ms-request-id": [ "7ee2aaf1-894b-4e7b-8942-4fdd98e7e29f" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213935Z:7ee2aaf1-894b-4e7b-8942-4fdd98e7e29f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:20 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+7onezDKSL2urfyEHCJh8VA1VE0vBB3ftjQseqFRb6A9jihf5ufJjh7ukly8T0h6o78EPWOwnq59VldfKCxClRwod9ZIrJ08/kuSASzjbviRyKW2WX41WQkogx4d9gtN3sRw4WNBxKwggtuiZUfS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAAu5IcWu2PSpqiFzzcoLh2LzOuOCv8RnZ7RLSRgiPEevqmukV6p0PGjGAso5VrwCVUK05DQXY8axlQr9Qky/rLEXbO6wv5hag76MFj0ZBw0ctS6YhyWS0Uos9jG5VwNdy/fkeLMdChouAF73v1w+" ] }, "ContentHeaders": { "Content-Length": [ "494" ], @@ -5232,16 +5232,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f3e8a89e-ae0d-43d2-99ce-fa20d30cfdff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1064" ], - "x-ms-request-id": [ "f3e8a89e-ae0d-43d2-99ce-fa20d30cfdff" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:f3e8a89e-ae0d-43d2-99ce-fa20d30cfdff" ], + "x-ms-correlation-request-id": [ "972767a2-2e90-4b2e-a03b-d665da6e1954" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1040" ], + "x-ms-request-id": [ "972767a2-2e90-4b2e-a03b-d665da6e1954" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213935Z:972767a2-2e90-4b2e-a03b-d665da6e1954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:20 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvtQk4K1qknPFeWFmyms8AN7sxK2Z14lrV3xxqfwVXTyaAHHEzua4Nm/0EzXMmZr26X60B+zdAVK7VDXL96N5VbJOQVcee+YfMPddcoz4ouFHTVBjh8uCPYYu0/FcRrauZQKljpAgQZKB+iMPdZsS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlzDXHwd4QukYbpKq8pKZUiZsyTnaSKV9mBPPKyrE06cGJk02I9OsfBgUJLDwFBSqdTMMrCoDazF7L7OMZV9HkEU4A24uxMi05RYjCYr6BLh2yNveVn/RB14yT2R46cbzk7m6LatthlbGYDEK2li1" ] }, "ContentHeaders": { "Content-Length": [ "483" ], @@ -5259,8 +5259,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2565" ], - "x-ms-client-request-id": [ "0e04134e-2061-44c9-9ecb-81a4111be476" ], + "x-ms-unique-id": [ "1489" ], + "x-ms-client-request-id": [ "31cc7408-f557-4166-82f4-582d963a3dfa" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5274,16 +5274,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "25a919ba-f964-4cf3-af8d-3bdb97194b56" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14893" ], - "x-ms-request-id": [ "25a919ba-f964-4cf3-af8d-3bdb97194b56" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001320Z:25a919ba-f964-4cf3-af8d-3bdb97194b56" ], + "x-ms-correlation-request-id": [ "b6092d92-94bc-4b4b-b707-b4ce1a6c7793" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14869" ], + "x-ms-request-id": [ "b6092d92-94bc-4b4b-b707-b4ce1a6c7793" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213935Z:b6092d92-94bc-4b4b-b707-b4ce1a6c7793" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:20 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2uZXGNBOGImpg6e6oTS11dmdAur8CXNCeyGGD82em6D8viBd6a5Gvsho970T/RxNuXEr9f98WWj+1w7K0jKQwn3zgRP/b49mM1/X0eK0L1g3pDftlj3E1wN1onixfWB5gFE3zZMt9h/YxfLONpzV" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1PpWmZdstGm87ART4hq0gL/0kBZ5eoxJskAqoiEMLuGlgO8Qq3zvHDUpEscRCJ+3b4ikzySxnP6+urLz3Kg9OVaTOrN/XcFM5SKMbBZwc+9aDtKE1XeATl4H31rJ2CfT0/qQeQ0J+Wr4N15Z3+IX" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -5310,16 +5310,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ddd1de83-a573-4d25-b6fb-c5035c3ab49f" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1063" ], - "x-ms-request-id": [ "ddd1de83-a573-4d25-b6fb-c5035c3ab49f" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001321Z:ddd1de83-a573-4d25-b6fb-c5035c3ab49f" ], + "x-ms-correlation-request-id": [ "05e63dd0-f5b9-462b-a4ab-f96306b33051" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1039" ], + "x-ms-request-id": [ "05e63dd0-f5b9-462b-a4ab-f96306b33051" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213936Z:05e63dd0-f5b9-462b-a4ab-f96306b33051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhNXdtDdmXIWSLFmc6CifL8Irawf6jxDI9J0ltyn54tJ1KnwIAd2dJVA+JvRYVqZYxl72C/zb7b8+am1ieHa+0TjYxKO73s3JiDCrR4n4TafG5UfN/n7xtI8AsBNVqWfGPXTKFtS0nArhjtB/Wp7S" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv94+rnpqArnqtgMKW88wg1IpAycw8VhYNyS7hNxsu2ZlYo8vMTWk9ehigMrDz7jMLPLMwBG240rX3dsEDLHXuUhI8hEkrAgpbrGGr6IPgAE+Ca8WwrXjUKAGB4Eklgja4HCHk/ZJbQ5pz30M28VWB" ] }, "ContentHeaders": { "Content-Length": [ "494" ], @@ -5337,8 +5337,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2568" ], - "x-ms-client-request-id": [ "e4ff0bc1-80eb-48ff-a212-cb4fa9fc0c0d" ], + "x-ms-unique-id": [ "1492" ], + "x-ms-client-request-id": [ "ca2beddd-d833-4ddd-b687-aa114d22a88b" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5352,16 +5352,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "00697fb9-0584-424c-8d42-7478d0d3e0ce" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14023" ], - "x-ms-request-id": [ "00697fb9-0584-424c-8d42-7478d0d3e0ce" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001321Z:00697fb9-0584-424c-8d42-7478d0d3e0ce" ], + "x-ms-correlation-request-id": [ "bd4ef4a5-7a10-4b5c-a6ed-cc383a29a15d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "13867" ], + "x-ms-request-id": [ "bd4ef4a5-7a10-4b5c-a6ed-cc383a29a15d" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213936Z:bd4ef4a5-7a10-4b5c-a6ed-cc383a29a15d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYufTTXDjepOSCmAQpDWtuL/mdwuBpn3x0jhMZAefzu3vc0I9JChZSTHdRE84YotJ7AUkjrNeQ6ena7QQsqbiSgszIOVxe5QfkU13i4EVP5PUZFjkgOCHlCUh89rGWxAS5yuVgR59XvrNcQKako9H" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmQLHP6ntbmJ1cYhYfTrbTQb4UY6kUZBire5Ewy/jo1OHYH7Vd4I53XB0f7hz0QSV9UceSGber6h/8awSjpHFPz+zPJ57lQIrPwMeJJ1BPU6t5WII2yRZLK2x/LPSeYFrBOwLdgjIww3GBd012rW6" ] }, "ContentHeaders": { "Content-Length": [ "494" ], @@ -5389,16 +5389,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dbda2b16-0f99-4332-ad04-6f59d2861946" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1062" ], - "x-ms-request-id": [ "dbda2b16-0f99-4332-ad04-6f59d2861946" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001321Z:dbda2b16-0f99-4332-ad04-6f59d2861946" ], + "x-ms-correlation-request-id": [ "cbe560c9-7bd3-41a2-a800-ec9cac950f72" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "1038" ], + "x-ms-request-id": [ "cbe560c9-7bd3-41a2-a800-ec9cac950f72" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213936Z:cbe560c9-7bd3-41a2-a800-ec9cac950f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:35 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtGUIXQ7k9uxsSnQ9ThgykR6/Syo/wr1HX7zl+w+TeNP51U6DTWEj3ex3svMQDSc5NSWU2L/LJ39Q2v02PYH3QuCVBzTuo43L+UN4kAq4zt6b6UjZAeSzLHO9bPBFxRgp+PZHbO2zZCqkRAShAZ+f" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9K8CQ1tFj117y2b4kohA28v2L+ciXfBZE4ykE94UxekCxWADY2WMz03FCduzHbLajG+Fas7JhDw7FnvUrU93RJXjUdj6getrEgJHzguT/RYS9oXK8KZ+lcHFwDMBomqcdYpUs0FFp+wM3tKWThUd" ] }, "ContentHeaders": { "Content-Length": [ "483" ], @@ -5416,8 +5416,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2570" ], - "x-ms-client-request-id": [ "228f811a-9518-4619-ba4d-0ae654851da4" ], + "x-ms-unique-id": [ "1494" ], + "x-ms-client-request-id": [ "e58cc236-397a-4155-b64b-9f816111b23e" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5431,16 +5431,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "218c2017-2d82-452a-93e1-41a8b89dc099" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14892" ], - "x-ms-request-id": [ "218c2017-2d82-452a-93e1-41a8b89dc099" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001321Z:218c2017-2d82-452a-93e1-41a8b89dc099" ], + "x-ms-correlation-request-id": [ "f21ad86d-61e9-411b-b414-6f2e8a5ebc20" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "14868" ], + "x-ms-request-id": [ "f21ad86d-61e9-411b-b414-6f2e8a5ebc20" ], + "x-ms-routing-request-id": [ "REDMOND:20220321T213936Z:f21ad86d-61e9-411b-b414-6f2e8a5ebc20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvimJSm0Jg94Wx/94zx7zRRCLWcv2cQ+Dtu76hDB7gc7iGdF3wqllRJW8gueHPXWQxaeEbMeM0aEtjZOW31BfFQl/J+WCzcelBVVNu8DYG/cc9JWWcDw7OmoDTZFX+rAMb39KCM0zptusiOCNwTon" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgcVpT25QoY1pl05Sq6Qs4mT/luM8cF6LnnXd6eRH7QgMKXQWPYmBW4vdNj+pjnEuqojLYWPwGn+g9+cxbR0jXrED8gqIEsQ6Xa+4TtQ+SVZOFL7W6yQWZzTxzRxdvIbnUofJEjPYiweKx1pR4nJj" ] }, "ContentHeaders": { "Content-Length": [ "0" ], diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json index 5e3ad48f..76ac03aa 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2571" ], - "x-ms-client-request-id": [ "2a1b8dde-a790-4b84-9caa-6e1a4809d11a" ], + "x-ms-unique-id": [ "1495" ], + "x-ms-client-request-id": [ "d7dc23ea-7242-4ee9-971e-c1f2fdc3fd9a" ], "CommandName": [ "Get-AzsComputeScaleUnit" ], "FullCommandName": [ "Get-AzsComputeScaleUnit_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,23 +21,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "aaf7ea81-a093-4fcb-bcbe-ba7bbcc4eac8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14022" ], - "x-ms-request-id": [ "aaf7ea81-a093-4fcb-bcbe-ba7bbcc4eac8" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001322Z:aaf7ea81-a093-4fcb-bcbe-ba7bbcc4eac8" ], + "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": [ "Fri, 18 Mar 2022 00:13:21 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNrqgXKK2WbBPhrowQW0G8H5AZ1PI555Na6fwlpksSo23uHlT2tzXNrrQ0gNyj1gWn6abDKLxFSbv89KZGUIwW04UpUty9Y9pIMi9w5At3Ias7GzpHPO6fVs1x/D7qxtn6RX+Yf+pdPzljAdMQnv3" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmsOlSh/jwo6W4wJ06NK1YzM50YG8jAdsWvpvoNIaMZ/UT5XPpMBXHpwa4PsRuYgQkCd0kCKbJPc67lJtS+wRFL3nkGXlumrjK/2+XDS/frEpdX9+P5DLZIXDjxIeRbKX+0s/Tb3hbQ2jgrkjgIAr" ] }, "ContentHeaders": { - "Content-Length": [ "754" ], + "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-18T00:12:32.948Z\",\"nodes\":[{\"nodeName\":\"ASRR1N22R10U22\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-18T00:12:32.901Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U21\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-18T00:12:32.928Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U23\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-18T00:12:32.87Z\",\"virtualMachines\":[]},{\"nodeName\":\"ASRR1N22R10U24\",\"nodeHealthState\":\"Up\",\"lastUpdatedTime\":\"2022-03-18T00:12:32.85Z\",\"virtualMachines\":[]}]}}", + "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 } } diff --git a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json index 9948f794..904b5f5b 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json @@ -1,13 +1,13 @@ { - "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-04-01+1": { + "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "98" ], - "x-ms-client-request-id": [ "4d725649-0ef6-4acd-8de1-3a72f7f12ad1" ], + "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" ], @@ -23,34 +23,34 @@ "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": [ "3ff7e1e2-92a0-4d01-ba62-6c392e6619a3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14877" ], - "x-ms-request-id": [ "3ff7e1e2-92a0-4d01-ba62-6c392e6619a3" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T050901Z:3ff7e1e2-92a0-4d01-ba62-6c392e6619a3" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLf0o4uG4OcDouQJ7tT5oJPBIkfevWvv6/ng0EGCiFJxMw5ozgJp9B827k+lF9DJK7c+zq4ANrxV8lWHWzjN27pxNJXLqVX6unbIFvZQL5BfvDmYIEqZxjjg02y4nG7K042+fJNCEnxxlagkcc7C9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfWhJ2NgI4y9Uw9fdPvRwcuRlvrqQ2izl0y8zjSMLPUaMgyWK9NIhz86Jp5BvXHYYVKP4nX8R3sFM6aoDh6G1mYC3NaAU0e/fBRKoNeQw68GqS96cDmGI0UMZvF0pu/uONGh6J6t2mPhOUjnITpy4" ] }, "ContentHeaders": { - "Content-Length": [ "816" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?userSubscriptionId=47b53730-e95d-4594-b843-d378bdff793a\u0026api-version=2021-04-01+2": { + "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?userSubscriptionId=67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c\u0026api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?userSubscriptionId=67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c\u0026api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "99" ], - "x-ms-client-request-id": [ "cd89f83c-d29b-4cf0-88b6-3fc5f3ee0429" ], + "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" ], @@ -66,34 +66,34 @@ "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": [ "ece43879-75ca-4ec9-b338-ad90606a7b57" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14876" ], - "x-ms-request-id": [ "ece43879-75ca-4ec9-b338-ad90606a7b57" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T050901Z:ece43879-75ca-4ec9-b338-ad90606a7b57" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveBr2+q6pF5Cpc8vq/gYIGnIlnyY0AxigQ+qsYEpybtdMznMSbg4u8OGtiqiKobHVKGXS5TnBj5NjFT7neqHMF1EZd20pb8wT8KjW1JsceS8S/x0kSUS9fFd9Q6drQzV+n0szwmtap2ZUyOKlZsCY" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvinNSwuYmyg279A98A84gtEvhPxkOOagDmwenGH9chSEUO0gsDYNYnXhOZ4+qUfhuSXhi8iOWAAV6MSSrJvbEE5xT2T4TbNUq8zLIxXzT2RFywRP7WzPWZ51O8W1/+Z+xTMhdasag/LHsvE8KmoQr" ] }, "ContentHeaders": { - "Content-Length": [ "816" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=ActiveSAS\u0026api-version=2021-04-01+3": { + "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=Unattached\u0026api-version=2021-09-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=ActiveSAS\u0026api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=Unattached\u0026api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "100" ], - "x-ms-client-request-id": [ "abf71911-7700-40ee-bcd3-a461d8a6a48b" ], + "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" ], @@ -109,34 +109,34 @@ "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": [ "d96079a1-387f-4e0e-99a0-25f28690d73d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14875" ], - "x-ms-request-id": [ "d96079a1-387f-4e0e-99a0-25f28690d73d" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T050901Z:d96079a1-387f-4e0e-99a0-25f28690d73d" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQR0VocgL73WdyHRWhlbUShCSpOTcj9N64s+uVpn8imoAfbalx/B9IpN0nv9LS91eTgg4+TISQPoXBgTxkrlx7WdFqXCMlDzzWMep+H3prytoX62GqBEPKk4ku0scYql1mufhn0ErQK1dxFCyM+mA" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVg9pQiF/PR3lIMPQqXBfW8ru9Wg0lxUKoh6qtHWkx12KRu6fImc8uBPVNkk0ya7Ls1ziiSNtZ0xS9TDyM+Q/Z6OI1/EsDPzGf04YTZtLoWz4fBb81JkvKpCmCm56ZtTBik+N0h0nFXqgniWQIMyV" ] }, "ContentHeaders": { - "Content-Length": [ "816" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01+4": { + "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "101" ], - "x-ms-client-request-id": [ "9f1f8ed5-39cb-406e-949b-1f5eadf25a81" ], + "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" ], @@ -152,34 +152,34 @@ "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": [ "13d2a2de-dd10-4b54-af12-8fcbc291345f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14874" ], - "x-ms-request-id": [ "13d2a2de-dd10-4b54-af12-8fcbc291345f" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T050901Z:13d2a2de-dd10-4b54-af12-8fcbc291345f" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV2moksK3eSnHJS2+EKEEt+1KSXkYDnAcF26AJ1qhI4QauSXqDHMdxDcOx4d2z4tEmJNTUAYA/1y0DNzLZmnDiVBYm9CSfZ7hXknF9GLy84e6s0yEPmJ3K/RawD++p4wK8ue6xTrQvvR2sM41jKdl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWcXJB8quFqLX4dFUz5M2UHpUegl6mQDqcykr23YZNtg7/hydG6zahI4DW2TedRQT1YSWfqBWcey1juQlXeQD5BxegM4MuPQ6TBKjKxvKskNm6x/VZ57I04eQg0wRMWnctkuUqaFQO4cauy1mTzWQ" ] }, "ContentHeaders": { - "Content-Length": [ "816" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01+1": { + "Get-AzsDisk+[NoContext]+TestGetDisk+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "102" ], - "x-ms-client-request-id": [ "c3daa227-0f73-49af-918f-36e1e7bfe5b6" ], + "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" ], @@ -195,34 +195,34 @@ "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": [ "6e05806c-5940-4077-a586-be4a000dcd22" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14873" ], - "x-ms-request-id": [ "6e05806c-5940-4077-a586-be4a000dcd22" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T050902Z:6e05806c-5940-4077-a586-be4a000dcd22" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxKWUZXaLU+Pqd5CBM3fexIp/tG/p1JskTyDDfmfHoIaSDj+I9Msh3eT85wasGmn99RUwjklcS3tgPmd/v2W44FNVt7DnA5u4ZvMjQEYUtthlUPs6C/WlIv6mTxN1GRWZJZpqtj6CUMEEzH5uVZFw" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAJKFywhbvSnXMDjOoV/8WMZ1TEplzGZarML3ieWZcajvl6AYUSHUxcZviS++iPbtxQc/EsG8rPQF9li4VXW8c9UOLeohx04KID2NaeRDH7oM4vd2EW1TJwtLX8ilrib5GBO6gouchyyIdWFdaqnf" ] }, "ContentHeaders": { - "Content-Length": [ "816" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b?api-version=2021-04-01+2": { + "Get-AzsDisk+[NoContext]+TestGetDisk+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298?api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "103" ], - "x-ms-client-request-id": [ "4e9512ca-4c8a-4235-ba90-0d855a5034a0" ], + "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" ], @@ -238,34 +238,34 @@ "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": [ "62ae949f-6b67-40b4-8943-8e6d5d471a68" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14872" ], - "x-ms-request-id": [ "62ae949f-6b67-40b4-8943-8e6d5d471a68" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T050902Z:62ae949f-6b67-40b4-8943-8e6d5d471a68" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 24 Aug 2021 05:09:01 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfrofbducY/Wzdnr3SBrV57rNdHjNrV30PhQpTrgufsz8sM0j7rKjbgaVBNW36eI0JMJr7dIzu00Fp155dg+WiQf26PlWvLtTl8+LbS22FD2Ls56X4S/yfZz1+dZL7sopKFZLgDSGC44JbCTLya9T" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIXkVrtbcMwzTaj7lixgphB2YN8dy7chrODK1WQVtGVIHJoTYOPT2EcPzyqpfVLFwpv8ortSe/mV+f6xfb8BdptaYxVHjm74hljUkMO39a5yrsj5mp5Zk1HaqjK93O8hEtVCN/6OSFkMA8Re0MwX6" ] }, "ContentHeaders": { - "Content-Length": [ "723" ], + "Content-Length": [ "927" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\",\r\n \"actualSizeGB\": 0,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\r\n \"diskType\": \"Disk\",\r\n \"diskSku\": \"Premium_LRS\"\r\n }\r\n}", + "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-04-01+1": { + "Get-AzsDisk+[NoContext]+TestGetDiskInvalid+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.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-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": [ "104" ], - "x-ms-client-request-id": [ "42acea7e-49b8-4a48-b314-7435c325d00a" ], + "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" ], @@ -281,15 +281,15 @@ "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": [ "973aa4dd-2726-464a-8a05-658d04f60448" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14871" ], - "x-ms-request-id": [ "973aa4dd-2726-464a-8a05-658d04f60448" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T050902Z:973aa4dd-2726-464a-8a05-658d04f60448" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Tue, 24 Aug 2021 05:09:02 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG0Cb7UNeAum/PfDZ2lck1mdPri6yd1eGKKVtPfU/IfCZaNfz43S4YNCfx2/Sw+D6zDARR0eTL2mf6pZr/VgD8qS85uruuPByxBzkBppqbKMxVyUtcrX2ldQkYSQV1fDTc5tJrzLuv/dIomczBgNu" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvR9L1pVzY/mj2Y/iMrJtzFpD+akyzsfh7gEP31WyivkWE4QrFt/G2Mvq1BAHpu35gl1/5i4WrJ3+0oP0/noS0o4GjC7iEMHL1R39jh64WjLXnZX+GLXA7M/Kqcmwx+aPnnA5fcfu809a1L3z0jcHv" ] }, "ContentHeaders": { "Content-Length": [ "115" ], diff --git a/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json index 596abe4c..907e2431 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json @@ -1,13 +1,13 @@ { - "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-04-01+1": { + "Get-AzsDiskMigrationJob+[NoContext]+TestListDiskMigrationJobs+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "117" ], - "x-ms-client-request-id": [ "26f9c47a-bb53-43f9-96de-de99aa466a41" ], + "x-ms-unique-id": [ "1503" ], + "x-ms-client-request-id": [ "e5d9b2a5-62b3-4344-8717-8eb34efb5f47" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -23,34 +23,34 @@ "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": [ "3bee0727-dd66-423d-8c47-8418eba08065" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14846" ], - "x-ms-request-id": [ "3bee0727-dd66-423d-8c47-8418eba08065" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060843Z:3bee0727-dd66-423d-8c47-8418eba08065" ], + "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": [ "Tue, 24 Aug 2021 06:08:43 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx9nRi5wQjDSs7IKSEBa+6ezxAQROLT1QTMo5BDpgl4zCmesCMkTZDCAYz1t65//4GjlH1BqaKQrr5fAMQe4aV35RBaVMiq8jwuBb9MeCxukwY5sAaLhZbTSgV+c3dBJhSBQ0qaszx+7rLpUptnVx" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJkYuGO7HJ7/XF+3XOynWf8MHT9s0v5U02DeOKA1KaEHDuD8pxjf0qqeL+m4GZPkPp/Svpty7actJO4BX7/acdus5vA/Om/s2O9XKIya9rhBoP0N7zCnRIZsxkBQ+AcF9juJMnYpOf1DlqG8hsRId" ] }, "ContentHeaders": { - "Content-Length": [ "1281" ], + "Content-Length": [ "4421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\": \"Running\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Running\",\r\n \"startTime\": \"2021-08-24T06:08:36.9895593Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"startTime\": \"2021-08-24T06:08:36.9517749Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n }\r\n ]\r\n}", + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-01+1": { + "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "118" ], - "x-ms-client-request-id": [ "7f3b7d8b-30fa-42e5-9362-2e4111893a22" ], + "x-ms-unique-id": [ "1504" ], + "x-ms-client-request-id": [ "c47284b5-248a-4d25-b641-a042cb6ab327" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -66,34 +66,34 @@ "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": [ "89937f7d-7cb2-4ade-8c54-594c4d672672" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14845" ], - "x-ms-request-id": [ "89937f7d-7cb2-4ade-8c54-594c4d672672" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060843Z:89937f7d-7cb2-4ade-8c54-594c4d672672" ], + "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": [ "Tue, 24 Aug 2021 06:08:43 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsmQuG/HOjdJCEVDhGIRgOergHKGo0aUrfUxNRVEPYEJfmTD32RFKi5tI69CkTHZV5ltKKq9buVbfkv+Tdrmmf1vPuvrrIvgjSgmSVApK0MneHbqVAXWBhyrJoMba4UdyW4m/oomaO+s/2H5hhpl0" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnsmxdbceVf0RxVC9QeNCd0BBNcaji/4PUyL3BtLnvvEpfCZPGvflN+WssFgtbSALPAn+ZZvlMDQ6j42VNMGLDUavkl+Axhd6E3kfRgLkwj1bzUqnmJjfVnFJCCWBJgMFs8aRXyAhL84fCZYLVKz4" ] }, "ContentHeaders": { - "Content-Length": [ "1281" ], + "Content-Length": [ "4421" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\": \"Running\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Running\",\r\n \"startTime\": \"2021-08-24T06:08:36.9895593Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"startTime\": \"2021-08-24T06:08:36.9517749Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n }\r\n ]\r\n}", + "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-04-01+2": { + "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "119" ], - "x-ms-client-request-id": [ "fd0d6a49-a123-4324-a4ae-b85a98ab138e" ], + "x-ms-unique-id": [ "1505" ], + "x-ms-client-request-id": [ "629bf7d7-b0c9-44d6-b441-526a72c2bb11" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -109,34 +109,34 @@ "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": [ "c11d90bf-20cf-4d26-9151-6baaad4bf5b6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14844" ], - "x-ms-request-id": [ "c11d90bf-20cf-4d26-9151-6baaad4bf5b6" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060843Z:c11d90bf-20cf-4d26-9151-6baaad4bf5b6" ], + "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": [ "Tue, 24 Aug 2021 06:08:43 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9wx9sY/cJpjIqRtpK/5yBwjqtVKy524MEe4O32tdGf+dB94RtTdyr1RYFPeJ7KCsto138ypZPjAIG98yKCJu1EAvq9CUFRGUvW9xEIDeUM1DVygSxF+BR1Xur2SezWY7NQHmEuRi7wNJTMxZmF9V" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoHOrD6OFMtYUOLhK8YXm3xKPR/NnZmlXDihM9PGUodDaQ0huMOyRCCSgr4zhVyy8rsl7x+p3zonF0bxXNjdJ3oDKn6f289JkOPA7kdIVadMi/duRvHkrbFvR9vIz139lqKvETu0vfqTxLuf/Iwhx" ] }, "ContentHeaders": { - "Content-Length": [ "1152" ], + "Content-Length": [ "1293" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\": \"Running\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Running\",\r\n \"startTime\": \"2021-08-24T06:08:36.9895593Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"startTime\": \"2021-08-24T06:08:36.9517749Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", + "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-04-01+3": { + "Get-AzsDiskMigrationJob+[NoContext]+TestGetDiskMigrationJob+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "120" ], - "x-ms-client-request-id": [ "b33e8457-bb05-4685-bb1b-ce1aab51ce63" ], + "x-ms-unique-id": [ "1506" ], + "x-ms-client-request-id": [ "1ac82d9e-3fdc-4476-bbbb-3ed993ad469e" ], "CommandName": [ "Get-AzsDiskMigrationJob" ], "FullCommandName": [ "Get-AzsDiskMigrationJob_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -152,22 +152,22 @@ "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": [ "888fd0d2-cfc6-460c-92e1-91f39789494d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14843" ], - "x-ms-request-id": [ "888fd0d2-cfc6-460c-92e1-91f39789494d" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060843Z:888fd0d2-cfc6-460c-92e1-91f39789494d" ], + "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": [ "Tue, 24 Aug 2021 06:08:43 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKJPaiOjFn5FYZSkmHUNwc81ZTscN3wfQj/Ti+jfidrUQe2feWj9r5q4nNIg0hHGM2P3ult3DiVLq27N2MAW5zT116AeV/6y9nz/0LkEVVilj4ayKkS8YJXl1crfrlNXdmISRauVylq9mEbRyO+lK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvw0F+WFGJcMWB8KPitOejSYdj6i7yR6LXt5BP1ABnfg+GdYqs9Yh9bJQB8b4In7IqsXUsIRled1UKFgV8WLDulRy5DB5Sx/KxGXiyAXal4UHbe6Hkwxa8eg37LeBWKP2UQfAc0iZ2SWbg7ZlByXS5" ] }, "ContentHeaders": { - "Content-Length": [ "1152" ], + "Content-Length": [ "1293" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\": \"Running\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Running\",\r\n \"startTime\": \"2021-08-24T06:08:36.9895593Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"startTime\": \"2021-08-24T06:08:36.9517749Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", + "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } } diff --git a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json index 72ed17fc..47e4f80e 100644 --- a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json @@ -1,13 +1,13 @@ { - "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-04-01+1": { + "New-AzsDiskMigrationJob+[NoContext]+TestNewDiskMigrationJob+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "115" ], - "x-ms-client-request-id": [ "9fa82b5a-fb38-40af-8664-53b2a26b0f09" ], + "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" ], @@ -23,36 +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": [ "a48c81c7-84c0-4b34-99e3-c5ae54cecf8f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14847" ], - "x-ms-request-id": [ "a48c81c7-84c0-4b34-99e3-c5ae54cecf8f" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060836Z:a48c81c7-84c0-4b34-99e3-c5ae54cecf8f" ], + "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": [ "Tue, 24 Aug 2021 06:08:36 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwc83QtiV6BI3+oxtMvKw+354a3w3LHUuqzkSJQVcS45/flybDUx/ZlwSWC3FqD4ftJnk+AW33ogxDEpUQ+IUXReDS7ZY3Ao9WqZ0i5neszrcAcJQ5ob+ApJvd3exIEWstNCuDvBD0TwCwQy6aLvL" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkMMCHo4vM5NDPXiCqkhdbG5lGA+mMS3p+TB0c698lIlgiTgZl6kCdY0J0rGP2RqWybKx/X2dCGgC/GULveGg+ML4gJGqFVIph8rpifUn8cL00hDTW7CV+yR3tEByfBddi0r2oes+huw90Z1Ncsey" ] }, "ContentHeaders": { - "Content-Length": [ "885" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-09-01+2": { "Request": { "Method": "PUT", - "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-04-01", - "Content": "[\r\n {\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\"\r\n }\r\n }\r\n]", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1?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": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "249" ] + "Content-Length": [ "250" ] } }, "Response": { @@ -61,22 +61,22 @@ "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": [ "d232be50-041e-40fa-968c-386f0bbdb5f1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "d232be50-041e-40fa-968c-386f0bbdb5f1" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060837Z:d232be50-041e-40fa-968c-386f0bbdb5f1" ], + "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": [ "Tue, 24 Aug 2021 06:08:36 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBzCFsKyc7j1M2/eSDpFFDhTvCz5cIeRO1qL2nf6PljF5pcJ5JqB8hFuUXcenNfJj3fyuskrvcleQhk2/WpN/QOe154zvp/6d39c9uc4bkOyCeXA1zNeDCZghe0/p6Jw+SZTOrkAzaL7nNwe3EzCs" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6cYUSnhKOHKsqlrb2VOjSHma3kFmGyMw0Wus13lFMb2jEDemLpqT++dcgLeKJ8CbTE16i2XeGu0zBuyxkTmvYlXTRQLYGi8frBSOHjfugFRlI9hUK3gp+QkwH55E2xDjrUB9hDIDlHHZFkxXtLa8" ] }, "ContentHeaders": { - "Content-Length": [ "1046" ], + "Content-Length": [ "1456" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\": \"Pending\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"bb98122d-ebbe-4350-8dfc-4ce72f27751b\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Pending\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:08:36.9065588Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_1\"\r\n }\r\n}", + "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } } diff --git a/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json index facef76c..84b8a4d8 100644 --- a/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json @@ -1,13 +1,13 @@ { - "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-04-01+1": { + "Stop-AzsDiskMigrationJob+[NoContext]+TestStopDiskMigrationJob+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-04-01", + "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "121" ], - "x-ms-client-request-id": [ "33c2344e-d53f-4cae-afa1-0da45972c23f" ], + "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" ], @@ -23,36 +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": [ "976a25b4-59e1-4777-b32b-4f8447cdb32a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14842" ], - "x-ms-request-id": [ "976a25b4-59e1-4777-b32b-4f8447cdb32a" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060907Z:976a25b4-59e1-4777-b32b-4f8447cdb32a" ], + "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": [ "Tue, 24 Aug 2021 06:09:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEV6T8wGm3XefCa9g3/pLERQGjWwHN+ofJMJZFOgJuUAsDe6DAlc6aTzry1W5c1s1lrgQqEk/3a1OpeXcSiWv197oG5GZsGTP1CH1nHZ5+yvbThtMpwH5Ldu9DDl7QLt+fnCkjA1+wMDCBjq7eGQv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuqDiH7jOrJp3RKbDaFiIK10dKEwahBs5xfKSj1wTqELStpW2JzmGTHX3FcsxJshK8UOUB+83LjvmYIkYUQH3eSoxTa8M+At6HGVOQvsbtO0R+fxZQaoSK/I3X1bKkJ9jTEksCx6KgJipVb7b+TRj" ] }, "ContentHeaders": { - "Content-Length": [ "885" ], + "Content-Length": [ "1024" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/disks/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"name\": \"redmond/a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"type\": \"Microsoft.Compute.Admin/locations/disks\",\r\n \"location\": \"redmond\",\r\n \"properties\": {\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"actualSizeGB\": 1,\r\n \"provisionSizeGB\": 1023,\r\n \"creationOption\": \"Empty\",\r\n \"userResourceId\": \"/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/resourceGroups/POWERSHELLTEST/providers/Microsoft.Compute/Disks/disktest\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/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\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\",\r\n \"status\": \"ActiveSAS\",\r\n \"sharePath\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\"\r\n }\r\n }\r\n]", + "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "249" ] + "Content-Length": [ "250" ] } }, "Response": { @@ -61,34 +61,34 @@ "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": [ "6d3a8a3a-391d-4e47-9541-e8d496e322c9" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ "6d3a8a3a-391d-4e47-9541-e8d496e322c9" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060907Z:6d3a8a3a-391d-4e47-9541-e8d496e322c9" ], + "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": [ "Tue, 24 Aug 2021 06:09:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8LYpw3hnLvdqputC86E0EzPQ4EYLXVwdXZUgXMhBm9HOkfQWAQsyzqit0m/7a8tTTm7h+KSkCr+1g63VHrKlMqXG/4FQQEOyAYaDwwRYJ3x2DPNiqCoP1F4XgBoCMZUQozB0ENkQU+VZVXSqwSYJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvj7696z0LjAvHhhM2nLSatt0Y88+nIQOnn6NvZ9G1jLuNtgj0zsQ5bqzP22bxij7n//kn2B1dkfBwcf7YTngd2TWfL8qCRK4jU9zGvzq5Ss3gDufQgXYl4Pc15Y51+qcVJK3d105IwuR8r/V09XpI" ] }, "ContentHeaders": { - "Content-Length": [ "1049" ], + "Content-Length": [ "1293" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\": \"Pending\",\r\n \"subtasks\": [\r\n {\r\n \"migrationSubTaskId\": \"4f64e824-ad90-4f5f-a357-b70716ef3577\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Pending\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:09:07.9106269Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}", + "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/47b53730-e95d-4594-b843-d378bdff793a/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskMigrationJobs/TestStopDiskMigration/cancel?api-version=2021-09-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://adminmanagement.redmond.ext-n25r0507.masd.stbtest.microsoft.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskMigrationJobs/TestStopDiskMigration/cancel?api-version=2021-09-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "123" ], - "x-ms-client-request-id": [ "b9d4ab41-dca8-42c2-9f25-95347105f460" ], + "x-ms-unique-id": [ "1511" ], + "x-ms-client-request-id": [ "74700c4b-09b0-44e2-8c01-0ec1420bd7f9" ], "CommandName": [ "Stop-AzsDiskMigrationJob" ], "FullCommandName": [ "Stop-AzsDiskMigrationJob_Cancel" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -104,22 +104,22 @@ "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": [ "3fef2ebe-2eb3-43eb-bf67-635643dd4a20" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "3fef2ebe-2eb3-43eb-bf67-635643dd4a20" ], - "x-ms-routing-request-id": [ "REDMOND:20210824T060908Z:3fef2ebe-2eb3-43eb-bf67-635643dd4a20" ], + "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": [ "Tue, 24 Aug 2021 06:09:07 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtK6h7sj/9pj/0l+FcWEorbKILSS6xaxi3pIwW21sm6HF58Wl1M9ZO5wu6G1CAZA7rkWZVS1kAnOlw08FRoRrg9nd5McI2I73IaAaMlgVt+qAhFPu1TZCegezBQT7M4T06PMfG63gq+6yKrNwEgJw" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvLv9FApLDA+dkCrOtjJM2E+WmHsShaDje9Kg5Z+wO28Pz6m8jfB1kIj21cDPdGp+5XC2HLyVsYvrgOiJRgdTjo4nLIH5bRgV06Ro1+7Oqi7cGWRQb6PuWfD86e6gfVj6uBV/5Fhaz0shhCuiR7nwQ" ] }, "ContentHeaders": { - "Content-Length": [ "1153" ], + "Content-Length": [ "1293" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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\": \"4f64e824-ad90-4f5f-a357-b70716ef3577\",\r\n \"properties\": {\r\n \"migrationSubtaskStatus\": \"Canceled\",\r\n \"endTime\": \"2021-08-24T06:09:08.1626194Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\",\r\n \"sourceShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_3\",\r\n \"targetDiskStateForMigration\": \"ActiveSAS\",\r\n \"diskId\": \"a298131b-6006-4c55-9960-a8cf7cddff7b\"\r\n }\r\n }\r\n ],\r\n \"creationTime\": \"2021-08-24T06:09:07.9106269Z\",\r\n \"endTime\": \"2021-08-24T06:09:08.1716238Z\",\r\n \"targetShare\": \"\\\\\\\\SU1FileServer.n25r0507.masd.stbtest.microsoft.com\\\\SU1_ObjStore_2\"\r\n }\r\n}", + "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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 } } diff --git a/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json index 3ceaf840..1721f3db 100644 --- a/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json +++ b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2588" ], - "x-ms-client-request-id": [ "a8ef7586-d789-4468-a698-f894c8158176" ], + "x-ms-unique-id": [ "1512" ], + "x-ms-client-request-id": [ "d8d93384-ae06-4386-b8e2-8374be1ea6ac" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,16 +21,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "29969b36-05e9-4bdd-9ec8-74caac281ac3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14008" ], - "x-ms-request-id": [ "29969b36-05e9-4bdd-9ec8-74caac281ac3" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:29969b36-05e9-4bdd-9ec8-74caac281ac3" ], + "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": [ "Fri, 18 Mar 2022 00:13:27 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/grS3mgVmLdXamU1l82TYNwn978QNkaTohyn5ckpvEV+88R1zqqDRKsEIDv/4Kk87kFp7QvCL72xIFcir2luNgv4TrxlWb+Dw780RGMk9aWod9u/ZIsKd1NuHXFmqaDLfKkyRZBtyhpM4/kjh5xi" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2xtG5GntQ/+7CJIvajINP+Zx/8jv//PtjKPHYrqFqw2BkUM46pTNJXyWFfSdKxqyFtzrWKDRUqww5mR/hjr3f81T4YsNX/mrvWbwmyRgc713HINcA/6wLluVPaqoEXZmqnqJQiaw2EAAn5EBbyMZ" ] }, "ContentHeaders": { "Content-Length": [ "526" ], @@ -58,16 +58,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "aa4cb94f-1fbb-49eb-893a-c1eab50b0354" ], + "x-ms-correlation-request-id": [ "737f2dcf-2992-409a-b587-56c5cdabec82" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1162" ], - "x-ms-request-id": [ "aa4cb94f-1fbb-49eb-893a-c1eab50b0354" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:aa4cb94f-1fbb-49eb-893a-c1eab50b0354" ], + "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": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG+N1wMryWoWuZMxu08E33EaBQvH+E2faQgFZKRVFSMmRx3EJM9wWjc9MxMrw//mevwKlr06vlvU8NE/ia0/kwleqM5XmNT0DUd6uiVZ239A7KydbEpmzDybHomLs06iPQ45IDPrPSB/ihe0on919" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbXGGf25X0gBEyCVeSkliwj2ThTgKHlHdFrvnForgaY34cuhdzpZhADpnpg4UiG9MvDiP1pANrxGFqJL3z2U3ZCB41FCh0UyGTCzw8AW18n+p227MWTXR8VdsCsseEXs8CrIIWe/E/jZiKARdgcXI" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -84,8 +84,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2590" ], - "x-ms-client-request-id": [ "b9535c2e-e37e-4b1f-996c-9d06c90a34f7" ], + "x-ms-unique-id": [ "1514" ], + "x-ms-client-request-id": [ "0001f217-166f-4b7a-a0ee-af1884c8ed00" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,16 +99,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f4a194be-865c-4455-b38e-f93c2dfbfcd6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14007" ], - "x-ms-request-id": [ "f4a194be-865c-4455-b38e-f93c2dfbfcd6" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:f4a194be-865c-4455-b38e-f93c2dfbfcd6" ], + "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": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZPlwdwDbwfDgL17mCZ9pJ/HNGIl39tNwaaBG6gs9nxf7VNOM6wmTQjYWnqfs67pPXaPvA3LsuzDCDjkxPMxc0LgZgBkzAU6EjDsCG0NISNxK4CiYFz7fjIKu/UxLk8ZziV7uiHSQUIS5owDyo2ND" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3sL+GqHPYISOC0EVeMCOHZAcMV6JVqC1CqqQ8eZZw60qq3F70FYoPhnw2hgfFNBXJRdpleYRGLFLQ4ENW87tJ+qTQOONLKN2bsriyEMqX0ZzwWWPhX5Zk0wLAWCUuOwCV1UnsxJ35wrSacUnwJP/" ] }, "ContentHeaders": { "Content-Length": [ "511" ], @@ -136,16 +136,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c3e7dd5a-722a-4546-80d5-43a6ded097c5" ], + "x-ms-correlation-request-id": [ "9f75bfff-3b0a-4d54-8eda-3df165620ac7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1161" ], - "x-ms-request-id": [ "c3e7dd5a-722a-4546-80d5-43a6ded097c5" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:c3e7dd5a-722a-4546-80d5-43a6ded097c5" ], + "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": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrb1oXLrh8P3Hpk800EWdvp87lqxjpebC034FMGi62q8hLaL9ykI+G1R26xTTg4dKr5GCxlEgyPc0q91jrdwk0NXSnn1cVZarYKYCxT01gLfT/ZyaIWK4c3L8TBcfL6dek1d4ro5hZMWcPRW9bLlS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3k27dP5sOaL94fgZTti9mQITLs2AnoGE/ws0qHtcgDHA56p7McUx6pc196O0fClruPY4l++OUr6E2E0FmepCsoiagKsKhEAc+34KSEyOyay/0XuIYlFTuwkvE6Q4jZQ0a3qNOdrvh3sOHXtRUFSm" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -162,8 +162,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2592" ], - "x-ms-client-request-id": [ "b811509f-3f11-45ea-b575-07bd4c0da19d" ], + "x-ms-unique-id": [ "1516" ], + "x-ms-client-request-id": [ "77ac40b3-f09f-4e60-9a4e-63d094c1ed57" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,16 +177,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0af9da17-6288-4594-83d6-75e3612cc7b6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14006" ], - "x-ms-request-id": [ "0af9da17-6288-4594-83d6-75e3612cc7b6" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:0af9da17-6288-4594-83d6-75e3612cc7b6" ], + "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": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvf2+ohtq1D42EDzx6g55aMnRUxbp8h6GxKMUQC33HKNusMtAnsJWXRsE0ijwIZAH5EsHJHUfAK5IZ0tJHjYGLCfEJo16qvu3pyLVHglZf64cY4qZ2qb14kJJRksJxIbC7ii4W1EbI4ya++CjEj15r" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZHFmcknFHsqa6rB0wT/WR3xGhfroGKKr3su14WSicE2FWqYXpRi3PCTydx3e0Q0rdCM7i4VAbiXXNB4D3EHQQlgC1+ix7mDP1/xyYFZ4KRFOoI187TxgL2GcTmKj2TEkNVGasy9XdfTm2F8y/7un" ] }, "ContentHeaders": { "Content-Length": [ "510" ], @@ -214,16 +214,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c45ef687-a1b4-4c4a-a954-4d5e534c010a" ], + "x-ms-correlation-request-id": [ "ef19345c-9589-4f00-b9f0-cd5b4665db8c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1160" ], - "x-ms-request-id": [ "c45ef687-a1b4-4c4a-a954-4d5e534c010a" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:c45ef687-a1b4-4c4a-a954-4d5e534c010a" ], + "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": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmfRPZM+34n12UkpinOPNu0OsnAzNxkY5quiVSuYycv2tEr8jzqkAq3tnyljTMrzhsdB66FM7cJfnuj75r/6SOmMaP0cDfsG6wslQd6GP26TCI4MzA0XabWQNCo/3oVFeXOMTqiUQhICkVW8GwR0k" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXN54Kq9rREw21Y/dIv3zZiCcBYVo3KDpyOH/1ZMTwcY2gpim4IWl3huk3lPxDXp1k5HxYWEDTqlsrVLN1GJuZdgBeVMlKdXVGtn7Phrb92GaD7pczz/uZc6FuMyjt2MJ+0ktq92WLRuKQYA+NvJQ" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -240,8 +240,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "2594" ], - "x-ms-client-request-id": [ "6db8495d-9ba4-480c-a700-70fd1a53d70c" ], + "x-ms-unique-id": [ "1518" ], + "x-ms-client-request-id": [ "21403b04-8159-43d8-946f-6bed9a3f5f05" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -255,16 +255,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "226f4d5b-9611-48ae-94c8-79dcdf57efbb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14005" ], - "x-ms-request-id": [ "226f4d5b-9611-48ae-94c8-79dcdf57efbb" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:226f4d5b-9611-48ae-94c8-79dcdf57efbb" ], + "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": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJuEdmUFpXYuBZsFPy1fIc5F3nOKq/z3G9yeVjbJ9wkCi1DibHTxZHgDg2DsmTgoCzNeAV3TjlrYAEAwXXVWGbkQ6Y0ZQiWCMhyM97hV2UZl3y9JaGmMxmbP4qg1AXmKh0KC7FTcQW9YuOkUtb9ME" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvL+0BBjMWpIadPvEwObnabHqTrPsOyb8SCtlPv5iiIyGxIMz2hjEoIW0pXbBstUJcGVFfVuSN9dim1XfEIPpex91HYtfU4nXYSpSH/yz5m+8HaAhVGVWX6Lj8uxyC+NYO/tgvDb1/fSnyCsYMcoA2" ] }, "ContentHeaders": { "Content-Length": [ "526" ], @@ -292,16 +292,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4c9d6f8e-50a6-4578-b1e9-5d8df91af26a" ], + "x-ms-correlation-request-id": [ "7e7032c2-c552-47f9-b524-0b990f4f626e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1159" ], - "x-ms-request-id": [ "4c9d6f8e-50a6-4578-b1e9-5d8df91af26a" ], - "x-ms-routing-request-id": [ "REDMOND:20220318T001328Z:4c9d6f8e-50a6-4578-b1e9-5d8df91af26a" ], + "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": [ "Fri, 18 Mar 2022 00:13:28 GMT" ], + "Date": [ "Mon, 21 Mar 2022 21:39:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvr3kiAcGSDuT8gRSKFCMlNxKKQX/HmuUXGYI5GtqJZDc0n8OnI1eUk4iu61NMlPom4NmafRqpyY5KdJQLTFswARZ4T3VUFfOhvc0JJ/99lLWqE8By1o9SEqQxL+BkOehCXup+15vwtyy7QnlpAnVI" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPILA5E+A18ejY7FuM9B1kA/JKuVM3OhpwIJ1P6kRZ0o/nXyTNXIjeuEKJn2wzpLfJ/ROCTph2v5iDvAvu6vyKRLCW2+66tdtYcwX+Z+gMhWDBtUB97aghas0vm8nzzDniRfFLveL8mB2SVAEXSpJ" ] }, "ContentHeaders": { "Content-Length": [ "0" ], From 31ff8af78f20e902c47079eaaa6e51579c391a1d Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Mon, 21 Mar 2022 15:23:16 -0700 Subject: [PATCH 28/34] Fix up Add-AzsPlatformImage recording for azure management endpoint. --- .../test/Add-AzsPlatformImage.Recording.json | 384 +++++++++--------- 1 file changed, 192 insertions(+), 192 deletions(-) diff --git a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json index 386697b9..e1ee75fc 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json @@ -6,8 +6,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1276" ], - "x-ms-client-request-id": [ "8d367123-89c8-436a-ab30-4b09016a0fa7" ], + "x-ms-unique-id": [ "1554" ], + "x-ms-client-request-id": [ "e215a483-fb5a-46e6-b109-f308bdefd532" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,16 +21,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "28f73a2a-3c24-484e-8194-59782db5ab61" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14035" ], - "x-ms-request-id": [ "28f73a2a-3c24-484e-8194-59782db5ab61" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213754Z:28f73a2a-3c24-484e-8194-59782db5ab61" ], + "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 21:37:53 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+1c+DKxhI2y73/V4IuHv4zze9Vhjw4eoAjZHU3kZQTy8+v8UiOMhYTOEjhIMsUqFvj3q9vp4jfHR/43hgWgo/kkkl+aH5zkXFM5zdUIdo62XkDborPOYkm5boDazpCsQxyVB3Bb4kjdByGOARiDP" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvA1+ORfBc7eJq7BiBXgXJKBKrqZqiyCUvzlxufOJtTC0c6QscNXLxTPAv9ySlaGcxPyv1gWLSnsjtJdxykIOdnpYGoZD1j56xx/j8AaN/AW/ocA5J4Tgy48ZvQlSKqUzuK9J1GqYr91AaRxfPWlBD" ] }, "ContentHeaders": { "Content-Length": [ "10742" ], @@ -48,8 +48,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1277" ], - "x-ms-client-request-id": [ "f83e9011-df98-4be4-ac48-94e9e1901cf5" ], + "x-ms-unique-id": [ "1555" ], + "x-ms-client-request-id": [ "d0188447-aa02-4fed-bfcc-cce7a3c4dd5c" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,16 +63,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "eaaa077c-0f9c-416b-856d-8a3b9ddbe40d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14034" ], - "x-ms-request-id": [ "eaaa077c-0f9c-416b-856d-8a3b9ddbe40d" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213754Z:eaaa077c-0f9c-416b-856d-8a3b9ddbe40d" ], + "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 21:37:53 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvopqd6xPm/RJ2AqascCZYmzU3avYbOhr4zl7eYfJnpbrUgG+dOYpbtsWE8sgmeCevULgiXjiCuFAqQuk5ZIKMrCmqAwDM0xuTSeaeblwxK5Fq+si50mIEz8s+Rdg5GEweD/VWQzKNhwje24/HX59S" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRve6NmQ1YFb8FvLu/DOxwDWHi7UAm1+V+ES//dCeHVWxDnIqJ+BxMKFYGFe+MgLNLJUmrMCepiFTrCq5rS5RubQ7MjtlVkIeCDUcjF/CqknDHjOQYzHZquSKfCwyvLWs+bWEIh6duqamnZJSm9Nyp/" ] }, "ContentHeaders": { "Content-Length": [ "10742" ], @@ -90,8 +90,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1278" ], - "x-ms-client-request-id": [ "2e439b57-ebf7-4247-a82c-3bec0f88c1d9" ], + "x-ms-unique-id": [ "1556" ], + "x-ms-client-request-id": [ "40e0b65b-e788-435d-bb85-61d381e66368" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,16 +105,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2234b76f-7f87-47df-b54e-7618725edcfd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14033" ], - "x-ms-request-id": [ "2234b76f-7f87-47df-b54e-7618725edcfd" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213754Z:2234b76f-7f87-47df-b54e-7618725edcfd" ], + "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 21:37:54 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoF6NXAbe2/TI3AApFfOWVuefl9Z7EzVO+c7AQqytJpvLt273OI05niQBGV5hwWtXkhhsPMHECx81Hif11SPwFljMMjmux9f1MvU9EQrEeXUlBHtju2oSZnGj4dv7TlT660qneNmpEUKcMuzGX0pu" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcUBNxqZ7o9If5KQxdAak2nwmVSLlG79MA8huxtA9LKKnS6T6h78HGkju3mSrFXu8hg9OqrEwdehMlRhG/VV47keaJ5rFtGnTQQHoXMwEaoQYF3Wres26L4hrCU/lC7NvLCkyXwusuVHPNl9u03HB" ] }, "ContentHeaders": { "Content-Length": [ "601" ], @@ -132,8 +132,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1279" ], - "x-ms-client-request-id": [ "57362985-7cab-460a-b6ee-e0aef01ac94d" ], + "x-ms-unique-id": [ "1557" ], + "x-ms-client-request-id": [ "9275f87c-c52d-474f-bae9-e9ac73720a06" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,16 +147,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8c7f47e7-e4f0-4602-bb5d-af6eb6a9d79f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14032" ], - "x-ms-request-id": [ "8c7f47e7-e4f0-4602-bb5d-af6eb6a9d79f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213754Z:8c7f47e7-e4f0-4602-bb5d-af6eb6a9d79f" ], + "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 21:37:54 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFxX4/a29o4zuhKPc1cJxFAMgLyeU5Jozf4/FJrMQiwH3n6Tfuh6gaJV0BiBWRF2whMWd6rPcsnOyMS9mq0yc2T6n1UW33oewU82Rp5eNZ3VP4RvDP9cYubCcxh0tPcniqIt8iwaM8UG9GJeD/y13" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTMDvPKHov8MNXF4pw6Ka/u3YEfSUtDiSgrkys2cIau9EaO6M9oSpKQuAo4LbvVjXR1XM9qE6ZHtgJAM74BTou2nT67MGxvaPP9suhLJpNWVAgcfIn11IvGaKKvnwALFFSmu4p6gCENKrkxt7uI6q" ] }, "ContentHeaders": { "Content-Length": [ "10742" ], @@ -174,8 +174,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1280" ], - "x-ms-client-request-id": [ "b7b2ad38-6f64-4d59-9b63-c62437dabcfb" ], + "x-ms-unique-id": [ "1558" ], + "x-ms-client-request-id": [ "1d9f4ece-c624-45b9-b3ec-9c02319c02c9" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -189,16 +189,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "050fdf93-1133-4350-b7cf-67586bb2031f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14031" ], - "x-ms-request-id": [ "050fdf93-1133-4350-b7cf-67586bb2031f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:050fdf93-1133-4350-b7cf-67586bb2031f" ], + "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 21:37:54 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvebC9RecAm1Sp2UmdnWJjLRAulwmAFZPw6yLFmjmWw017eKPK3kSnTKr4HXQC49Tpe8HspwicRcQpWiteQ8+4hK+k96/wAUY3NZL2pZHSjngpx1bxJjvJTXvrz9GiJhY3y2N068Lo7riPT0ghOojb" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUHE/rbNxW68qMQUpNb8QR2NFWSL9hrcIH4IpAcRfFNOLAM98FtsfpblWjtOnTGRW1CWbgB2Vypen7XVwAR/0QMG6+wPLdJFGADxwgBewTdB+RVcwE786fyj+LSG0jns5cK4JZZQhM4ymqFa7f1Hh" ] }, "ContentHeaders": { "Content-Length": [ "601" ], @@ -216,8 +216,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1281" ], - "x-ms-client-request-id": [ "7f71acf5-1831-40f4-95fe-39dd063127d5" ], + "x-ms-unique-id": [ "1559" ], + "x-ms-client-request-id": [ "4c0b5e74-29d5-41af-bc0f-a1a9fbf968ce" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -231,16 +231,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "deed6463-d538-4b5a-b3b1-9db70d31d427" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14030" ], - "x-ms-request-id": [ "deed6463-d538-4b5a-b3b1-9db70d31d427" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:deed6463-d538-4b5a-b3b1-9db70d31d427" ], + "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 21:37:54 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhU1YbI/IQyjUDR3qbkkxId/HDc7Fs+QTYwH6SmXMgFd/DJcbjIig4xWBvBKwqcbIfLBtktNP4ioXmjLNSQRPk1hoZ02fQ1e/m5YC4RxkBBI+G8e5DFzBL4YCOxuQqOxtKtEXvxXwd8BBsCB51wAC" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHbuPf/t5ratN6jAMcOSGIEmVYaG7fCmHGC9mtBP4mqcPlXToA+gbeCbehfdqZqdPrwmMjaicH6wYliHS1RWeEdOg+aHfAJEUBm0fq2gjhEDpjUbensDZyVeCR2+oDhYVfx+Kxqgqsip028I4v7Q0" ] }, "ContentHeaders": { "Content-Length": [ "893" ], @@ -258,8 +258,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1282" ], - "x-ms-client-request-id": [ "9e9d7659-5ef0-44fd-a377-f52d385735ee" ], + "x-ms-unique-id": [ "1560" ], + "x-ms-client-request-id": [ "5da5ab41-a2be-482e-b630-29eb276324d1" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -273,16 +273,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "039af90a-4975-481f-a8e4-576f6b520bfe" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14029" ], - "x-ms-request-id": [ "039af90a-4975-481f-a8e4-576f6b520bfe" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:039af90a-4975-481f-a8e4-576f6b520bfe" ], + "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 21:37:54 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrmK6aQBd1K/++211sC3culE+/eus0mE1n29cRTDFsWTr7HulS4mtXzput/01mYCjCMu/5j7c45WtZxqFb6mDU6tWEywSE7VsDekIYoOj3D2TjyyxYXQPjmen1eXBaHy7esbd/Hks0ymgICAnH8Qq" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvp0RKNKDzSxb6t4I3EFFpP3PM3SLRX2usP6eMgi+DfX7gHBp1fvz3I0VEpyV1/1talBUSwDIu82TRovU1f7XHh7GmLtFZ7jNCRrnRUdQr2+1f5d6E5EUOGyluSP4NJ4K519+b3ePLQ82ws8WP9qgX" ] }, "ContentHeaders": { "Content-Length": [ "895" ], @@ -300,8 +300,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1283" ], - "x-ms-client-request-id": [ "5104e393-3cbd-4dcd-9378-65d5a9818598" ], + "x-ms-unique-id": [ "1561" ], + "x-ms-client-request-id": [ "ef3b776b-c7e0-4f9c-b8ec-d704479029d7" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -315,16 +315,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "012bc71d-c8fd-44dd-a23e-9050dccaadec" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14028" ], - "x-ms-request-id": [ "012bc71d-c8fd-44dd-a23e-9050dccaadec" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:012bc71d-c8fd-44dd-a23e-9050dccaadec" ], + "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 21:37:55 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXqzqaM9TNqQ9kKjkD6VXoJ/qsCGXthq5SDqqLFYBWmZRn05F5qZKhwrzk2jjRQiFwIaE0Rnhu/CUJvFs1+7026FIyR04bSAhkdvuo7NiHqspdhNKVdsj0KLmzEid7T6eZIv212B1fVym1Wnaz+0G" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvfIsCEmjEgtd9clZ+kgeKQ2Xfz0Fk8mvIe1ltMC0ylfC9yZCFcWRGPsR9fFh/NRQc7yZS9yi8A4ExWlwAavU6oKvmbpETA3zknIvXgyJaGZ2S1CSh1W1KjXxah2di99a00h23M08tLY2fqcum6tN" ] }, "ContentHeaders": { "Content-Length": [ "1127" ], @@ -342,8 +342,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1284" ], - "x-ms-client-request-id": [ "4c43fc58-9aaa-4316-9965-bea835d13341" ], + "x-ms-unique-id": [ "1562" ], + "x-ms-client-request-id": [ "6ebd493d-ac9f-426c-8ff4-52623f1facfd" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -357,16 +357,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "02882386-b10d-48ed-80cf-137ae19ee06f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14027" ], - "x-ms-request-id": [ "02882386-b10d-48ed-80cf-137ae19ee06f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213755Z:02882386-b10d-48ed-80cf-137ae19ee06f" ], + "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 21:37:55 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDx7FGyE1mKfbOxAAhpPK6syLKdEavx+REbK0ZWSLkYKAhZuvS5SkvJrcv/G3JczPhKvWEL3Pd1xj2hZisNFytxd/PU8Lz7UYwBjaCJWPKjFouNyFgj8jg900B2II6nwRAmtlLVBZwaD2V6qlekkD" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvT63biW+SzpW+Pe8cpwVLRj2yYcFzrWPJBQTri7UTA0/ybSdBAhAF4DrQHXzpWQyX6WWHK5ZiT6ZxDIHmFkZosl6lVO66IlNWa1XT+jOx/AhnwUVdYt+0/y6qtD/1d38aVEZDqYB9DP7tBbI3/8Fn" ] }, "ContentHeaders": { "Content-Length": [ "1178" ], @@ -384,8 +384,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1285" ], - "x-ms-client-request-id": [ "10e30b7c-bb4f-4660-8b3a-6bb72bbd0f27" ], + "x-ms-unique-id": [ "1563" ], + "x-ms-client-request-id": [ "4e8b337b-96e8-4b33-9511-1928b9be644f" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -399,16 +399,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "eb6f7488-55ca-4476-b777-e6dc42c3c936" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14026" ], - "x-ms-request-id": [ "eb6f7488-55ca-4476-b777-e6dc42c3c936" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:eb6f7488-55ca-4476-b777-e6dc42c3c936" ], + "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 21:37:55 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcJFi/ov4kx1PUOeUDNbmJ2sTjm49Jj9LzeBUTGI/kl8bh+Kk/TEmz0jf7650SfCxPs2DJHBGNpZarPljXGSad2zhuIPKCxaSoLZXf+zPHFnVmVIUn2FIa58w+ekq67aVQvyOfxvBRDHHnJh9ygCJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4WXr3AnwII4Oc9dswFQN6aY+EkyZr8p+9wuBURo2RqWJNTQc6x7vuqf/gY/jWwpjt9jzS2d+w4T05T+G5JFILvmsBfBIs3T7RLlkYqW1NygGiCVJPOzZM0LEH4QPcJFrN/ik3weUumXQLAi6jjI3" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -426,8 +426,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1286" ], - "x-ms-client-request-id": [ "89ac7b2f-66a2-4903-b296-d04ad8d6bd12" ], + "x-ms-unique-id": [ "1564" ], + "x-ms-client-request-id": [ "185a3073-4f60-4770-aae7-905dbee9438c" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -441,16 +441,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e7672033-1b88-423e-944c-73544a59ba64" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14025" ], - "x-ms-request-id": [ "e7672033-1b88-423e-944c-73544a59ba64" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:e7672033-1b88-423e-944c-73544a59ba64" ], + "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 21:37:55 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdUaVc9xXyMBCBme0akLSaPelrgd45MbtJBfCt3mj4orSe0byCJV2PF+FqC9ieNJGQy111dZG2KPrgDHWrmQPupBz910+OD1Za+aIkD5fya4+qDEio9iRq1TjarMBw1iwQDjeF+pgYTmMc5IWpzxr" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZUFFGf/3LG+ePV6TRMbDFIvscECW/jRp/YE/ovIME615gSKJyBbkLx8sXyGg5XmnnanxPIn9LP4R5ZjGf3Yq8kt/95Y2DSvTGk46cCzIoXWLYJye8pirRi6fIW9sKOVoFifNEdMJavGk/dvlPvo5" ] }, "ContentHeaders": { "Content-Length": [ "615" ], @@ -468,8 +468,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1287" ], - "x-ms-client-request-id": [ "fff14391-f7e9-466c-9a12-1c63b6977a96" ], + "x-ms-unique-id": [ "1565" ], + "x-ms-client-request-id": [ "f0ac5db7-e95a-4bbe-8f7a-3813556958fb" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -483,16 +483,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6425a456-e96a-4f35-bd34-e4b717a4b90f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14024" ], - "x-ms-request-id": [ "6425a456-e96a-4f35-bd34-e4b717a4b90f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:6425a456-e96a-4f35-bd34-e4b717a4b90f" ], + "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 21:37:55 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvR0XYimeTQYxRnEX1+C3aKCOUJsuJr5XUV3JD8tdy+1I1NVC7ApOGtZnfQ5Dhz8AM6t8CkE8rLFixco3WfzB74Ba5zZORdcpldPSUpPI3cdf1DEC0BpzApUNHHXsQcVV55/K1OcM+ci2HudqNdiQ4" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfvB29M1fWcnlrhFBPa/9hABsGWqAfeT0E4O0h2+y/Rw7/rLM73DG3gf2YZaUFkZyAUSZi7F/VzJKX10iuOX4ZAAk4Nb1n8YBvG9PE6VE8y7XTmZ0aXwE64w20XMrj6Ulxyy0722SSFY/c4HOkHCm" ] }, "ContentHeaders": { "Content-Length": [ "999" ], @@ -510,8 +510,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1288" ], - "x-ms-client-request-id": [ "20af3e35-aa98-4aee-8fb0-8578b9e5b2be" ], + "x-ms-unique-id": [ "1566" ], + "x-ms-client-request-id": [ "cad1be76-93d7-41f7-a995-e3491df5ec81" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -525,16 +525,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "341d9272-bd03-4bf9-96c2-2dcfb70850cc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14023" ], - "x-ms-request-id": [ "341d9272-bd03-4bf9-96c2-2dcfb70850cc" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:341d9272-bd03-4bf9-96c2-2dcfb70850cc" ], + "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 21:37:56 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6nKME+sTaDIpogg7YfiLMuB7Ex0BUNMUGxYS/lbI2CGG0YuERKpYl9uM6laYxzqakg4vqQT7w4bMHcTDcT8GMLBxaTVXzlBF89hUHgYnd3pvCvHVVmjkL6hS/ASLlqB3H2ilb5bjOsTNYSqrU5P/" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWyuCVKbZWyHLLLOuc3jJ4VltKGU89Oq+Bvzntxu0g29b5YJmYEJe+f7vi6HjsuceyXriWdP7RMKqETyBSpx7nmm6W1k302QDmRKsAMWlgKQX4rUxDuF2nOAViImRntxvoNOb4VHR9Ou34zlQc0E4" ] }, "ContentHeaders": { "Content-Length": [ "989" ], @@ -552,8 +552,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1289" ], - "x-ms-client-request-id": [ "055ec986-89b2-494e-bd50-47deaad46b8e" ], + "x-ms-unique-id": [ "1567" ], + "x-ms-client-request-id": [ "c5e931f5-6e58-4631-943e-0184ae321f03" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -567,16 +567,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3d96fb51-1097-4451-a629-e17aefb0c308" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14022" ], - "x-ms-request-id": [ "3d96fb51-1097-4451-a629-e17aefb0c308" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213756Z:3d96fb51-1097-4451-a629-e17aefb0c308" ], + "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 21:37:56 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOeuUueOeJ6a/rU5/c83XYz3W+n0fQVpS8SJTxUH3uNFPFIJscA5rpX1Kc0OWgCqCE97z49HssJIzTTgnEWFJtpUuK53YnlDq0HvyigG9cvLOUpxZXcY+BZYYOL3DgQo9Uk4n7qJozAhbtQpp0UL8" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi30+QvySLTr90W7VnyO5ia/bI5b9FxGucAo6IVZ9Bv29CEtM0Ouw8M/PaAvbKomBiOV2VGairxi22Nn3DaITl6vYoOgNotnMMfWupaO4j7XpKrCcizSRLhl4EUpDWkATz+MGsnhJ5QvzGZbE4ae/" ] }, "ContentHeaders": { "Content-Length": [ "574" ], @@ -594,8 +594,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1290" ], - "x-ms-client-request-id": [ "162d57db-0177-45e7-8072-cedebdfe8b22" ], + "x-ms-unique-id": [ "1568" ], + "x-ms-client-request-id": [ "f345936d-e329-48db-8e98-907584f00350" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -609,16 +609,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "65a260af-ebb9-440b-a887-3d712598720c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14021" ], - "x-ms-request-id": [ "65a260af-ebb9-440b-a887-3d712598720c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213757Z:65a260af-ebb9-440b-a887-3d712598720c" ], + "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 21:37:57 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWNbgFs0r5GLYPDxQ6enyVxywBT1Wde6XtsSw5ZcHTEfJ0Fxnr+3MZbFa1X8VER2ZRNpF+tai8RPJQpvfzRjQF9oYBUeIVFw960O06aiGSiorxbb/xSjXY942iXn+jquTigEiitgxi7mFZRPV1FpT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmfhhGIZOS2paMpbN3TBKhZi3wwO9HWjpXoxMKCO/2zwzOaNkt2IzPZW+4OMtGLOWQS67Yy93tCWvBy/k9tMWLY424KQpZRkemUOYdeiT4YRn0G8VcHrAEIEzqRtzAqQt+SQlUOYJpCPTF+jooWE5" ] }, "ContentHeaders": { "Content-Length": [ "574" ], @@ -636,8 +636,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1291" ], - "x-ms-client-request-id": [ "c1bbf606-f982-48a2-83c4-4155308f79f5" ], + "x-ms-unique-id": [ "1569" ], + "x-ms-client-request-id": [ "5e1579d7-31c7-4728-a525-ca21fc3b9d33" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -651,16 +651,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f0bd82e9-a1c3-4a6f-b468-a1194a105646" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14020" ], - "x-ms-request-id": [ "f0bd82e9-a1c3-4a6f-b468-a1194a105646" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213758Z:f0bd82e9-a1c3-4a6f-b468-a1194a105646" ], + "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 21:37:57 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4KcYsceFUnzotaPofSzjKyNxAmML+AhUHlEL2NPhAhqJrVaVJ13X31Zqd+dmmxrtjrvzxSYlOMMTUJuErjQc5lhvcfRYPOB8rcbWglddIcOww660hBZao381XWV2NCrfthUWfyOnZFTrHjZ+fKsl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdSk1lAIZbpOOzdRjYsA7MCAB3h8vxqN6oH+IVvzF9plgWITF+B8P/HsHnkHNiYHqefoltIkNCUkzZDVRbkK968M6o3z1wZPA1YBCSJUX9Zoe8tkM6OKeCLtSWYEUV5NHn3Klq2LhawfGWWT9FYdG" ] }, "ContentHeaders": { "Content-Length": [ "574" ], @@ -678,8 +678,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1292" ], - "x-ms-client-request-id": [ "bf47e1d8-c758-42dd-bcb8-7ca754f1e4a0" ], + "x-ms-unique-id": [ "1570" ], + "x-ms-client-request-id": [ "944a5f02-6c2f-4044-b85c-39200d9615e6" ], "CommandName": [ "Get-AzsPlatformImage" ], "FullCommandName": [ "Get-AzsPlatformImage_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -693,16 +693,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1d6f18ff-cf42-44d7-a354-7876c7672983" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14019" ], - "x-ms-request-id": [ "1d6f18ff-cf42-44d7-a354-7876c7672983" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213758Z:1d6f18ff-cf42-44d7-a354-7876c7672983" ], + "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 21:37:57 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:41 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOk8iRlcik2NZ3v0BnsHE5z6f1B2n5EPo7lHlkwJydlfWdANw7Tf/WRlhKYxNZUZCetgipsf4+dlpiROvKlyOPzN1I2pB40t8FNeWN4Ewdag1Rs/EsUlonqv/1LQtXWP7RHKCxvaXZYhK84S/SEDM" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnHyEX/lyX63QafJ9KTMLzMCfWm6RE7TiBMltEYcnhcbSE5EtJjVJVCzJhgPwnHqLq1L8Nr1cWwrPg93GsYYa5tg5XO8k6kQ+EVLwZF1xnANNQ1lSI7NvZoZf5IxmoU7psEGMpkU2csJyK2iFoL7a" ] }, "ContentHeaders": { "Content-Length": [ "1131" ], @@ -730,16 +730,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c7a5a795-64cc-4600-af2f-11294c094b0a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1063" ], - "x-ms-request-id": [ "c7a5a795-64cc-4600-af2f-11294c094b0a" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213759Z:c7a5a795-64cc-4600-af2f-11294c094b0a" ], + "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 21:37:59 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:14:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviSDPuZOsdeA+sLVomQI1phzrfePXPkAd1ppzxi8vSBcU2LnlHa/eqyWXPiEk3X++qQyPOw5m/gnmdjvr9X3nlh+dUiZ2OcIBm0goHw36gblaD0DwmGOoH8/03dcvDtdgV8wbhlCuG/BL5QYS5wXl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv79ZjeQGOHNd9Pp4Xb15Zz8oUfGLnSNFd1vMyAd3lGjEDfhJxS4N9jnict2wDsQ8Ck/N5IXbo2AWP4YREiruCKARJNEQNlQWhnoMgTkg7ssW4vz6BPXuFIs051BAPas0exR02jMLxFLBd1yzvVkcY" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -750,7 +750,7 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", @@ -758,8 +758,8 @@ "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1294" ], - "x-ms-client-request-id": [ "b151d7b4-0024-4fdb-a25b-76025ebad228" ], + "x-ms-unique-id": [ "1572" ], + "x-ms-client-request-id": [ "a6e90a13-7bf7-4bc2-b3e5-3420d1b94348" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -772,16 +772,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "17d65d25-8d9e-490b-b1e3-fd1d1070833e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14018" ], - "x-ms-request-id": [ "17d65d25-8d9e-490b-b1e3-fd1d1070833e" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213829Z:17d65d25-8d9e-490b-b1e3-fd1d1070833e" ], + "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 21:38:29 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:15:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0e7yzkS7u7bddCmcWJj3Mlh4edbL0dHwGBkkoq8+riiAb07EGIcE+tRzw1xTIkCSfPZr1r2/S3yk2jQBTj/vJLMxT5KqVwYl8cC5CJWQndgQTdbmyNBhTUCJ/aoq2+FnjGXD2kQL6qfcMwNR+GsF" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjjDULoS75u681faAya4aWnH3VED1Yxio8CXdNEBfVwLSVEMnEKZITiD60C+pQyWsnWplKc+qgsWKEcjc0rx5muq6nljGV+Mra5Pn0EeCC8U5VdMPDf56FHTV2h0NN2ArY6u7Og1HpgIEtirY9DId" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -792,7 +792,7 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", @@ -800,8 +800,8 @@ "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1295" ], - "x-ms-client-request-id": [ "b151d7b4-0024-4fdb-a25b-76025ebad228" ], + "x-ms-unique-id": [ "1573" ], + "x-ms-client-request-id": [ "a6e90a13-7bf7-4bc2-b3e5-3420d1b94348" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -814,16 +814,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d885ff38-f9f8-4f46-988d-718ee06cda28" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14017" ], - "x-ms-request-id": [ "d885ff38-f9f8-4f46-988d-718ee06cda28" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213829Z:d885ff38-f9f8-4f46-988d-718ee06cda28" ], + "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 21:38:29 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:15:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3zH35bvQ1cHxeAdizT7j8TQ54ss6s4nfqWNLkn76aNj+OraX7fjgqvWSzRJgd2p6psXQ7LG3g4mh8blKel3vHtmz8kDM7DQwE5PRTVZcUZK5/z0jHmBA2RPhCecLdz8UyLLToA6FhX5OGf7gat6Z" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5E4xEJRTajVjjJZ9g2wNOgpTMiT31/VAS609bwae/oXgyVqMSTiNSw05BMfXwNOV7LW/6Ekbpl7shk2tvdzonmcNs4vl7qf45Fx0b7oRnxoKLfja01EKnBUKF4vSReYv1UGBI1/4xeq0gqenJq/b" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -851,16 +851,16 @@ "StatusCode": 201, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "53362489-43d2-4f6c-b86f-3a1a6a73fe13" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1062" ], - "x-ms-request-id": [ "53362489-43d2-4f6c-b86f-3a1a6a73fe13" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213830Z:53362489-43d2-4f6c-b86f-3a1a6a73fe13" ], + "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 21:38:29 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:15:15 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzSEd0CB5sX1CNwOSaHYlBqpFpavAgb4i8gfYsfu5HL8SQJEplVtPU4YpkyrlheO/wajjqkUY+DZpNSudEsdeDEUe1HnkGv37GqrbHgnLArm7EC3vfo1AJiOGQ3s/Quifed8+naRb3+sQKpUqeveg" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAdArx/5wHpYFzR7yT7iqY0sazHt0ld29PfjGdin8YBFFix8QqVC90CPMPgJC8CkFOJ9wCTg9RQBvH7pMsAW2f2gulzOv4qayjvWcfp52nHAROT5K/nPzetuov/7pFjlWyOZ5IBFt/HgkUeGYLNPT" ] }, "ContentHeaders": { "Content-Length": [ "577" ], @@ -871,7 +871,7 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", @@ -879,8 +879,8 @@ "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1297" ], - "x-ms-client-request-id": [ "5398e9af-0c30-482a-a7b7-99eea6b2919e" ], + "x-ms-unique-id": [ "1575" ], + "x-ms-client-request-id": [ "96713ea3-1b48-47dc-8e6b-3f06634f8ac6" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -893,16 +893,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "26b523c7-bfa3-4ba7-8445-3f4ef9cf49b4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14016" ], - "x-ms-request-id": [ "26b523c7-bfa3-4ba7-8445-3f4ef9cf49b4" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213900Z:26b523c7-bfa3-4ba7-8445-3f4ef9cf49b4" ], + "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 21:39:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:15:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9a3NlkyEJg1t+j8RvYSkl9+SwNe7Rp+xBEFKCQHbgQBI4R1oJvGTKOsffyZZj0snMykoOB48HFZlhSm0gODkQgC8nX/2kO/CpWU3YA/klsVIUtrry5o8xE9tWT4FgX7xTMLM5ULzeRl7JyyUsbtT" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFrTLH5dIG6/brlKJXfE041lQlOXwAuSAXEeQJBhzFVAyp/XUG38OrAyOy15Zfafz2dU3wXa8xo/hDJkgne5GQl/GHONnT6e5hIylVPsSKr4liPQLpclMRCqkyYDsylmvHBKQ8ybEWqfybhc/jpX/" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -913,7 +913,7 @@ "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", @@ -921,8 +921,8 @@ "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1298" ], - "x-ms-client-request-id": [ "5398e9af-0c30-482a-a7b7-99eea6b2919e" ], + "x-ms-unique-id": [ "1576" ], + "x-ms-client-request-id": [ "96713ea3-1b48-47dc-8e6b-3f06634f8ac6" ], "CommandName": [ "Add-AzsPlatformImage" ], "FullCommandName": [ "Add-AzsPlatformImage_CreateExpanded" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -935,16 +935,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5353963b-cd8b-40f8-adf4-e71fddcfa877" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "14015" ], - "x-ms-request-id": [ "5353963b-cd8b-40f8-adf4-e71fddcfa877" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213900Z:5353963b-cd8b-40f8-adf4-e71fddcfa877" ], + "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 21:39:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:15:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBWPlZI2ABthilPMxl1ocA4eqJvlxsVVFCno+Ku6z7X62dE45KIdJEQ9vSs4XOTOQbvvM9Tkvw9E6cGFYzhTqXMBqzFI7Hnxn4jwAcTDPIH4HWRNs5pMnTsGCeWfZlNmD36PVpV+w5ox5GDHn2voV" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE0EcXByGQBlIqQL9IcoBll8HZU/y/vuN8HEI71GSzHRG7wvnUKfZ2j0jgajGIKalp1gq11IwzRa/OcW8vW74V4YPyjf+Sv27JXvIoGxOhzjwVJ9GQqk9CZ/8R0LYyGnYbnPcdY3Y5VLnri3+/4Fb" ] }, "ContentHeaders": { "Content-Length": [ "578" ], @@ -962,8 +962,8 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1299" ], - "x-ms-client-request-id": [ "1fdff896-696d-452a-a756-cd71e3a166df" ], + "x-ms-unique-id": [ "1577" ], + "x-ms-client-request-id": [ "83a0074b-44cd-465a-bac3-9d29bffad81f" ], "CommandName": [ "Remove-AzsPlatformImage" ], "FullCommandName": [ "Remove-AzsPlatformImage_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -977,16 +977,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4d2152e0-351c-47af-9e6d-987cf4a1ee10" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14889" ], - "x-ms-request-id": [ "4d2152e0-351c-47af-9e6d-987cf4a1ee10" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213901Z:4d2152e0-351c-47af-9e6d-987cf4a1ee10" ], + "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 21:39:00 GMT" ], + "Date": [ "Mon, 21 Mar 2022 22:15:45 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY7M8A2KY4mVMlEfrUeaxrWgY7+RZfzDkD+nE+OCQgSAyT+zMZJVhR2hp966c03aYJ/q+bGJ7saKwLVqTcQ7l88yFKPJJCdt8WSYbm7tukdapnaXKKGlP+X3upiPlsVWofj9WXJPsTe3xz8p6ho7G" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvj6fBTb5keqf0My0biQXfAcuXy9y7wMK04eWxsQt4xQTxgJ6tH/8WnDpUgJSz7FhjEb1scRk2mj24NMTNsTGtmuv0LqZfgH3CBwmH9ub2OksQWH1YWJ6QrQHItKcrbQdim2UPsPjCv1pkq5jJT45G" ] }, "ContentHeaders": { "Content-Length": [ "0" ], From 74d972188dc252a1d738328cd612c7ee50df7b0f Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Wed, 23 Mar 2022 15:15:45 -0700 Subject: [PATCH 29/34] Replacing local guid value for remote guid value in recording jsons. --- .../test/Add-AzsPlatformImage.Recording.json | 142 +- .../test/Add-AzsVMExtension.Recording.json | 118 +- ...puteUserSubscriptionFeature.Recording.json | 116 +- ...puteUserSubscriptionFeature.Recording.json | 98 +- .../test/Get-AzsComputeFeature.Recording.json | 6 +- .../test/Get-AzsComputeQuota.Recording.json | 2790 ++++++++--------- .../Get-AzsComputeScaleUnit.Recording.json | 4 +- .../test/Get-AzsDisk.Recording.json | 40 +- .../Get-AzsDiskMigrationJob.Recording.json | 24 +- .../New-AzsDiskMigrationJob.Recording.json | 12 +- .../Stop-AzsDiskMigrationJob.Recording.json | 18 +- ...ComputeGlobalFeatureSetting.Recording.json | 40 +- 12 files changed, 1740 insertions(+), 1668 deletions(-) diff --git a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json index e1ee75fc..961bc3ba 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzsPlatformImage+[NoContext]+TestListPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": { @@ -37,14 +37,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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]+TestGetPlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": { @@ -79,14 +79,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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]+TestGetPlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -121,14 +121,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage?api-version=2015-12-01-preview+1": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": { @@ -163,14 +163,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}},{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -205,14 +205,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -247,14 +247,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -289,14 +289,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/CRP/offers/TestImage/skus/Dynamic/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/CRP/offers/TestImage/skus/Dynamic/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -331,14 +331,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -373,14 +373,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/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/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -415,14 +415,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestGetAllPlatformImages+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -457,14 +457,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -499,14 +499,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -541,14 +541,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/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/travist/offers/travist/skus/travist/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -583,14 +583,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.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/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -625,14 +625,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.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/platformImage/publishers/travist/offers/travist/skus/travist/versions/1.0.2?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -667,14 +667,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.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/platformImage/publishers/Ubuntu/offers/Desktop/skus/Enterprise/versions/1.1.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -709,14 +709,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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]+TestCreatePlatformImage+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", + "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -746,14 +746,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/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/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -788,14 +788,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreatePlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/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/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -830,14 +830,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", + "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -867,14 +867,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Creating\"}}", + "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Creating\"}}", "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.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/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -909,14 +909,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.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/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -951,14 +951,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Succeeded\"}}", "isContentBase64": false } }, - "Get-AzsPlatformImage+[NoContext]+TestCreateAndDeletePlatformImage+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.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/platformImage/publishers/MicrosoftCrpTeam/offers/CrpPester/skus/CrpPester/versions/1.0.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { diff --git a/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json index 3e0b3b96..43f6f75c 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsVMExtension.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzsVMExtension+[NoContext]+TestListVMExtensions+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": { @@ -37,14 +37,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "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]+TestGetVMExtension+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": { @@ -79,14 +79,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension?api-version=2015-12-01-preview+1": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": { @@ -121,14 +121,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}]", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview+2": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/BGInfo/versions/2.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.Compute/types/BGInfo/versions/2.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -163,14 +163,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -205,14 +205,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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.Azure.Diagnostics/types/LinuxDiagnostic/versions/3.0.121?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -247,14 +247,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -289,14 +289,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -331,14 +331,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/CustomScriptExtension/versions/1.10.13.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.Compute/types/CustomScriptExtension/versions/1.10.13.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -373,14 +373,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/JsonADDomainExtension/versions/1.3.7.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.Compute/types/JsonADDomainExtension/versions/1.3.7.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -415,14 +415,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.Compute/types/VMAccessAgent/versions/2.4.9.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.Compute/types/VMAccessAgent/versions/2.4.9.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -457,14 +457,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -499,14 +499,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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", + "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": { @@ -541,14 +541,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/AmdGpuDriverWindows/versions/1.0.4.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/AmdGpuDriverWindows/versions/1.0.4.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -583,14 +583,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.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.HpcCompute/types/NvidiaGpuDriverLinux/versions/1.3.1.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -625,14 +625,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.HpcCompute/types/NvidiaGpuDriverWindows/versions/1.3.2.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/NvidiaGpuDriverWindows/versions/1.3.2.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -667,14 +667,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft.OSTCExtensions/types/VMAccessForLinux/versions/1.5.11.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.OSTCExtensions/types/VMAccessForLinux/versions/1.5.11.1?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -709,14 +709,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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.Powershell/types/DSC/versions/2.77.0.0?api-version=2015-12-01-preview", "Content": null, "isContentBase64": false, "Headers": { @@ -751,14 +751,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/artifactTypes/VMExtension/publishers/Microsoft/types/MicroExtension/versions/0.1.0?api-version=2015-12-01-preview", + "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": { @@ -788,14 +788,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": { diff --git a/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json index c7c0aea8..c3b990c0 100644 --- a/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Disable-AzsComputeUserSubscriptionFeature.Recording.json @@ -1,13 +1,13 @@ { - "Disable-AzsComputeUserSubscriptionFeature+[NoContext]+TestDisableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": [ "1320" ], - "x-ms-client-request-id": [ "e40c33db-8505-402b-bf90-f3b7d6c3f6eb" ], + "x-ms-unique-id": [ "1966" ], + "x-ms-client-request-id": [ "8c2a79bf-9f98-4f90-9829-f59705c74ba5" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,35 +21,107 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9a70f4f4-48ec-4fa9-98ba-cae116130825" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13996" ], - "x-ms-request-id": [ "9a70f4f4-48ec-4fa9-98ba-cae116130825" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:9a70f4f4-48ec-4fa9-98ba-cae116130825" ], + "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": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk8KjrFN5OO4WfFOeDNyEqS0jWrDwrMJXBBcz7NvdnpOhd2EJzb7XYrOUlEnqm3EM8q48lcHOYr733y3bmHtNWpxKOTcOhvaNwGsz9nds/jqGujzMjbDyFP/wrzpeSX/LcoHOXVCokolY8PWLvIVJ" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+4": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": [ "1321" ], - "x-ms-client-request-id": [ "3dfd4f59-3d59-464a-bba9-c1f1c33e5de5" ], + "x-ms-unique-id": [ "1969" ], + "x-ms-client-request-id": [ "bbceb1b2-7a5f-4ea3-afea-0116dabf48ec" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,23 +135,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8f386029-5105-415b-840d-06942f16de5b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13995" ], - "x-ms-request-id": [ "8f386029-5105-415b-840d-06942f16de5b" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:8f386029-5105-415b-840d-06942f16de5b" ], + "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": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdza3Z7sk/bxgDsQQkUXb0vH7wJe7LOZ5NKoRORwDKz1hVUtXjyI/aodXIEYHM/3weHKOXgobChHr7xK2Etg10MBaykswPu8agZtt3LtWFkLx5kIvGrgdRS03hIFwWXZl7oOXN90/fpm8JlPUD1gT" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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 } } diff --git a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json index 77351076..2ed2b948 100644 --- a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json @@ -1,13 +1,13 @@ { - "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": [ "1322" ], - "x-ms-client-request-id": [ "581c72a4-0018-40b6-b470-dd1254684f98" ], + "x-ms-unique-id": [ "1970" ], + "x-ms-client-request-id": [ "10ab1aa7-9fa6-445c-af7a-96ef804629d0" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,30 +21,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "85e2dba8-b7eb-42e7-adf9-85c3366c5b9c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13994" ], - "x-ms-request-id": [ "85e2dba8-b7eb-42e7-adf9-85c3366c5b9c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:85e2dba8-b7eb-42e7-adf9-85c3366c5b9c" ], + "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": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcbkCqZa2LaaYWjjxW9dkRXukdW5lbr5MESW9nPWkVVsp55HjRhp6OJycu7+VAZDNL6mpNZIl5nyjmaCoesoS2FRz6nQAoB0kCH/u989rhy0NnwvfEI7p9+wqUoH2JDhop/WS9J15Nfy9qFdD3tNY" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/enableTenantSubscriptionFeature?api-version=2020-11-01+2": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/enableTenantSubscriptionFeature?api-version=2020-11-01", + "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": { @@ -58,16 +58,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d90a2bff-1b63-44b1-ba32-b0d69899b39d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1165" ], - "x-ms-request-id": [ "d90a2bff-1b63-44b1-ba32-b0d69899b39d" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:d90a2bff-1b63-44b1-ba32-b0d69899b39d" ], + "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": [ "Mon, 21 Mar 2022 21:39:07 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxWwod5otuGGhfq8jl7WmP2YEMR95v+dB5XHdOStfYEDHhDxDBZxuqZy2sMTYKTTP1jceKHLZBVErDvmjPcnmxST26wFXgUDNsLwUUS9S8d6V+43Zss6ET5heyssCslEl00GrBEscLwfKh7051khh" ] + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARulEyBzjZfTzSkZLATPfEZm2p+lZ0vFE1x7kKQcj2Qcu0cfsqvbtv4Vh/XPk2QQkwz1O7lvw+GMUpSFybJSYM3GAFBv6giHRDPNnPYiKVXyttXToCky8BUvKkjvit/jc3aX37PmUh7CRJaHoJAEyU=" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -77,15 +77,15 @@ "isContentBase64": false } }, - "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+3": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": [ "1324" ], - "x-ms-client-request-id": [ "93cfb827-eb35-4c2c-8df1-1ae7e34e6bfd" ], + "x-ms-unique-id": [ "1972" ], + "x-ms-client-request-id": [ "fd4edbe6-e500-44fb-a449-d8d37aac5e1c" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -99,30 +99,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "289ea3d6-9444-40a0-aee3-c149b4d6d16b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13993" ], - "x-ms-request-id": [ "289ea3d6-9444-40a0-aee3-c149b4d6d16b" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213908Z:289ea3d6-9444-40a0-aee3-c149b4d6d16b" ], + "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": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:17 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvooqOFOKW4Jq9iExZbujnvaze4PbxAwiQaHcDlyBwyO4ibT3TOq5E0R24ZuZuqsLYQzrrIvv4Oi/0SqQMywZRdlnoQxpnY8AEOSm66F4hF3eFe7hQuhSbYTPXwO8JT6Lpk+cWKFz8W39YHITocvX1" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\",\"4e1684d1-fc6f-42f4-8eb5-e7f3ae1c81aa\"]}}", + "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\",\"4e1684d1-fc6f-42f4-8eb5-e7f3ae1c81aa\"]}}", "isContentBase64": false } }, - "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$POST+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/disableTenantSubscriptionFeature?api-version=2020-11-01+4": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/disableTenantSubscriptionFeature?api-version=2020-11-01", + "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": { @@ -136,16 +136,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "61303759-1c2a-4946-82e5-89436db3b871" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1164" ], - "x-ms-request-id": [ "61303759-1c2a-4946-82e5-89436db3b871" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213909Z:61303759-1c2a-4946-82e5-89436db3b871" ], + "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": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvH/oaU0xQWc+R98ULsmORJr5WpnonFBGDiWyIFB19NmfvVSPrqKEaMTrhFOiCL48Hgk6FuBhCAXavqcgTTFwy0w/Hw37D7jDciI2L10EQ6b8lo6MwDDelcQMLgfQgNUN6i9SvpIX9a0xWuoMszPh" ] + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuNdACYHniO+Sr8SExfhS3UgMo0LCXSoPLRuF66lk+aZW19Mt90xTXav7cAT6VmUdKGh/oluVYK6NFPVWRqxwA08INhlTbh7xM/txv0ZjJrTuYqKljLn10Q2P2djLRp0rURYCkeY8iO+5st6CfiZA=" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -155,15 +155,15 @@ "isContentBase64": false } }, - "Enable-AzsComputeUserSubscriptionFeature+[NoContext]+TestEnableComputeUserSubscriptionFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+5": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": [ "1326" ], - "x-ms-client-request-id": [ "5deba71e-0a15-4bc8-90e0-3d52240c34e5" ], + "x-ms-unique-id": [ "1974" ], + "x-ms-client-request-id": [ "a1dc1a4b-ab8b-4bab-a5fb-f6417395e61f" ], "CommandName": [ "Get-AzsComputeFeature" ], "FullCommandName": [ "Get-AzsComputeFeature_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -177,23 +177,23 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1ca65204-3cde-4f91-84f9-82e88d42200f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13992" ], - "x-ms-request-id": [ "1ca65204-3cde-4f91-84f9-82e88d42200f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213909Z:1ca65204-3cde-4f91-84f9-82e88d42200f" ], + "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": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBfk4+4B6dE6r0PCuafwObE6Mvmcqy0Ts/nVwYc2i/cICT/feYqaHIgJKC2D8b7LTl5wWnDwAE1ZC3wQVIvkd5nAc13GrF6PICr/HEni2h8cw+ZaXnM+/BOtaS7O4RWNui1SSnY+AdV23LppNTMou" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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 } } diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json index b0335800..afb35b90 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeFeature.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzsComputeFeature+[NoContext]+TestGetComputeFeature+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": { @@ -37,7 +37,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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 } } diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json index d1ee4997..e1396f6a 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeQuota.Recording.json @@ -1,13 +1,13 @@ { - "Quota+[NoContext]+TestListQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": [ "1328" ], - "x-ms-client-request-id": [ "8ded862e-05fd-43c6-ab43-9f7b15d6a0c7" ], + "x-ms-unique-id": [ "1975" ], + "x-ms-client-request-id": [ "21763f2c-6139-45e4-b99f-fb73ec6eea86" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -21,35 +21,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4ad64aa7-a494-45ef-9921-57e506dc98d0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13990" ], - "x-ms-request-id": [ "4ad64aa7-a494-45ef-9921-57e506dc98d0" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213909Z:4ad64aa7-a494-45ef-9921-57e506dc98d0" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:08 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:18 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGd2dUcOyT4JwrjGA4mbXlk7qVpUopCMRf2969ZjLRoZjPTxoZAGKFkF0bD20xWPNDISzpq/13vZp0TL1hFpr4ZbV5D7/isIo+556Ssy1oFxk+X+QLc9PFjYwRI3dhTVy3KacQVZEiHK0/IjOuRFM" ] + "WWW-Authenticate": [ "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARutrmrwVleQE1OGp4iq60wiiMxSg4BtljXLV3D4AnVeoZ33/k+fn9jatOghtC4/McmOZ6uNMgSrOFnUC1+zZrZNydJAiJg/evNJQCZAjas6Yyl5KrEVlk72yNrL94V1n7wY9qGVVD5XZl/AMtzRpI=" ] }, "ContentHeaders": { "Content-Length": [ "44189" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}]}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": [ "1329" ], - "x-ms-client-request-id": [ "cbfec1e0-2e28-4a25-908c-8824a73d60fd" ], + "x-ms-unique-id": [ "1976" ], + "x-ms-client-request-id": [ "d534f26d-5ddd-4b98-b7e0-7e93fdaa70f4" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -63,35 +63,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "65a6593d-9611-4601-bc35-ec88e284e6c9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13989" ], - "x-ms-request-id": [ "65a6593d-9611-4601-bc35-ec88e284e6c9" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:65a6593d-9611-4601-bc35-ec88e284e6c9" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRva6rP1acNGoqqxtW4HoGAkW8zkKyuKhYcRIhrmjALCtqWhW0vD0z8nY6yl6l6BhT42n+gT5lU8LfmTOT9o1cIhM1Lbd3sGx273wm1ucSAtH0eYJ2mHH866fjhrkbgEKxv4uhDCdUmEo6r9x4WTG//" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Fw/p2rGzc5uOPGwlgBPxesXCSf08lIQdYewuF9BdTPaRdMLCjZiFdddzIkRvhxWEBczUTzjZqzrg1MZyxZ6Be3X0DA4Ee4C5VsO40xH55V9HAdVDgtP4iqlIgMDAbo5FRVgRJ6cQeygS5iQ/AzN" ] }, "ContentHeaders": { "Content-Length": [ "44189" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}]}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?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": [ "1330" ], - "x-ms-client-request-id": [ "7d2ac611-dafa-46b6-b269-b4aa6dc227a3" ], + "x-ms-unique-id": [ "1977" ], + "x-ms-client-request-id": [ "d3982064-81e9-435e-9695-9e72e3b8b0fd" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -105,35 +105,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3e868aa8-167a-45d8-8146-b3da2fc75caa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13988" ], - "x-ms-request-id": [ "3e868aa8-167a-45d8-8146-b3da2fc75caa" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:3e868aa8-167a-45d8-8146-b3da2fc75caa" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvElll7ezoxLdpFTWKdPHB1JaSRZdPJPc81nGiKDcf7r4Pt/ZasyxO7b5ZC4KgfNRyCrLxrbydWWLTR6SxT1JV9ldl4jTTZI2UqkfsjG/RD+cU3CQ7aYA/Pebo48Gm8+pTqvd6r0aXSp5JophXjGys" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrq7V/f7+LeI02E/wC3/dKFGJenfy6PeoYVzVx1ov970aCJYMltryu40kbRsa8e7yynDZrH8849MGD2toJ2xkhgSelQdzDnLw+4ltZeFOxS3o538T2X0T8bAT8gFGysQlCqCcCyYiegL9TC1wAdH/" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": [ "1331" ], - "x-ms-client-request-id": [ "483c256a-b389-472e-b895-3216d4674c3a" ], + "x-ms-unique-id": [ "1978" ], + "x-ms-client-request-id": [ "26656521-473f-4d3b-ac60-2c6163812411" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -147,35 +147,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9eecd363-139d-458e-a3f1-9718d1df57ca" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13987" ], - "x-ms-request-id": [ "9eecd363-139d-458e-a3f1-9718d1df57ca" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:9eecd363-139d-458e-a3f1-9718d1df57ca" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8CnliK4rt0PteXAzS1wHkDz6ofRcxtBVU1Co1gW2gIRdsAHR8X3NToOdKaM8cjcz26jk09/YLUihpAiOgAZVGoZ/0jd/q8lq/qLG7Vl4oqXPwRKrRLgt/klVy1op0T55yG4VrbbUKG5yYVYJf9nL" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8Z8NJWYCCn0GM1TSDOBef87dJhFFgY/YApiYINKXqXs4aWiH/LLPq4oTpudaVp3I3RZY+kXRJbk1dnNj7u2I9pxaDIBXRG60pE3oAmYz3KyomIzSfEoMaKdw+42ICjoWav/W4v3u6IUb9bnlJMFj" ] }, "ContentHeaders": { "Content-Length": [ "44189" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}]}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-3553158526?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": [ "1332" ], - "x-ms-client-request-id": [ "472e8251-c472-4b79-b858-2193d5a9bf74" ], + "x-ms-unique-id": [ "1979" ], + "x-ms-client-request-id": [ "dd3e196c-9b36-4f4a-8446-4e886c0d8c2c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -189,35 +189,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3fd34d9a-0745-4f0b-8eba-9a186ea89aa1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13986" ], - "x-ms-request-id": [ "3fd34d9a-0745-4f0b-8eba-9a186ea89aa1" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:3fd34d9a-0745-4f0b-8eba-9a186ea89aa1" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnOWiRzB8tbzTS6ZwQdrO2AHRBWnzejrCzwgffqnnDuzs4PQtBlW5SNzM7Gqz+kRRajUgpsqy9gzTEbE1XMr/RqyhcxBTYBCIxBFEy5qfquk4VBd89yG7i1jl2TdSD+AjqMkfXROWYwcoAdQYgroQ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYQtKWnI1uqpZLB6jXEweLmTY9in5enVp5wHVImcJtU/PgXMJ9k8zeaK3dWA7XsfpJWACiI79TvftbD37J4/yRoSoHDlAWoeG4+n58Zcc3XERD5uxvXntPqwMVcnmxfhQZ7UmVTaRDjaQipifTra7" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-5815279286?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": [ "1333" ], - "x-ms-client-request-id": [ "47fb0459-714d-40eb-a8be-90d390dca628" ], + "x-ms-unique-id": [ "1980" ], + "x-ms-client-request-id": [ "303052fc-4411-472e-a3f9-004ee35797f8" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -231,35 +231,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "21329c4e-6ef7-4ef1-ae37-32a3d9b67f8b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13985" ], - "x-ms-request-id": [ "21329c4e-6ef7-4ef1-ae37-32a3d9b67f8b" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213910Z:21329c4e-6ef7-4ef1-ae37-32a3d9b67f8b" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9CZgUuGo8LUHHRhecyvmlMfHdcQQ9ETssyHgOO2JDqLmfxegE/nH+3yeOPdwEn8d4d9exeHKw4KYBW468jxXCCMP7FdSTRRnrd8lM5HV3hLDn3uotRilVRLrQIsbNUC01qi8zoXHB8e0GQm8pZC0" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJ51ZU9+71IckOsnPqFDFwtH544zsxDaVPKqSuUN0ODOsiq6J+iVIXuPnKcvRPABOxmbtwWk50c727iKNLeJ4m5UkZi3k+ZH/GUfNJeenfllyvxwxq/QMjt6+2PLPoDBGXwVDjYi2thbUoh/x2LB7" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-7873942284?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": [ "1334" ], - "x-ms-client-request-id": [ "54ca6046-034e-48c0-b742-50eae587d80f" ], + "x-ms-unique-id": [ "1981" ], + "x-ms-client-request-id": [ "b9a6f516-d455-455d-a384-f22ed045e21a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -273,35 +273,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9de0f323-95c2-44de-9ca7-7d7c4101c07f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13984" ], - "x-ms-request-id": [ "9de0f323-95c2-44de-9ca7-7d7c4101c07f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:9de0f323-95c2-44de-9ca7-7d7c4101c07f" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUrgm7L0NpVWMvi+bzCLTvTI9C+7MVc0rbvIywHGAUdtq6tMA/O5QmJJB5QXFEzt/rCNOD8djH65QRm5xocjI10gq1b8YEefVGBNuCF99W2/MHy0w52ES0KLYcNxOQc6+dqfdvCsz0TreUYXZttbU" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7pPkthmC5Y18jmDLUXqAI1H1+9Nn3n5CXbRF9wFbsr6wlsF67W6fPDFFMIhGpT7lo5R6X2tteEcgDaDSxars9JSvxeQkidgV7ZBtfXWlE5WAPdeJ3ZyF8dmxN1SV8uAyovxVErd/d13bxBIWZYm8" ] }, "ContentHeaders": { "Content-Length": [ "497" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-8756038515?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": [ "1335" ], - "x-ms-client-request-id": [ "0d16ac47-957b-434c-ab96-2af45643e586" ], + "x-ms-unique-id": [ "1982" ], + "x-ms-client-request-id": [ "2846a619-c203-410d-9199-f716cc4de02f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -315,35 +315,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0281112e-5415-4078-8e21-90a823132a76" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13983" ], - "x-ms-request-id": [ "0281112e-5415-4078-8e21-90a823132a76" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:0281112e-5415-4078-8e21-90a823132a76" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyzC7Izu3UjXV37VJVIrh4jqMdu19bb1df39Ev5ckzTHnGsZzqB6MQEEqtJ602GAEFB0iNmQNzWYF6/QgEPLIFlueUOTla5Q+Q87Vj0B1HM/49N1eFpK2VJcMQK7ceS27ke+WDrU76t3XADJqvMZf" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYPK7praCvYom9zLOKWp9M2mWXV/KEY7G9jsoNcpSe8lG1eiwz4vnKpWkNRJnZyLmRDgali5mJaNM1WTs7oKYSWqwlMA/ODlkyZ2Nu68YHKfxknhtfwRvgr05XmywFHOyERt2doaRSvhtx71lfq8i" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9433431579?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": [ "1336" ], - "x-ms-client-request-id": [ "d55817ba-8401-415d-881a-5fe88607fd77" ], + "x-ms-unique-id": [ "1983" ], + "x-ms-client-request-id": [ "415fce7a-44a3-48f3-b42a-b49d24b0e33f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -357,35 +357,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f92d2dc9-5054-4db5-8ec2-56da9d7e5f98" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13982" ], - "x-ms-request-id": [ "f92d2dc9-5054-4db5-8ec2-56da9d7e5f98" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:f92d2dc9-5054-4db5-8ec2-56da9d7e5f98" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:10 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:19 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUaTvujeJWHlUC+9sYZiI7I16Mq0jmeRZ5RtEYHRJFSFPY/9FXVnKCdoA1Dpk4u8QkGhqE86mWfnRCqCJU6+MTuhLDDuZv3t/8f3hCH4UdUrjvvfTvwIGadPbNeH6ZtTM9g+B3MZsx4jm9DhLQpLg" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0NS26c6G3fmNYR2zRDERXiVDhZgWcmuzklk3BVk0PvHrnlP8ij1LW87FuMBwtfTozK/YJqk+2WdoWoEpS5dNfRp9cBl5nXLooARdERwhaahfEf0UOuoou47QtzeAgKHgbABCgJCiARNRkfrPf1FI" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/crp-test-admin-quota-9917977036?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": [ "1337" ], - "x-ms-client-request-id": [ "d80f971d-516e-4c25-a47c-81169c841b8f" ], + "x-ms-unique-id": [ "1984" ], + "x-ms-client-request-id": [ "6448fae6-2ee8-47a5-b1bb-26a6edae601d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -399,35 +399,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1ee0dbb6-6b13-48b4-b32a-38cb0a9c923f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13981" ], - "x-ms-request-id": [ "1ee0dbb6-6b13-48b4-b32a-38cb0a9c923f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:1ee0dbb6-6b13-48b4-b32a-38cb0a9c923f" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXxxF+Ibws9rwXoqEUb8ahUvGdTtYNhpiKt8+hLV3GoQ/FOi+FJ9HbRXgPv2YPISZGFeSCjdnir4paitm6QbIhakZRr1WnnoJjF+dU36EEqVaj/DiYg1Rjf5I9Ex9O3PTfVKRPudajpvucOW2Hdq4" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPTbqKUL0Va4V3StsMxvhxbuBPnAp2dwuYYsIjBeZkCSzeRo1eM0MZ+999PAzr7GAi9S0cICQrbLudltZ22COoMjbuQFXH9y6SU3ZbrFEe7Maf4sslYy0dR1b2cf+zbjqsLQWb6e6OkdIku18h6T5" ] }, "ContentHeaders": { "Content-Length": [ "498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/Default Quota?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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/Default%20Quota?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1338" ], - "x-ms-client-request-id": [ "bec61a9c-0b42-4249-aeef-cb295a35a58d" ], + "x-ms-unique-id": [ "1985" ], + "x-ms-client-request-id": [ "db2dab21-d3a4-41ba-9f2e-4e2aa942be9a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -441,35 +441,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "91490ea2-686c-4c84-8966-e306550357cd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13980" ], - "x-ms-request-id": [ "91490ea2-686c-4c84-8966-e306550357cd" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:91490ea2-686c-4c84-8966-e306550357cd" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTYYS1JEY30HqrVlw2JQAL1jhKSwpsva47yOyKzZycsznttRBHYMSUFdgxNskgsEf5ElWXsoKPY9RAUhaHUj5LLGhT+JCHgJHgI9MIQeD6XtTRZvIEvkzz0OMoPG6WBfUYMp5mWmQrLRsBoQfuYsB" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEX2bQ3x/aQ8Pe8YYcnzdzlXPXhmMY+/AiO7wr9QLCmmCcMbailepcuIfC0RPwqTPQg3KBxVNnztOCGGIUkZsk5Wx2Q7UxtToTssi/KDnDeQpCRPi/eSWu3zqshH5q+HNoPPwj2B6dCUMAxiFeGLm" ] }, "ContentHeaders": { "Content-Length": [ "465" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/myQuota?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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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/myQuota?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1339" ], - "x-ms-client-request-id": [ "0a18fec6-1c02-4599-99fc-11f62d0cd2b2" ], + "x-ms-unique-id": [ "1986" ], + "x-ms-client-request-id": [ "c1f32287-f28e-4a0d-9cfc-57b14e2ba352" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -483,35 +483,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4337b35a-7b24-40d1-b609-b9984fec66cd" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13979" ], - "x-ms-request-id": [ "4337b35a-7b24-40d1-b609-b9984fec66cd" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:4337b35a-7b24-40d1-b609-b9984fec66cd" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcxltC8fBJQjAQRgnHjAClO8CYlsrkfB6ADKe/FAEWNqmL1buVl64nnDdqEAF5xhQfn0Cx5Vj9F1hm/1mZXzFBwf4a9FTdQvs16Zk6q1bEmbXbsnXALQ4J+qUzL7mygIET9u2K6PPG+S3eCUwIiXD" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvfdAZVrRxLwpQUORwc7E74/Gv3WGfk7EQoXh0Oaqe0XdedjBUMVFxlxa/TF9k28TsM4V18xONre/s+xt6iZ4QaWO4xeLmIG4Ro6JFpKqvAYCHpIN3eGAlyxCsEFnlZAKdVHZqtDGLL8hRRnSxZapv" ] }, "ContentHeaders": { "Content-Length": [ "443" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c?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_05424ebb-0042-4efc-8361-47d674e4463c?api-version=2021-01-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c?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/TipCrpQuota_05424ebb-0042-4efc-8361-47d674e4463c?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1340" ], - "x-ms-client-request-id": [ "1e47274b-4e08-4df6-84c5-b2fc5b90326a" ], + "x-ms-unique-id": [ "1987" ], + "x-ms-client-request-id": [ "d98f575c-f4f4-4bc6-a55d-f09835ae1625" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -525,35 +525,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3e523720-f8f5-418f-8cd5-d525091cf888" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13978" ], - "x-ms-request-id": [ "3e523720-f8f5-418f-8cd5-d525091cf888" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:3e523720-f8f5-418f-8cd5-d525091cf888" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXvrciAQ2JWQuqmSL6eLjGuuzFRAq7izA+d6+VLTMmkgbR7qPOYXRbdsF6WNsgG/iliICQwZil3mRxhJqe8jKw5UQ/7/3Gsv9knZ1mUyr69XuhxE9WEv82u6fn/O/Nc+lThMZBF6nkusJbABoyqXm" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdzFTnbfQUnXHrmX0hp78ED+3Gq6uxT7NQLiisurFD0IV/6Sy3fcBy+Cy/d0X861/HyAxWM3TwD1jR2KoqCrpqleVTw86PzfFs0f+erx5F8FCARbbZEk184czlaDW8UpLK6Wh3B7oKQxybgNjfCCa" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b?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_0a37e3c0-f3c6-40a9-980f-b829ade63b0b?api-version=2021-01-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b?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/TipCrpQuota_0a37e3c0-f3c6-40a9-980f-b829ade63b0b?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1341" ], - "x-ms-client-request-id": [ "f098c81a-aba6-4392-a08b-2896783584d3" ], + "x-ms-unique-id": [ "1988" ], + "x-ms-client-request-id": [ "e8cd9991-f4fc-412c-a317-9909451f5031" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -567,35 +567,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5fabf6f3-f90b-4844-a9cd-b426340172ba" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13977" ], - "x-ms-request-id": [ "5fabf6f3-f90b-4844-a9cd-b426340172ba" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213911Z:5fabf6f3-f90b-4844-a9cd-b426340172ba" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVOYR3gqSfrTSk83SR9QxZ5stC2Rzt1sXx1uzWlEYeHXyJG8Kwb7Vo4ivs6pumghvIO5lhOZk8IODPc5E9QzuUHu6lxvV+yAuYBRjH+5S0kT25dGdrCmx7FzWMKCAYUMnVrwc/32h1dttgx1V6xb1" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwke3swTELj+ntZb1ZIEyKuTlJB0tQVxIuNMNnf0qa7zrpcl7U5kXppOe2I8m8Glp2R7YwcjQHvygzl2yzW1mmHkqi8+7aKwo6Xdgz7tjKk1SIQYbWPeXcKY1t6/iKnI+Ghy7bt3zDJPA6vrZaga5" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670?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_0afcbfe1-dad5-4996-9cbc-4ed569453670?api-version=2021-01-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670?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/TipCrpQuota_0afcbfe1-dad5-4996-9cbc-4ed569453670?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1342" ], - "x-ms-client-request-id": [ "3ac9a630-847a-46da-a746-a0980f1cc731" ], + "x-ms-unique-id": [ "1989" ], + "x-ms-client-request-id": [ "b2218070-28e5-4999-8c35-7d160a28f9fd" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -609,35 +609,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "db86efe5-ba20-40e1-a8aa-85d132d6db8c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13976" ], - "x-ms-request-id": [ "db86efe5-ba20-40e1-a8aa-85d132d6db8c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:db86efe5-ba20-40e1-a8aa-85d132d6db8c" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMw0Pq7mwmbFwEHmJt/0DmssR0AWlG688N8TVuuM8uNgjk/EkCWP7p9tjltUUGCfb0A/ZepkXzT88uZUO6VS18g3eSBZ5xWDxopWG1AWI1hsu8v/nhh0Yaxe9rcLvXBQItx+tMBz7zjNRYbmklStK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3MnaNflYcQLFGYsEnZc0Z5Flm1GmtSjSVq0vo8LQYw5rMBfyWcDVIgzxc8zJf5csij2ixT58h8bVyTrBzmVlVF1Xk0WSJ6i+M/o0A+/o2vRphtnht3MAKfp0nL7Qp0+Rsc3JLwTY1b9QQZ6DONZH" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004?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_12e00a32-3c83-4d58-9f17-8bc04c7da004?api-version=2021-01-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004?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/TipCrpQuota_12e00a32-3c83-4d58-9f17-8bc04c7da004?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1343" ], - "x-ms-client-request-id": [ "3021576e-e3b4-4bc5-a408-4a781cdcfc1e" ], + "x-ms-unique-id": [ "1990" ], + "x-ms-client-request-id": [ "6611dcf8-e3c2-4290-bc7f-5dea1df4bb6f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -651,35 +651,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "84c749e9-f044-44d1-9bed-10a46d9f2288" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13975" ], - "x-ms-request-id": [ "84c749e9-f044-44d1-9bed-10a46d9f2288" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:84c749e9-f044-44d1-9bed-10a46d9f2288" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5VN4wz8gMOQffPPoh4jKjIqBdudZKQtidZcpc4IVY5aTWtT/Y2UAvpxxZ01uQ5IEspFsP5HKupyBL0KZrg0TjKpInBD7VPhZtOwQnKNvIGaOzsjd5+0jFZChW4lhGm6/HwVshRLmN9W/wMgrHBWk" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJfr5njRF39ijHxSxKXIn85C9zo3xIRNW6VVN2CF14JoFtluUf3nSs21URydinzEnHYZLfNYDnuzNW3YXO8UhFR+AhgQIr+TaUuzOP9XIkUAv5Sz3JCL0vAnX+EBXSY/whfhfErqxx+5UOMitUIvF" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847?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_1beda89c-772f-413f-abd1-f751f915d847?api-version=2021-01-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847?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/TipCrpQuota_1beda89c-772f-413f-abd1-f751f915d847?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1344" ], - "x-ms-client-request-id": [ "6e0f8db5-1ba7-4a5d-9474-e2ef3bce3eda" ], + "x-ms-unique-id": [ "1991" ], + "x-ms-client-request-id": [ "af5809cc-6c48-416d-8d9d-5b120d59c917" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -693,35 +693,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "814303f1-07f7-449c-bbdc-197f17e146bc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13974" ], - "x-ms-request-id": [ "814303f1-07f7-449c-bbdc-197f17e146bc" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:814303f1-07f7-449c-bbdc-197f17e146bc" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5+afT3wsYcpRipg3x7XTwjg70YYEcn9T8sIW6HJLYbQDKMY8y4+Gu1wVj711g8V7+5LHSwu0lrLIjz+F/mi3StR9Hc2TfzDFFQOHHISbE5OIKdxueV6L2tDpoKUghjai/g/dGlKGxtpZebXdH4/5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+ZrVTZyEhol8j6GBKFF7WnHG9LHfQdejDd+UuwI5lpQ3RodhNJwkIk989lzMvMEDxV8ZYYnv/0uWOl2H/EV2g/7XrtT4KvGaQXKvk8qBgyP54gHvVwmY+95FN2gUZz+QCFDrbgNvcNGpoMvLNP1j" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0?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_1e08d1da-a42b-486e-a597-fa465cd4d0d0?api-version=2021-01-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0?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/TipCrpQuota_1e08d1da-a42b-486e-a597-fa465cd4d0d0?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1345" ], - "x-ms-client-request-id": [ "cc6c2957-178b-4a5d-b417-edcf3835e169" ], + "x-ms-unique-id": [ "1992" ], + "x-ms-client-request-id": [ "e8d9f260-209f-4f1c-9648-511f8c91d499" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -735,35 +735,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9093f698-4077-4929-94f0-f775d54fd07e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13973" ], - "x-ms-request-id": [ "9093f698-4077-4929-94f0-f775d54fd07e" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:9093f698-4077-4929-94f0-f775d54fd07e" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:11 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:20 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEi8cB1VyRvptYhSqj4r4ZKL9JJ/U0HRzpISIwWlEiYClFay20iXwcYDQEaOdvLLfPEIjihhgADIYVsaK6ygTvy/BRP7wR/Z1OV8rL/topVj56wmnS8C8dmRfR2jcFU5xoHfHTm/i7URrWuJWuceN" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcsyT4FmnjpVLp79h5kGwR/yvfBEg0s61ERdTcB8tM+QT0iP+IigWhExhGvJoPy38j4zLNO//0sfmypXjJhpBWuYgZClBAeteedEyMT4D/ZzOg3fqHY0L03y6Hfry0OZaZbW8XEniTET2tSs6og7c" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8?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_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8?api-version=2021-01-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8?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/TipCrpQuota_1e0a561b-329a-4c2d-a7f1-0d5e4cda21d8?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1346" ], - "x-ms-client-request-id": [ "16129d70-9e87-4c37-a28e-9f1b12d27f73" ], + "x-ms-unique-id": [ "1993" ], + "x-ms-client-request-id": [ "be40a895-a226-46a9-a320-7d0b236359cd" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -777,35 +777,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "daa5760d-4cc5-4512-8b4a-d56f6404144b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13972" ], - "x-ms-request-id": [ "daa5760d-4cc5-4512-8b4a-d56f6404144b" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:daa5760d-4cc5-4512-8b4a-d56f6404144b" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9em//CbKifTjg6LB56RJh+7g3thND66GxaOLpCd3xyH1J+S6TZP8/lkseKS70EdGK8vnS1KOX7/h49hLbQx7VKTbAMitGV0AdEtIXVbPzQJD3eYsH4uSWuzZZZ2TehZpYqGP5RWldKDM9w0IhffO" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvp17cXQvPbXclUcudpzS6iJRiwuPqC+1TKsv2k9MOldq6XEdQf38LeX+HNJCvCH3DHwFA/joGmUgVirjjlQgZ0O6f+Zq4kOssSDppBjGfIWSwDAwM0vF8FFzu0ds5ET/cgQwDqb/JH3pr1jGJitq+" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8?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_21516889-7b08-4e7e-a0a8-3020a3bd0ec8?api-version=2021-01-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8?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/TipCrpQuota_21516889-7b08-4e7e-a0a8-3020a3bd0ec8?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1347" ], - "x-ms-client-request-id": [ "37ace11a-d348-4a29-b966-49e762d59184" ], + "x-ms-unique-id": [ "1994" ], + "x-ms-client-request-id": [ "b71f8a9a-8ad1-4f4a-ba8d-cee90bc96095" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -819,35 +819,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f1adc6b9-ee82-4952-af9d-1439ee24d312" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13971" ], - "x-ms-request-id": [ "f1adc6b9-ee82-4952-af9d-1439ee24d312" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:f1adc6b9-ee82-4952-af9d-1439ee24d312" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhr95DyQTXzvGE639ubbHqAYC34lf9/TEvnxQZnwBDZCYzYFManxnOudKJ0d2Y+N6L3Cd0ENSnlzM3mYtejPcPPnaK+kcHOMOCVFpuwecNVx1oYOAMr5tbEDHE+f/z+WKbea9gYMikDiYjhM0Bz1D" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMhVPGRtl62pV9EbeGw9I4x+ThuJBalUriJJ+OgEIBWTKlM3Bj1UZqgrrL7vrHzmmrpmNHfvEVdGMI9qhYRtjXnEFFqOABkyBSw/G3jFUyJhQhYvxaXpGOiWxKNVkBmvJAtodhpEvz2BSWI9GB0zV" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5?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_232b8a11-db60-43ca-9798-cb97717577c5?api-version=2021-01-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5?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/TipCrpQuota_232b8a11-db60-43ca-9798-cb97717577c5?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1348" ], - "x-ms-client-request-id": [ "5329ba22-f95d-49f1-825e-5c609308f887" ], + "x-ms-unique-id": [ "1995" ], + "x-ms-client-request-id": [ "cdbfc5dd-f212-4ab7-b52b-837ca36f7803" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -861,35 +861,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1de46146-ea58-440f-8a7a-c7031d06c42d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13970" ], - "x-ms-request-id": [ "1de46146-ea58-440f-8a7a-c7031d06c42d" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:1de46146-ea58-440f-8a7a-c7031d06c42d" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8Y/+ijBietdqrlajmKpWE7dPf4RwUTQhz83eEHfcFlQ6JqsRJ64+a0Y25CkZfShzMkgJJK2lQrI6BMrigX+kLIQ31GbOxFNxbluVTTjh2He9J0kM88mQRnCLSGEGgqHLmKCADRDJKHZCfKDGZIJq" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcwHyo8NWdKGJ1PIbITqwXfulk/uqdCjycxOzgeHjL2Dz1YUPFrxF4ZqwF38Bcw5drmokttb8K9auk4UKq8e4kFRO1MUK6teSKbpY5w6tZzE8xKjYmh+QdzEj9qX8PlLayL1GRnl/439/LxAh1ad6" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8?api-version=2021-01-01+19": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8?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/TipCrpQuota_23397506-1f4a-401a-a06a-80221d14d6a8?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1349" ], - "x-ms-client-request-id": [ "f5748439-c0ac-4d92-98bd-d2566452b463" ], + "x-ms-unique-id": [ "1996" ], + "x-ms-client-request-id": [ "ad600333-22dd-4aa5-854d-bb1a884571a8" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -903,35 +903,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b5259272-e634-41ba-9654-928f68162c2b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13969" ], - "x-ms-request-id": [ "b5259272-e634-41ba-9654-928f68162c2b" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213912Z:b5259272-e634-41ba-9654-928f68162c2b" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvthPr9XL5x4UUu1aKv29nhtcH8gblbXODReKl030ioLZ4I0DiwdOAB4B/2sctqHNiavl+ieypYSeb2PqxFWooxdHewe9quNPjFBFMcK3RE34y9TSwJeTxl1b4tdlI6Z7UzpPLmB9gWb5QQcuNLPli" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXbSTWC+PMdUCyi6gqhaFS10L3fkIadqsxvibL+hwppYIVhS9fwI7cYj0786iE1CuQCu8lo6IGqEsrmNkcNvj05cJDSr0LVa7yY7Q14SqVxmbqjT+h0ieLidNfSzVnOBVWZNK+X17nU1QAUox+6JI" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493?api-version=2021-01-01+20": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493?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/TipCrpQuota_23ea3f69-a69f-4c83-abd3-85bb49cd0493?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1350" ], - "x-ms-client-request-id": [ "6d161a10-1dbe-41e7-98aa-12c9ccd3b546" ], + "x-ms-unique-id": [ "1997" ], + "x-ms-client-request-id": [ "3b364c91-ae99-4d35-a799-e5ab255a9606" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -945,35 +945,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "72b3980b-68e7-41ff-b0a3-8c7ff5eab6c8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13968" ], - "x-ms-request-id": [ "72b3980b-68e7-41ff-b0a3-8c7ff5eab6c8" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:72b3980b-68e7-41ff-b0a3-8c7ff5eab6c8" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5ipNgCB4LunaoJHjALVLUVR9pYEdlpmuliB8GdTyAf7o2OW4Oo627hSQ6mck6HJOT1d1Edk6UBqL8ArxEYakf/qbMDtA0tcEk1C6PTlfnRq8oSJ8JEePcgZUQZrPyMKFUxw4YdHSTtYjaaugNxar" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBQrVO5xH41AGS4VElru+tIwbaPplYQ1CT1rhe3b4gLHHprFytZ0j9nLN+GIvgXWKfExaxnlTSuRR3sU8TxEK304g0W6dKD3n54vIkCFeLaCmyyLrPkfi2xGM9VBuBhuqsXjuASUT4LbXPwkSBgfm" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2?api-version=2021-01-01+21": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2?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/TipCrpQuota_2ad7140f-a496-4e66-993e-729a5d6d8cb2?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1351" ], - "x-ms-client-request-id": [ "d0094865-6ec7-446e-a70e-66c2239dcf72" ], + "x-ms-unique-id": [ "1998" ], + "x-ms-client-request-id": [ "f9b5bdcb-69e9-448e-b469-a6afe1e86c72" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -987,35 +987,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0178e633-ad0c-49f0-9c6a-ed2bf37f1b67" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13967" ], - "x-ms-request-id": [ "0178e633-ad0c-49f0-9c6a-ed2bf37f1b67" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:0178e633-ad0c-49f0-9c6a-ed2bf37f1b67" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvycUyZ+PBPbYuhjVe0CUMrMpLG53JrJRRTe0jnxln9dsd1Y/vbtvDL2N+Qt+gwtZflme+E3JhFg8yjwDZGouQSYuWyovf2rxcXwDxUlnJedF6FBOIohTbWjGcV8iGoKQFGBrVw0OEy6jbkUDL/H0a" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZeEXrHtIjXq06NsGC1RbjDFW4sG3AfTMyOK+XBdnj/ssDRuKs29F3afz8PtJGnOXTS3WH7QB2V6HcVRj3G1/hhQbqSe3QUv4a8ojoZT0RhCNwA9bOoj3nuBaC+54N89O/LDb7ZkgjPOhvdM0Bn8i" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6?api-version=2021-01-01+22": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6?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/TipCrpQuota_32675590-725c-4b17-935d-931c76f6f7b6?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1352" ], - "x-ms-client-request-id": [ "9411c337-7412-4549-818e-fe602eb0133c" ], + "x-ms-unique-id": [ "1999" ], + "x-ms-client-request-id": [ "17530041-5e07-4643-b3d0-4ae1613e5f37" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1029,35 +1029,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "06db4106-a9e9-4fab-85d7-50f022c3ea73" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13966" ], - "x-ms-request-id": [ "06db4106-a9e9-4fab-85d7-50f022c3ea73" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:06db4106-a9e9-4fab-85d7-50f022c3ea73" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviimm9laYmgo4NixjPzLdQ2TgQqjIEFyenYMA8wDm4J+EYqJ81WqiXKtZYzvZM5uTIkB/WkrCKpWHKHd1MF80D4TdX61yppdZCVd4rAGqgdCurxTUt5QX6teu+wcy5al0kHCCSRcQuwgN6I6W1fj+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvesU0Z3IFD9D983T2TaGgppgwhNKmWOoT+jPjnbHyzP45zTeidwT7pKr9oo94CtfkihKDiwiAnI0Xa7R8efFxvt9COFfTE4lVX+6OJUX8LyMgJ8hxKxO0o+tK9f1/oNypywThxuO6KQLYh5z46KmA" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0?api-version=2021-01-01+23": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0?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/TipCrpQuota_416d9c06-3200-433e-9860-9da1168dd0b0?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1353" ], - "x-ms-client-request-id": [ "4ab5bd8e-7821-43fe-9952-c0aa76b9a021" ], + "x-ms-unique-id": [ "2000" ], + "x-ms-client-request-id": [ "2945625e-ab04-42ca-9840-bf6cb044ac5c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1071,35 +1071,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5014ee03-d40c-4a1f-9501-5eb51319aeea" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13965" ], - "x-ms-request-id": [ "5014ee03-d40c-4a1f-9501-5eb51319aeea" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:5014ee03-d40c-4a1f-9501-5eb51319aeea" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:12 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuQKnzEggCUxJI1EccOYL9wCZWTgkE/fXm+Ok8n4tUnolCMwlbyVDYd4Mu6yXm1BxWFWYFwCamccJgiCEi7l5WGkU5rU1fbEMZiInFlhnMM7nu79xePfR7Ky+tWeqq4OMD6LhO0ChRMK2N2wJ5Ec9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/gh+D7pbDwYgMwun0Vh54MD3DAbX3+N2ciB8j3Esd6QmBsZJExjgP/5jd4SjDuTSpQwSGEAk/EaQPlfj2CcNARgq5LVzcvNAeQVxYD/zISsEMCqXQYjhbFb27mzoYYPhyJV3coiUrqcFzO2rQoUi" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508?api-version=2021-01-01+24": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508?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/TipCrpQuota_4454173a-e58a-4977-9b56-109f6e08e508?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1354" ], - "x-ms-client-request-id": [ "2a6f8a06-0052-4d8f-80c7-232c90a403ec" ], + "x-ms-unique-id": [ "2001" ], + "x-ms-client-request-id": [ "862c4aec-3081-42d1-80dc-fe0f204e716b" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1113,35 +1113,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9e5de092-4fc3-45d4-bce6-2137d803e7b4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13964" ], - "x-ms-request-id": [ "9e5de092-4fc3-45d4-bce6-2137d803e7b4" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:9e5de092-4fc3-45d4-bce6-2137d803e7b4" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:21 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOzir5PKXCpldrLL1Lh/s01Cmxf2M+pIxuotoA3+1AnDvRIqX1/rOyd6v+k26Sn2m2oKyEKTvl8XHVG6s9WJbD+JrDv66dTEyqTigAKaKsmCbyXVvaaOrr6SJQaZrnK4nsl+TKwQRY73epqmpx84t" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIT8DYF4bXP+X5T1dEcsK8XInoaW5RaBfvqsB4uusLGmZMItEaonHkMK9toOelqiOPfyMGc2/RgSPjFNQs2t435VaXWQZsStGxgPDRutC6S2yvBqV6uCR7RoVZmRInc78g6V3X/Tb/+qN7Ore5+WK" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d?api-version=2021-01-01+25": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d?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/TipCrpQuota_45575b00-6f95-4a55-8568-2c38887ee89d?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1355" ], - "x-ms-client-request-id": [ "4e07c627-224c-49b9-b623-580a693d2642" ], + "x-ms-unique-id": [ "2002" ], + "x-ms-client-request-id": [ "d63a16e1-8a9b-44e2-bf0d-a5a09d56071e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1155,35 +1155,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1a71f9e3-ca6d-4b12-9bb7-5e20a301e8ee" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13963" ], - "x-ms-request-id": [ "1a71f9e3-ca6d-4b12-9bb7-5e20a301e8ee" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:1a71f9e3-ca6d-4b12-9bb7-5e20a301e8ee" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcU0XCGP7ZElb/x5Sgl2+pF88fPoi3tLNZFCHckrPyLb7KFmBfWS0c9rEr0BtbHuK00np31cZCF8HSY6CDOyN+YoQaGRQ1NTTPQ5MMu6Qk7fTlOFDaV44C5h/EcQAWvS5dG3QttitInkk5Fjha3Iq" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnqW+qBttLhf8e8vE1rxKLL9rDFFQj6q0Otgf1OD0hVgcxWaHeGO8apfkSxeFpt5WaqQZ6FbbIhDdtE6G6U+/koThuDC/MtJ2lpJmqXN4CA8qpu78iFASTS+y4PmVoykILKBSDDHN29bLJso4XhvM" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9?api-version=2021-01-01+26": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9?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/TipCrpQuota_47ea3d73-8d4c-41d7-8151-d9cf25cf75c9?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1356" ], - "x-ms-client-request-id": [ "6d8785b3-fec3-4be6-ba6b-b37d88e1a39b" ], + "x-ms-unique-id": [ "2003" ], + "x-ms-client-request-id": [ "2ee08037-82ea-49cd-81df-1dc8631be803" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1197,35 +1197,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "8f15b7d8-39dc-4e59-af88-707289c7395f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13962" ], - "x-ms-request-id": [ "8f15b7d8-39dc-4e59-af88-707289c7395f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:8f15b7d8-39dc-4e59-af88-707289c7395f" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWhajDghrBOppFE6MAn1Ak9H8NnR6uro0Ptk2IMhWYpm00XoHWEHHp+G+OATf8ic1YIWlX5T8mHnvR102SxZzN151Q+8Qd/fM2Gojo0Vkb6KvKEgvqYPiilf57excn+A2euSMYT8CQfDFG+fYZMaE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwCv9WtpL0Ohm1kXePOrUsRhihEDahN4dJ9tyGViorIQ0OKXRbxHoV6hNMHHFdXhFyPWseSY04RR3J9GCdSVvmHCxzF9FQczht0x4bGHENaautnwaMkthn4BzfwJIZJM9NLu+Oe5LS0HVxd1th074" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e?api-version=2021-01-01+27": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e?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/TipCrpQuota_4a65fedc-5c26-4bce-aff6-ca2aa37c2e7e?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1357" ], - "x-ms-client-request-id": [ "bda90f52-0625-4c34-89ce-bfaff6fa9426" ], + "x-ms-unique-id": [ "2004" ], + "x-ms-client-request-id": [ "0ac478e3-1ade-47b2-b005-2b17291e1fb4" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1239,35 +1239,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7ef218b1-5970-4b45-9355-28ed7b770d13" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13961" ], - "x-ms-request-id": [ "7ef218b1-5970-4b45-9355-28ed7b770d13" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213913Z:7ef218b1-5970-4b45-9355-28ed7b770d13" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0ISTS2hBTSwhvSRGEwmE2pfdQ0SjjnopSgMjPQ7SPi6Jx70ax3GMY++kaqbGtsIEGRoYM362AHMd+qMcVtzJ7Krfs64nXKIuZY0T79ZaSToDba/R91cF0YMz3e097maQJoKSq57yHp/aaHA5JHfO" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0XGzki+NBRarR/8szMeMkHNWSQtq46k13DLJ/GKS/r1dhyQpQfhg4iiOS0frEtB62+OdMt+u/Bvahp0GSfKkWdHeq16UyeHFgqKCD8JH27II8kqNw0JbFoRZaRT3gm3kt1NuPIELkiefHtYaeJN1" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84?api-version=2021-01-01+28": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84?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/TipCrpQuota_5491c657-6ad7-473d-905e-cd9555594f84?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1358" ], - "x-ms-client-request-id": [ "d7972e25-b279-4882-9c43-22c59df16c11" ], + "x-ms-unique-id": [ "2005" ], + "x-ms-client-request-id": [ "c00a9e4f-6756-4666-9ded-c40a0355aea8" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1281,35 +1281,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ea31a3fa-4a5a-412c-828b-dcaecacb980e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13960" ], - "x-ms-request-id": [ "ea31a3fa-4a5a-412c-828b-dcaecacb980e" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:ea31a3fa-4a5a-412c-828b-dcaecacb980e" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv75xhv5qX1I4T98cxrhQ5RaJ97lSxar7ZV9ZkKJMRnjSeiIrlbCMaX18CNFOjsd1OAzL9U8yaosKKt/zZLBgOoeu5OsLx6FflFlTTgTZ9RioHbkhXpdO21CiA+Pv5DlaQ7Y4hdjmmBrG0XdZfRRAs" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZN2WM2DMFX3Wra8XGU0pdt+/0pSWwCOBFfHxJfM9BDLgmvcOE+j7v4ND17fWmNDlxR/AJcewqX53x+ViocOvdkjmy/EinbTvZnDa4CmAk8ASAri5GVyII9oxEP2+f3te9KCCbTGD45jn0BcnjTY8" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99?api-version=2021-01-01+29": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99?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/TipCrpQuota_54e5c089-56a9-4531-ac1e-4df7f426da99?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1359" ], - "x-ms-client-request-id": [ "2e01c250-b2d1-4fce-800f-53bc0d201422" ], + "x-ms-unique-id": [ "2006" ], + "x-ms-client-request-id": [ "0bdadc1f-3f4b-443b-84a5-4186059c8e6a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1323,35 +1323,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9624f102-f772-4b65-b798-ba8e08f30166" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13959" ], - "x-ms-request-id": [ "9624f102-f772-4b65-b798-ba8e08f30166" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:9624f102-f772-4b65-b798-ba8e08f30166" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvz/FU6oxVp9l0OTGd0SP0Y+793xEgclqiryU8e9cGziGASoDwIzxJTc+3v9JZoD58mbz7onsAP3jGbMQn7TPdckFi6uCj8gudU3VYYvkEKLvoJ2kzmCaanABvv6i32SjKcbZp4xFbitY8y/nsUtRo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcE6KgYNOlBwTHQOdG9W+qPw/sRSGV4rO4DBuRoo+tg2Sg3hQbuEuaX0o7PTC02ymB1YCFpNP0tFMaWXX4kH6UvXz16E1R5sMGETGienvqvD0zmcOxf28YWhY4Coybb/pbjB4Z5t8RV7NsZtjOJqK" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7?api-version=2021-01-01+30": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7?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/TipCrpQuota_5e83ae60-0888-4afd-bd86-ad66c51ab1f7?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1360" ], - "x-ms-client-request-id": [ "fb0e20aa-8fc2-491f-868a-176935a7ea1d" ], + "x-ms-unique-id": [ "2007" ], + "x-ms-client-request-id": [ "0ed2fa75-67df-4f29-9791-8d426ffec4f1" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1365,35 +1365,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dc7ed7cb-2d5a-4005-8edf-fc1f9078f635" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13958" ], - "x-ms-request-id": [ "dc7ed7cb-2d5a-4005-8edf-fc1f9078f635" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:dc7ed7cb-2d5a-4005-8edf-fc1f9078f635" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv20nvwHybnwenXTnijSVwlk9UiXe4yw9BCZnpSgZkzrWQzTvlDVhbLWT5yIG+ryEA04XWemgD8mkmPaB/GkqTM1h3Lz2aJbhOv9QcM8gDm1NnIQzSLWyzlLtH5KQZ/wXyi20YjDdgCNCC76xUXXrK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv07GwexrLFkOzuErk6uxA8ySQ1vxiT+BxtH0UliUj0nYTQfAHuStEdcBRwfYkdPgLZKUzTqUJgq9q74jmNE6edz5Wtl7mWrM2Se+LTDnHbRh6PNWSke8ftCgoT89/swCb5JXiHLTp6Vp9tdx8jLvl" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5?api-version=2021-01-01+31": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5?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/TipCrpQuota_62471128-0c98-44ff-a1dc-d3028d7572f5?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1361" ], - "x-ms-client-request-id": [ "02bfddf1-f7ce-4f47-88dc-0368c88342ba" ], + "x-ms-unique-id": [ "2008" ], + "x-ms-client-request-id": [ "75621250-a066-4ad2-a581-ff987d643606" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1407,35 +1407,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7d000704-acd9-4d90-b7c8-a7d8ce601ce3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13957" ], - "x-ms-request-id": [ "7d000704-acd9-4d90-b7c8-a7d8ce601ce3" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:7d000704-acd9-4d90-b7c8-a7d8ce601ce3" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:13 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOs015PselWswO2cGLNs7pg0uSwGhlsBW81mPBZQXxtnzHMiqLaC3nELgCrhRB936CNcEu1V4h4KTv1rRO1wSrUMWAdco4mGwaKlOUG8HkKGnMEg4qarxG9S2mGX/ZQYm/FOX5JJ8X0E5vCxDXUAQ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcfoRNVNhrJYMT4Pc5d28jOjqGm4YK/m09Zsquk1X5zC4R2lzUS4LUk+4Rt5ttrXsqEhD2hWOxRdgxhpU/RkmvVA8OVDEqKda49DDURBf45t1KMYT0sSZR/ioH6rbqiGWUerxiD5KU2V1DIePWoHC" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4?api-version=2021-01-01+32": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4?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/TipCrpQuota_6a14ed7a-32ca-4686-ac60-afceecd905a4?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1362" ], - "x-ms-client-request-id": [ "6a9ce849-c238-4277-ae22-bf5144b3cdea" ], + "x-ms-unique-id": [ "2009" ], + "x-ms-client-request-id": [ "889de448-b9ed-47c0-bedd-92d05d7e17d3" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1449,35 +1449,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d4462690-0a7f-4100-94d5-4ba82c29a01b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13956" ], - "x-ms-request-id": [ "d4462690-0a7f-4100-94d5-4ba82c29a01b" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:d4462690-0a7f-4100-94d5-4ba82c29a01b" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY8AjGFEA8WM4EjPV97lmfipf/yCie4ZTXKLpxxaXl1OOlRRuCHgBIoRf/FZRfNyBeDjly52CG+vxUM/QyN/JnLh6e1cjQzqN54rkGvqQM3VQ5Jc68Y6dKQ/8vx8UI56pTPRz6OraNCQOhw97uMoh" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGt0bh4IWoz10SYL51ZtQ81e2wrPFMj4i2URAnnKH+D8J73cdzx22KslgRcid6DNPKY6ApQMODs4uH/FDzqTm/VXeW1M5aYsPkmtaHZvVu2RakxRKTQ2rqEYsuCamMeIDBGDEuTPZkGzDZGRpeh5I" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619?api-version=2021-01-01+33": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619?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/TipCrpQuota_6ace73b5-d04b-4972-a8ee-2cd358313619?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1363" ], - "x-ms-client-request-id": [ "89be2c38-383c-460d-ae2e-579c06251db3" ], + "x-ms-unique-id": [ "2010" ], + "x-ms-client-request-id": [ "408c4c2e-d384-48ab-a4a9-1695d03321ae" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1491,35 +1491,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f10ac955-cc45-49dc-bdc7-9b8530c2357a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13955" ], - "x-ms-request-id": [ "f10ac955-cc45-49dc-bdc7-9b8530c2357a" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:f10ac955-cc45-49dc-bdc7-9b8530c2357a" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:22 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv54/w9N7V8otKLa+rbOB5591PEqc5KK640JfnIfcsCTNm7U2ehXKM52BCufSp0fsEaBlAsqX46UbWPtGV3kDn9pPXlLrd+oDC3xSC0N+iiWvAcbB7OMgd/A1+HQh4UcQpA0Z/E9ct/7nozDvSSAq7" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv08M0IKKeOfXHPfzZ+wfzpN1rZP0qjhz6cuV35v2czLpkaDz3xwoPOUy/REdfHqxYWtcRJQRzZKbYxjhHMSShuBwSswB1jFTYnrDp+5Hf1oMgqRVsA2xe8MSrHGLv+zrySxKNo47L0fFHOKUIMmV8" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4?api-version=2021-01-01+34": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4?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/TipCrpQuota_6e7ffc07-0052-49ea-8a3b-08da01bffca4?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1364" ], - "x-ms-client-request-id": [ "f4287bfb-b98c-4455-8626-05cc70de58c9" ], + "x-ms-unique-id": [ "2011" ], + "x-ms-client-request-id": [ "e61e78cd-0912-4cad-a78f-b7ded0277ff8" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1533,35 +1533,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e7f7175c-05c2-4c0d-a5d0-60290c567773" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13954" ], - "x-ms-request-id": [ "e7f7175c-05c2-4c0d-a5d0-60290c567773" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213914Z:e7f7175c-05c2-4c0d-a5d0-60290c567773" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJhbMAj7usp1QnSXZqd6PSbiL4izNVOitgA4lXOajYDUpc3+uXKAzmr8cIm0hmROnqyor+UCphyEtGxVn3N9LUxN445YLrVEU4Xnl5cXOUuYh6NZS0u0EzLtcUO1CRkfDjEPSZyLJ+JeW4IVdraYD" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsj7wyyrLuq2Wd2wXtgFfeiHaJCni5HXuaY7g4zXtM2r0qgL+FLIIOEwm9h0IzvdP+Q44zntE8woEWF4wOPweh9+y34My5w8FmGzhpfT6XIi59fsaxKC05QmbnzSU/F1H0TuyqgizKCYTHp/T+655" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba?api-version=2021-01-01+35": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba?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/TipCrpQuota_7789f6cf-ed93-4ed6-b1dd-d8942246f9ba?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1365" ], - "x-ms-client-request-id": [ "b82cf1e3-4ae5-4dce-b156-517874b4aeec" ], + "x-ms-unique-id": [ "2012" ], + "x-ms-client-request-id": [ "44931393-dac3-4741-8f4b-92168e3fa595" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1575,35 +1575,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2c44ecad-f45b-4737-a992-fb86943fbfe0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13953" ], - "x-ms-request-id": [ "2c44ecad-f45b-4737-a992-fb86943fbfe0" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:2c44ecad-f45b-4737-a992-fb86943fbfe0" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuH4nx0F6lJDIPA2uKHLBKdCtllP5Yz3DHHu8HPHuRhK949LETApD7BNVZogK4m845OPvaeoaidzGrC28FO+zca2LsnPZYZV7zIW7NgEIh4D9BV+q3elb/4wh7axs/mn5TDQPwlYdJ6nvPrpWZdTJ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBIJRx6YMA6xoZ8RzXAaNiav+jKfzn8/fYbypIjCVsYl6g4msvlUSs4ZAUuAfPXbTSiDG/qonz8tS3H2Rpnl9nMp2qdqB1qyPOyWyn8Dw9bXitm0xX0QxBJlrDdtu4rvS+4y37pl3dZIYuBNd+2Fh" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71?api-version=2021-01-01+36": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71?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/TipCrpQuota_79704e7c-655f-43e3-ba56-3a72236a9e71?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1366" ], - "x-ms-client-request-id": [ "00ceb14c-62f0-4c12-99a2-02e20e3b4db6" ], + "x-ms-unique-id": [ "2013" ], + "x-ms-client-request-id": [ "498e693e-ad7a-493a-bb2f-7a679d49d7e7" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1617,35 +1617,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "dd1c78f2-0c76-41b5-be49-4d06a2b0fb43" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13952" ], - "x-ms-request-id": [ "dd1c78f2-0c76-41b5-be49-4d06a2b0fb43" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:dd1c78f2-0c76-41b5-be49-4d06a2b0fb43" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvowk0Oy027YoK/5HjDNR9m5RDRelPfk/0O7qVEuB7qyjcnRPnIBnKszoc3EPw0zpLEO938yfQ/5SJ0Hx761RzRIibAIixs9iXUXLaP+TQl46IUolitVDxvJ5/3FUJvUzSnNNgo9jZU+3YXRPsd4Lh" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmeMqsmQpgUG4C7jaOeWaf0PD1vHG8j0c02pYV9Hyd8VTgCTQ3ebvkIvltQjXtfqJUuejcY/pFn9eMDqCz6xezYguPEOUj+tru9fS3howxsWG6gQEx84pRXvuLZ2BE6idHF174ate4gqgNzFqeJPq" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76?api-version=2021-01-01+37": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76?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/TipCrpQuota_7abbecdd-f97b-4c90-a4be-ea6723b71c76?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1367" ], - "x-ms-client-request-id": [ "7f354496-9865-480e-a8ec-4af7394eeca0" ], + "x-ms-unique-id": [ "2014" ], + "x-ms-client-request-id": [ "367f524d-f6b0-4c22-871e-c9ef8ea7432f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1659,35 +1659,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "33602a46-c392-4d5f-93bb-a6040236627d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13951" ], - "x-ms-request-id": [ "33602a46-c392-4d5f-93bb-a6040236627d" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:33602a46-c392-4d5f-93bb-a6040236627d" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH+D6jgoQysO8NOYKu0P0BcUcB2y4jP54Q9KQ1FtSenJ3cspzcUqkwE4i7GbRYNvYiuATPaj1e351ttd3OhvtpMWeFHUATb4WStZTXh2kXAaluCaS+MMzl+Ujn8Tu9HL3rO0ydpST5MVsavROHRQt" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAcohrUT69gaCmyjj9D5M/Cy7NikZlCKU4Cs90pTkVRb5NT+WzshlHe0QNg46EOr6ykdtoM1H4eXRMNnXoDMv8Fw0IbLbg1BqxttxV6HuMZlS/SRga+7plIo0gG9ZGH53IwI+OgWyKu4DaXwPpJcC" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5?api-version=2021-01-01+38": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5?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/TipCrpQuota_7d260c37-d8a5-48f4-9fe8-bb777d858fc5?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1368" ], - "x-ms-client-request-id": [ "54c67a49-c125-4c57-994a-e4e3efa9570e" ], + "x-ms-unique-id": [ "2015" ], + "x-ms-client-request-id": [ "4dc5b9ef-4c60-4fb5-a74c-82eb8e28c54c" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1701,35 +1701,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "755cb4bc-6886-47d8-8b6f-5f148203a9ba" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13950" ], - "x-ms-request-id": [ "755cb4bc-6886-47d8-8b6f-5f148203a9ba" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:755cb4bc-6886-47d8-8b6f-5f148203a9ba" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:14 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjW4aJ5H7xpcDKNfPCxDDPVLr+uPr8qY3ysVZyMxaXRYc3GDRRLTOBcHD5gS2vbG9jYTewjLK+VInY6jRWxlE3jjma/M00wIcfC2bOgJMiA1l9eJDMJzKDhIMGTkyp165g1i9ydxbiS0REpY5AeLg" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoXUJBqh8n4P/rNUyy8lczqGonlXN4eZe+y7b1BSD/8K8dMAJT6L+b0UwRkuhHo1Ws2xijGBLCLjqBjqDQW4HvImWcAFxOXtOOlIp6Tx6VStPuwDAQpmZH4mZR4jazB0wWAr75TnL7ikxMaaCJXYy" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997?api-version=2021-01-01+39": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997?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/TipCrpQuota_7fddee1a-879f-4cc2-91a0-f33cd6606997?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1369" ], - "x-ms-client-request-id": [ "732d9da4-d51f-4bf6-81f3-2b540ff4676e" ], + "x-ms-unique-id": [ "2016" ], + "x-ms-client-request-id": [ "715569a7-3169-4454-a938-22e0e9df62c7" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1743,35 +1743,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "efec9cc1-e33e-4a9b-bc6f-becbbbae0ab0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13949" ], - "x-ms-request-id": [ "efec9cc1-e33e-4a9b-bc6f-becbbbae0ab0" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:efec9cc1-e33e-4a9b-bc6f-becbbbae0ab0" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvxFrwmF1j4xObExE3UIOxgxYn6QZi1eBL4yw+SGFWvNXbIeoBTz71HP60Yi9e+eJHb+R4xeUVXiMJLjNmT/x8XK9X/9atV3Owebqu+1Y4MKKCYZi/8FqrGRGwcBYCvIcv7MkfsWBJFmXz7SMKBF+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsPEITntOBH0oX9ap03B0C0EOyHMrrLhr/3Kd4uy/7K5SMGGL948zh1Ce6FW8bgfo10vxc6N47Tef/q+O92MMinRUcHo3hChXoV58IpoATgOrhTCzn9607W+KqHal9nHnWFUwBXgNJnn7h0ag5TvU" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12?api-version=2021-01-01+40": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12?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/TipCrpQuota_7fea3405-7240-4032-a1f3-3ccb7b018a12?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1370" ], - "x-ms-client-request-id": [ "5d9e8518-2c6e-4af3-af01-9dee7be0b442" ], + "x-ms-unique-id": [ "2017" ], + "x-ms-client-request-id": [ "71b68303-3385-4dc7-8b43-a4ea5d5a2a55" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1785,35 +1785,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2b141267-6ace-4aa3-91ec-fdad23c326e3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13948" ], - "x-ms-request-id": [ "2b141267-6ace-4aa3-91ec-fdad23c326e3" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:2b141267-6ace-4aa3-91ec-fdad23c326e3" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9cMdZvDk26OHA/9coQMdBgBfqPfteLuieuTwSPoGVV0ypoQHNiSmEDzUUmlRP/0St8T0Jzq1TvI04zT6Aadv2SjuljKP6zE1tl8JaNFMdDBWn17DJle78WOtzdouRAluAK/nFiP8cjIa7l7Hkc48" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9rtkWJBToGEdJaJuUu5CiYtwhwFtfbgCVgQMQjyaBIWCI+e+HiKe4YUixmcm41hBV7vJAgSoAd56Oph/EPw01s5K9hRNtIcRzq8/VPrL30ldy0l7nb3WfQGJMm6Iw2QwTCaqz8getahpDrVsmVmU" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96?api-version=2021-01-01+41": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96?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/TipCrpQuota_8337b65e-3477-4f81-a1ae-bc8c7d6d0d96?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1371" ], - "x-ms-client-request-id": [ "18c5c757-6332-4d6c-b4af-65a8445f7d69" ], + "x-ms-unique-id": [ "2018" ], + "x-ms-client-request-id": [ "9ea795df-1e05-463b-af42-4cfe09255835" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1827,35 +1827,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4de4bddf-d10c-4cee-ad2c-716aa4ef051b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13947" ], - "x-ms-request-id": [ "4de4bddf-d10c-4cee-ad2c-716aa4ef051b" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213915Z:4de4bddf-d10c-4cee-ad2c-716aa4ef051b" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:23 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgCUSLV7lE5ThEKmNc3K9AXsySltxnC5DQRKlTBfJJyiNdgvscw9ig8RVR61lW/ZbKpzXE0XWvY0gTrT28F53HlrMsHKih+3Ze52UD1lW6AIRCksmvi9o909M6cj7igRfGXOmaj/EaIOpTQlaN6Bl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKVQo8ViTRO+vtXgLnVCtDpSU84LkmIIq0zDoK3qcErfw8HVs4f6JoGhNn6k5/BwSjYziHYtEd50YtwlLRuUkgXxtSA/bScw/77wZQMNm+4s22ub0DX0AzV9PRv/SymOwFFGQ/+d5nI0isC7DqVuz" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a?api-version=2021-01-01+42": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a?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/TipCrpQuota_855316a2-91d2-498d-9c26-17b160269d5a?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1372" ], - "x-ms-client-request-id": [ "cc334de5-5483-457a-8dd6-f3c6310ca934" ], + "x-ms-unique-id": [ "2019" ], + "x-ms-client-request-id": [ "884e7efe-9bc3-4f0b-9dd1-0f6a5a520a14" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1869,35 +1869,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7af8687f-0f9a-46d4-9ba3-11a32b8a81d5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13946" ], - "x-ms-request-id": [ "7af8687f-0f9a-46d4-9ba3-11a32b8a81d5" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:7af8687f-0f9a-46d4-9ba3-11a32b8a81d5" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8FuIGTEJ9nQ/tgfftCUd0349+x7tpUiLruR9mNTCSpoBi5P5buUblPoikXK5H9R9xxB9kev9ZKIuigwzS36Wxl61WHHlmMv9K4qZYVh+2F/OT8R9ers79g30dXAoS1j9kVh3vJFPX9JkIYzmRdQ2" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWanNGkgxYagbyZLSRUX/tDmeO2opFZBYw97WlfPuPxjwD8n0CGzcNFSM4BpocBYUnTcYrnDeYZBaNtt+x27B1GdP9WP1AyaHoojFjaHRiDlcRhykjp45gPVwRh/STZJPjSrMe7q+ITp82po5OD5I" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7?api-version=2021-01-01+43": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7?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/TipCrpQuota_862e9f52-5fbb-435c-a282-ed7bf5dacab7?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1373" ], - "x-ms-client-request-id": [ "31375dfd-e6ce-4007-acd2-1cd7195c7260" ], + "x-ms-unique-id": [ "2020" ], + "x-ms-client-request-id": [ "3a70b7a7-8e05-40e1-95cd-98132e5b239a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1911,35 +1911,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7de89501-7451-49f2-a5c8-1009784c183a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13945" ], - "x-ms-request-id": [ "7de89501-7451-49f2-a5c8-1009784c183a" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:7de89501-7451-49f2-a5c8-1009784c183a" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlUBVG1zAr/AyjgQ3tIUDkBV6F+UCHnwjY4qRSaprIe2pjv1yAn2WJfW7uhB8yRi1SkOcs8WK80EreQhnM/Z3lq2dTiQTUmIYf+1juxO96uJjnRlS4MgBn5v7dBWc95aDvyejwZnAUf7DeaGQCNl/" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5MsCUrEdZpq3HVTGpwhv+MRGmkEewkj/79sIFc3AME+Ej4tzedZ62Io3TfcMylPi8TIYB31o5dBFl2cLDt8M34M7SChS2tW/NCKv70gJutczSlJm1GlHSV6/h+Z/uNnQ4kUUSq0CJC56gOQ8lrry" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244?api-version=2021-01-01+44": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244?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/TipCrpQuota_8672077d-0e32-4df7-84e6-ddd8ba938244?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1374" ], - "x-ms-client-request-id": [ "2b3651f0-60fb-47b6-b5f1-fbecd5dbc0f5" ], + "x-ms-unique-id": [ "2021" ], + "x-ms-client-request-id": [ "b9be1821-6b8f-489e-969b-68d36d69ad3a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1953,35 +1953,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "98ea7294-f791-4107-a552-4819cf1bf211" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13944" ], - "x-ms-request-id": [ "98ea7294-f791-4107-a552-4819cf1bf211" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:98ea7294-f791-4107-a552-4819cf1bf211" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMhRDEacl8H0UaLTQlQSa9LIY0NBO7D+3MO2GA8jzQvhLCu1Kx1RajxSschcFSrJiv7DRYYcsEx5OBSl/TiyX2IndAlnR6pe6VQfC3ku/Z9sbbGCzL3jRNiE7wzfWz9c897zmGR2W5Tg5QrvLUkek" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvROzN8HL6axrR3t+IBxPdZXxdqukNgtUujydstTOyXsKKazRzcY0g9sXvC091QaekEb1N/v5DD+rBDjofy+R/kfZUnaNVdCkvpcPvw9I4f0x2zq0sU8UtYuneGD/mDR1PIHC3sWYmgDxczBtIeWZA" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestGetAllQuotas+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa?api-version=2021-01-01+45": { + "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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa?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/TipCrpQuota_8a5d0a20-3c1b-4529-af97-5922bb90abfa?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1375" ], - "x-ms-client-request-id": [ "c61271e9-ea68-44ee-b617-9331a4503480" ], + "x-ms-unique-id": [ "2022" ], + "x-ms-client-request-id": [ "54f9474f-4b72-481c-81c2-c72a8440e294" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -1995,35 +1995,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e6ce5cd8-0c0d-49a8-a0c2-b0b225807d1d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13943" ], - "x-ms-request-id": [ "e6ce5cd8-0c0d-49a8-a0c2-b0b225807d1d" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:e6ce5cd8-0c0d-49a8-a0c2-b0b225807d1d" ], + "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": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:25 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRKyYwXnWPs5RPir5ujAlVEhoHNrkTabe4Y7FjFhc62uEn0OdKaftfygkXxJPzYpewu+yvC4Hvi9pXTsHXn8HaoC9g87mFAx3tiflTwkp8rseeKvNXw6aOuQtueZigg64mUjSluwpVcYPOEWa+3f7" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQ6SnOfYp48msYC5+WrFQzgI5T2Fj1tL8oaTKHkXiDDTssn1EiO3XyiEDNqh8dYg3uBfbqlPHRs4+2WknNjfQH8N7cKdSaT+W49Tlrdya4Gjf8x5PHqEOA5UZEyGTL4bsygaNSDYVy2WGuISLwOsG" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf?api-version=2021-01-01+46": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf?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/TipCrpQuota_8f4b77d7-f087-42af-8229-42e5f5989ecf?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1376" ], - "x-ms-client-request-id": [ "47ba7fce-8a4e-41e0-b69e-80c0c3a35f30" ], + "x-ms-unique-id": [ "2023" ], + "x-ms-client-request-id": [ "77ac8beb-96b6-4bad-b7c7-6c920573e3b0" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2037,35 +2037,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e479e170-3875-41cc-92a1-cded1eac348f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13942" ], - "x-ms-request-id": [ "e479e170-3875-41cc-92a1-cded1eac348f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:e479e170-3875-41cc-92a1-cded1eac348f" ], + "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": [ "Mon, 21 Mar 2022 21:39:15 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUIMYjPgc9igQjEagpLphKKDkF6ccq/+i9a8I4/E0NdD/6oV5mHA3Q5ga/e3tV1QzWAcbVIoWsoYZNYkuj7fx4pcKNau3Sn4WHQECiY0xq/SpIVXPA9ptL7wPbrieNaOM6SL2TmHZvuyZ8Fe/hF0+" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f?api-version=2021-01-01+47": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f?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/TipCrpQuota_9047ebd8-b5cc-4384-b404-c86fbe8a0c6f?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1377" ], - "x-ms-client-request-id": [ "5a6be992-8fc2-4547-b48f-43ababf9d0cb" ], + "x-ms-unique-id": [ "2024" ], + "x-ms-client-request-id": [ "7904e64a-4311-4f2b-943b-f1702d52f2fc" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2079,35 +2079,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a44b81aa-c2f7-49a2-9096-95f5ad335cae" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13941" ], - "x-ms-request-id": [ "a44b81aa-c2f7-49a2-9096-95f5ad335cae" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:a44b81aa-c2f7-49a2-9096-95f5ad335cae" ], + "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": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHBEchGDXv2jmCipj58UQ984QohxFv7jlAZgJFgRogNGXvXazSZKN6PAP7ZeoTHuSQtbhlSoYQlZ08bvrWgBs38g/h6OzF5aH4+uqjODg8AhRFUYpDE1yUK8mmfwkIE8U0tpJipnSStlnvCE4bXMk" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87?api-version=2021-01-01+48": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87?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/TipCrpQuota_93707145-adc2-4515-992a-48e2b8d66c87?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1378" ], - "x-ms-client-request-id": [ "e719092b-c4ea-4ecd-aa1c-a8274d78b5e7" ], + "x-ms-unique-id": [ "2025" ], + "x-ms-client-request-id": [ "8cd2486f-e74a-4cc9-bb2c-1210fa278483" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2121,35 +2121,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "875c6fc2-1bfc-49a4-9685-50f6d1ba234a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13940" ], - "x-ms-request-id": [ "875c6fc2-1bfc-49a4-9685-50f6d1ba234a" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213916Z:875c6fc2-1bfc-49a4-9685-50f6d1ba234a" ], + "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": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKDOkKUMmuduoSdvY8Tj/QMejSyhEWoM0BuYBGeeUkwWzvC7WOtK46gEQl6/KzmT6s9rHzY0awfHVtGCkPxcy7knkVk2xUirKAKv0/MzPU9cJrS++/MT5D4kqwOm4A3/aZvo+ZPMGXY7sJiWBkAD7" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570?api-version=2021-01-01+49": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570?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/TipCrpQuota_93bb9492-7303-421c-a265-8c9968841570?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1379" ], - "x-ms-client-request-id": [ "4b54d72d-2ca7-4f58-a08e-d99fecd281bf" ], + "x-ms-unique-id": [ "2026" ], + "x-ms-client-request-id": [ "bdfeead4-ae51-4fbf-ba67-212fac497df4" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2163,35 +2163,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "fb070064-6512-460f-9c37-90924098e47f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13939" ], - "x-ms-request-id": [ "fb070064-6512-460f-9c37-90924098e47f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:fb070064-6512-460f-9c37-90924098e47f" ], + "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": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveEAXD7nYHdSv/LpLp7AX+/N5L2SGkVm85hO/VKERhQiDJ4LnMcoqyYYEbjp3+VWXxUcX7BcIRM2BSkqb/+Xr+PlQ2lmOohOJ/4230G+rBA/IgPR4k4oiOJyqs+BsaFLmSsBUW95TutrmtGgvz7NQ" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858?api-version=2021-01-01+50": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858?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/TipCrpQuota_a0a87a00-2a37-49f6-a2c0-21d978e77858?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1380" ], - "x-ms-client-request-id": [ "c044309c-de8c-45b4-8c5f-4b38965e7166" ], + "x-ms-unique-id": [ "2027" ], + "x-ms-client-request-id": [ "7f7db494-b07a-4bc1-b075-c6a0a9890959" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2205,35 +2205,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f83ee3d5-64e2-4123-95cd-1329e263a43d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13938" ], - "x-ms-request-id": [ "f83ee3d5-64e2-4123-95cd-1329e263a43d" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:f83ee3d5-64e2-4123-95cd-1329e263a43d" ], + "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": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvShn61QncPKUj7bRQN4joo+fwTzKnNVtsq3gL7v39WNJNHg/4zJ6G3b9EjQj1GNphSfOOExtJjvhklvCuKns6qZItLgJFb0VulVhpifmWJo8ZyQ5psGYv7qsuJ6PNqpgs/qExzOk+ueaxDxk+brAo" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e?api-version=2021-01-01+51": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e?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/TipCrpQuota_a6849088-b824-4aca-8824-6d661047693e?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1381" ], - "x-ms-client-request-id": [ "0813d4cb-4d1f-4b75-a9a8-c773e911a524" ], + "x-ms-unique-id": [ "2028" ], + "x-ms-client-request-id": [ "7f23ddbb-2993-4cb7-9f81-6eb8fcf24100" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2247,35 +2247,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a485c0c0-6489-4f7a-87ad-552c20d5403e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13937" ], - "x-ms-request-id": [ "a485c0c0-6489-4f7a-87ad-552c20d5403e" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:a485c0c0-6489-4f7a-87ad-552c20d5403e" ], + "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": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwq+v5TaXZUlvutBfzzNjw7kYM2VaCDe4hhvfCKDP90+cgm7l52CVbMVmQMmBZPoIOR0FfUrw2bUgUboph9+6IAyLSavCrC99MX/Ew1HMJ1eS9syRa6oLEgpMLFkOERTNLPxWFIRhg9Ylll1V63aV" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEQzoUWepE41wRbThgauhbMLB8L2s6vddCwmlH014z/BZRkLI2SW4u/PQkRa3wVLzVi01UENTAEO5idEV0GUL0Sk4wpifZIWh7ocbdu+UI6G9sb2p3KWzHTpaS7R3R9DB0ZZklaLJzqQHRHhNyIxb" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b?api-version=2021-01-01+52": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b?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/TipCrpQuota_a8a6a96b-7591-4d02-aa45-c51cd220b17b?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1382" ], - "x-ms-client-request-id": [ "0c8385f3-b636-4e6a-9a1c-952939bc1341" ], + "x-ms-unique-id": [ "2029" ], + "x-ms-client-request-id": [ "8eb9d30a-914a-4671-bd98-e31c4dbe226a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2289,35 +2289,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4c83161e-9c5e-4531-9f4b-8f702b77a6aa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13936" ], - "x-ms-request-id": [ "4c83161e-9c5e-4531-9f4b-8f702b77a6aa" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:4c83161e-9c5e-4531-9f4b-8f702b77a6aa" ], + "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": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5uaSJNrmI4F/zU7beLqEUebNzgHhDQAXBINcI9q76EpNqXERiRaJa/ipfAzTiN3WDLeuC0SH2Oj4MFn2J8FGiBcbDI3Ghs5JQWSE4UF5EbynTg4bO/7fWCuiiQAt6EjI7RmI50nlcrsndKYS+x1A" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2?api-version=2021-01-01+53": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2?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/TipCrpQuota_aa3bb642-ed77-4425-a7a4-924cd88107b2?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1383" ], - "x-ms-client-request-id": [ "c1717b39-a64b-47bb-a449-faf00d1e18eb" ], + "x-ms-unique-id": [ "2030" ], + "x-ms-client-request-id": [ "9e52a7b6-6d0e-455b-913f-4870715b2d6a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2331,35 +2331,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c675e29d-c681-4062-8ecf-7e669985ed29" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13935" ], - "x-ms-request-id": [ "c675e29d-c681-4062-8ecf-7e669985ed29" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:c675e29d-c681-4062-8ecf-7e669985ed29" ], + "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": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:26 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpi7r+LI1mhcZvEBp8c+OxkRN5aMGjOc3VMYRVmxXV8o91FVw69zsgEX19EscrepkjABSWgsuh+/2bAHJs7yLdLPBEv19gznXKlPCKn9S990Zfl9hZk/m1oIBDxY3y6mHCexvqZ0C8bBxBjabfGNe" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc?api-version=2021-01-01+54": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc?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/TipCrpQuota_abbe5e54-520a-4e0c-ace5-07a2c56161fc?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1384" ], - "x-ms-client-request-id": [ "84780fdf-26ab-4350-971c-6f314181ae21" ], + "x-ms-unique-id": [ "2031" ], + "x-ms-client-request-id": [ "f3cc5470-2c1c-4530-b18a-cc555f8ab2a8" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2373,35 +2373,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "284094d1-eaef-4e3f-b4bb-a9636ea8c666" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13934" ], - "x-ms-request-id": [ "284094d1-eaef-4e3f-b4bb-a9636ea8c666" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:284094d1-eaef-4e3f-b4bb-a9636ea8c666" ], + "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": [ "Mon, 21 Mar 2022 21:39:16 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvczl+F4kkE0KRifEMOB4JGgrt6XTSvoSFuLWeg/5PlRxiVv9NWchicEg9OUouvpS9/w9i6yOVkMR0X7u74lmN7wqA+PKJPc5puxi+qKZkL7lwEQKDE/wbfShAzdeW/+TMg2UNWLsqPTtIX2nPAXw3" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8?api-version=2021-01-01+55": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8?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/TipCrpQuota_ac9af888-e40e-4291-bc82-5d8efc32a3a8?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1385" ], - "x-ms-client-request-id": [ "d6896bde-60d7-4875-8312-191cb01c9e5c" ], + "x-ms-unique-id": [ "2032" ], + "x-ms-client-request-id": [ "6f1e9804-2b39-4ce2-81bd-9c032ad71431" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2415,35 +2415,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ffa4f443-58ec-406a-8c7f-bc93352cfeaa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13933" ], - "x-ms-request-id": [ "ffa4f443-58ec-406a-8c7f-bc93352cfeaa" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213917Z:ffa4f443-58ec-406a-8c7f-bc93352cfeaa" ], + "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": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6n7eRiCXMY/GlV2SM7MOzRw2oKny9wRmcIMuByKgOMrUNDYlGmyF1tVig0q1e0cZgI7MgRHZ/zE5/YadBWjFfp+Ptix9qS0Uw2h+Cm92Ju3VnYvg1kbCC8SufEXRqfmYWhl0LXj02wEaOqD4jphK" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae?api-version=2021-01-01+56": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae?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/TipCrpQuota_ad9782c9-2f15-4b9d-af56-c575c0087fae?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1386" ], - "x-ms-client-request-id": [ "e11b4626-ab30-4d63-8e14-9623a516b606" ], + "x-ms-unique-id": [ "2033" ], + "x-ms-client-request-id": [ "0b4f63b1-0aaf-40d3-b81d-ddeb5c413e4a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2457,35 +2457,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "56804d0f-5787-4ed4-a245-265317581af1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13932" ], - "x-ms-request-id": [ "56804d0f-5787-4ed4-a245-265317581af1" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:56804d0f-5787-4ed4-a245-265317581af1" ], + "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": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAExf20n+s0rhDO6QlK53dUWE5w06k/35w2iq3LmPbzyZNRw8/hkhYP9KQYHFeCR4G626NtpsCnFsp4kOYAWmyMT/59cyttalXwp192OTeMuFpcHTo4nX0/B/QAnNd6C5Shfv/n4R21pzeQm1yZ/K" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1?api-version=2021-01-01+57": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1?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/TipCrpQuota_b290f85f-975e-4a5a-bd6e-b426e6c54fc1?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1387" ], - "x-ms-client-request-id": [ "7f6410f6-9593-4c1d-979d-6e57021b3ecc" ], + "x-ms-unique-id": [ "2034" ], + "x-ms-client-request-id": [ "47032561-c663-41f3-bb1d-ac67ec67749a" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2499,35 +2499,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "63752e17-9455-460d-9182-c326f8df32f8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13931" ], - "x-ms-request-id": [ "63752e17-9455-460d-9182-c326f8df32f8" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:63752e17-9455-460d-9182-c326f8df32f8" ], + "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": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyz9IKGqCk6NFB7XhIYMhJeXCK5pAV+yHH+fnl/WDWbqxohvmZJUqQ6STjkPCiHTsN1QRi7pJaZ2v/f0YyE40hNuxQX5JS6QPo4IgsWPCa5z8XvF1K06ZQfvXstbdwHdu/qb9fRCmXUox6JXTgAP8" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1?api-version=2021-01-01+58": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1?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/TipCrpQuota_b4ab4ff6-a823-46ed-9894-cb480a7c30b1?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1388" ], - "x-ms-client-request-id": [ "87e43d2d-8b0a-4ae6-9e5d-e50f5ebf8ea2" ], + "x-ms-unique-id": [ "2035" ], + "x-ms-client-request-id": [ "daa0014c-73a7-44bf-9aca-007b1ab87cb2" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2541,35 +2541,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "415bfdd8-cf05-4af4-b245-555326d44201" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13930" ], - "x-ms-request-id": [ "415bfdd8-cf05-4af4-b245-555326d44201" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:415bfdd8-cf05-4af4-b245-555326d44201" ], + "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": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFXfsJH6pWf4iLRmOc9ddxBxJ8W37dMXOTloVLub9B8n1JFtFpNHCr2soSqHDfl/VBwwJQNb4pcD1uMqZWGCMQNMLYYkvkdLEOD5BjTu+qmcFmgFZ/4j35y/1lb2hYHGNMR887IbOzD6AG55fQf1Z" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71?api-version=2021-01-01+59": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71?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/TipCrpQuota_b5cb16df-b8fb-4a7d-8ebc-1c16aa410c71?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1389" ], - "x-ms-client-request-id": [ "13ebdb6a-c60e-4ed7-8de7-e6bb4546e0d3" ], + "x-ms-unique-id": [ "2036" ], + "x-ms-client-request-id": [ "457c1791-2e63-48aa-8289-086e49c52d7e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2583,35 +2583,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cbc90828-7d61-46ba-b398-e4f876a83cb4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13929" ], - "x-ms-request-id": [ "cbc90828-7d61-46ba-b398-e4f876a83cb4" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:cbc90828-7d61-46ba-b398-e4f876a83cb4" ], + "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": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvV3z3caYJONU162kpI0X+ZLdvVQgvrcbYhyvvX0RegXmLb0hJW86uD6qEAYt5Hz+beAzG5nM1U5qYVd4ghNR67MYgrPAGiQuGCXok8AHNu3xZHliSN6rVDgzdDjBAjuz34x16UuZp4/i2ECOujMSE" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQ6BdQy1+waa78CJKsaWFP26ZdZsBWPSMtEufGOfILKf3+QRbmtApKqWDT5Bo+1pmEw64pfYMq730DYuDf0y1axtgHvMBk167iFHGAG38w5vLcEIzvDJKkY0p9ZRuwfFmmRUBWhu0glPVCamqousv" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663?api-version=2021-01-01+60": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663?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/TipCrpQuota_ba80852b-5efd-43b5-87c9-f33112621663?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1390" ], - "x-ms-client-request-id": [ "fe81b211-1d41-4fe9-9959-c0b8b65d0949" ], + "x-ms-unique-id": [ "2037" ], + "x-ms-client-request-id": [ "09965fa4-e274-4968-ba55-a30793ad36fe" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2625,35 +2625,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "042e1ec2-5426-4625-afc2-f9964cdab428" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13928" ], - "x-ms-request-id": [ "042e1ec2-5426-4625-afc2-f9964cdab428" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:042e1ec2-5426-4625-afc2-f9964cdab428" ], + "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": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlgQy6GEcLG/3/B7xkqARr/nnxHZCZupPhf/TLhH1KSKW4bekcXeUYT1GlNknsUem3kWrkP8XjlSIeC8mlQ/zRWs7FHNM92gN56maAAKnlrCMdcZggPnARC4jumguA1wsY8Cy2+98m4QSfNOO+l/6" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26?api-version=2021-01-01+61": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26?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/TipCrpQuota_baca4336-7198-4fc4-b949-e5e4d19c0c26?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1391" ], - "x-ms-client-request-id": [ "951435b5-db12-4fac-aaa5-67310f45bdd2" ], + "x-ms-unique-id": [ "2038" ], + "x-ms-client-request-id": [ "ac4502ea-3463-4d03-9706-a5576d050b8d" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2667,35 +2667,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d4a04eff-0148-474d-abf7-874bcc81f25a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13927" ], - "x-ms-request-id": [ "d4a04eff-0148-474d-abf7-874bcc81f25a" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:d4a04eff-0148-474d-abf7-874bcc81f25a" ], + "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": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:27 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxEx0h+HiP0QkS6/vT6bmKTTV3TXEpjGbWa9ptzCc4RwtaNmA5eu2yGlKEtmRky0JFKc63Wy5VMoje7L8DdFK+X6u69wVUDdZeLOCWMH1nu2niQKIWV+dF15M663ACJIyYgDPVkTjPIzwZSaBeLyB" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMaFT1VefESPetnR7HsvnzPCZKzG5P8iew3/B6iKFLvBb+INra4CfX4zTnUAU2vozWOtDp7T3o3ueYRole4G0hc4q3FuXW2Z4juI9TXMVu7ABVYfon7BZvnICCLGZlqupQ+fZAqVfO2dU69epUhAy" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2?api-version=2021-01-01+62": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2?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/TipCrpQuota_bc5bffc0-57e0-4eec-8c22-8d0df069d6d2?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1392" ], - "x-ms-client-request-id": [ "c50e0679-9652-437e-bd50-28eec2adb078" ], + "x-ms-unique-id": [ "2039" ], + "x-ms-client-request-id": [ "cf2fd867-6c99-43ca-a8f7-f706ea4591a1" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2709,35 +2709,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5a6ec7ef-0556-4ba4-a700-5b511d5d0d94" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13926" ], - "x-ms-request-id": [ "5a6ec7ef-0556-4ba4-a700-5b511d5d0d94" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:5a6ec7ef-0556-4ba4-a700-5b511d5d0d94" ], + "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": [ "Mon, 21 Mar 2022 21:39:17 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEAfPVaBEYj+tKsdx6Do1tyHpUGzHw+xOi6tFR61qyDfkdDmsk7nxmpgp1wUnrSzTuKQzjvjiG0Ew3+LWhIeOuL6tAHozVLqh/LzLP57hCcRk8SRKDSJzdHlQeQc4k1sk8CwW/fiLuIoadz/fsbXZ" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5t9epVf2UQYmCkDgZYKwHt4UOlqsIhbY//BXaUrAysC7I4IhEcTIEbRWdreBzEHoD8ggtjn2Xc2eixG7IMrR6UmoMPqghU8wuOc8aE+kkLNKd9bnATgLOlXSAt8T6YyRC218HRwUnpvxs+R8v0Ol" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8?api-version=2021-01-01+63": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8?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/TipCrpQuota_bdf88253-a67f-4bd4-aa24-e751df1ac6f8?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1393" ], - "x-ms-client-request-id": [ "e6cc721f-e4dd-433a-b8fe-14e86720ebb6" ], + "x-ms-unique-id": [ "2040" ], + "x-ms-client-request-id": [ "01a2bf3c-9734-4c9f-96cd-5da3cfb5f37f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2751,35 +2751,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c57e500e-0ceb-42ad-877d-503e80eb93fa" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13925" ], - "x-ms-request-id": [ "c57e500e-0ceb-42ad-877d-503e80eb93fa" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213918Z:c57e500e-0ceb-42ad-877d-503e80eb93fa" ], + "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": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlDHymDgGhaoaSMOe97uTK24/yCb0XhbKkC2i4VCRpJPnr6w9LclVVB771z2mW1S26uWl2tmUG+719JVGf+QN0Y50FH4d83b8Ve/PA1AXt7HsbGZLB4utt5HfwfHuJ/mIqtHAFMSYg4B4HLqDJhhs" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979?api-version=2021-01-01+64": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979?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/TipCrpQuota_bfe17411-028d-446c-badc-ef39a6ce2979?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1394" ], - "x-ms-client-request-id": [ "a749fce6-5b85-4aad-ac32-3b7e033dfdbf" ], + "x-ms-unique-id": [ "2041" ], + "x-ms-client-request-id": [ "227360f1-9fc0-4dc1-8e9e-0424015d0c77" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2793,35 +2793,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9cee2836-8900-4994-8ecf-283aaa0b1982" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13924" ], - "x-ms-request-id": [ "9cee2836-8900-4994-8ecf-283aaa0b1982" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:9cee2836-8900-4994-8ecf-283aaa0b1982" ], + "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": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXC88pm9cBGUrV5DROxOFgsWBesXoHWAZ5YLpania6HAt4RnzoA/S9BwS3gZCqf2Cx261epG+2LbiT/YWUQZdw0pBpJTkaxXCDfaPPBonsn18162xpb3NTKCgs9uIo1/cevCEjUCeGO9deivvwdb5" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWJBiAtxd93oUX93SU7QlGCC/oIt2v6SQCk+NzSC1KjZKxwt3lwSO4qIxQaiYxCKezbunNn5QC97lxcstaA9DZSlpyl2xLzPNFjQL13neCte9oBOSS8Xe/LVPunPIWC2CaOnAtuRaPUZm2YDOqDZD" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888?api-version=2021-01-01+65": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888?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/TipCrpQuota_c7982087-341d-4eab-8283-3bebbf3cc888?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1395" ], - "x-ms-client-request-id": [ "7597b4b9-7bf2-4d35-ac17-332f77fc5448" ], + "x-ms-unique-id": [ "2042" ], + "x-ms-client-request-id": [ "ea26aa8a-b96a-4ab9-8c8e-7f9976859e38" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2835,35 +2835,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7bc59dd5-0119-4337-be23-9e296a93267c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13923" ], - "x-ms-request-id": [ "7bc59dd5-0119-4337-be23-9e296a93267c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:7bc59dd5-0119-4337-be23-9e296a93267c" ], + "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": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkpTwfVl4tKxXi+xldFwXCg+S9891axw5A3hCLpzlG3/Hmyw3JMvcS6k6UHHFKpOBdSOfu4jNnYnIYzNQ9iJrIl146fHzzjUYZWhkuTbbQLA3pcSWrt7GUogJuGKH1Wn5E/HnSpbV7muxhu0VeRo0" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca?api-version=2021-01-01+66": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca?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/TipCrpQuota_c9d7f60e-0f46-41af-8938-8822c45822ca?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1396" ], - "x-ms-client-request-id": [ "5ef8f76e-f149-485f-85b7-534eadddc035" ], + "x-ms-unique-id": [ "2043" ], + "x-ms-client-request-id": [ "548997cb-daff-4e12-8d6e-4bc23a5cb0f9" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2877,35 +2877,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b497fbb7-0162-4a6e-bb55-01958b1f547f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13922" ], - "x-ms-request-id": [ "b497fbb7-0162-4a6e-bb55-01958b1f547f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:b497fbb7-0162-4a6e-bb55-01958b1f547f" ], + "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": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzEjp4QE0zGGWlU4XY7A2+D2lgp/zDw8UdFmyiovgVkkf+da4OCWcM1a6m5xQyrS0nvCN8uSuNtxoRBqG/kXgJo2gyYmGmv02tcsMZebuypiUJhJqUmqqHdvzVUHEvH2y/kaOZIw0qy2r7fvslLND" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f?api-version=2021-01-01+67": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f?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/TipCrpQuota_ca271339-e8e7-402f-8e2d-1dd51c1cc08f?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1397" ], - "x-ms-client-request-id": [ "83815c84-c64e-42c3-b1df-ba0fdf488ece" ], + "x-ms-unique-id": [ "2044" ], + "x-ms-client-request-id": [ "a1626c75-57c0-4568-b68a-236be18f5338" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2919,35 +2919,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "25e28e8d-0214-4487-83a5-1622d63ff6a5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13921" ], - "x-ms-request-id": [ "25e28e8d-0214-4487-83a5-1622d63ff6a5" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:25e28e8d-0214-4487-83a5-1622d63ff6a5" ], + "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": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlYTUwhh8UKgfae127lIjL3HXrrOlu7OkZV/jg7rCoZpp7m/IEMGhPzy6RNMD8RX7X0iuzoLPQSCwHFqilTViDKeOGQkq2raWUa7FuaT3rAM+fbXRXyTUMxqlYyrKXxucM9i0eDuyzHHgFWiQDV5d" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWB/ORQFIBlXZTp2ShG4S3mKhvDDf99cq706I9Fho1SaqPAvb0vDNntbluLhrNJzpwgqB265hRmaCdjco7Z6pssJatQrytyc1xNTyVJtqZoqsn3XDq5lQR1xOEvgDncxAcO6w1OlneXp613Yuai42" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d?api-version=2021-01-01+68": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d?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/TipCrpQuota_cb4cd006-3853-43cc-ba82-8eeceed85f8d?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1398" ], - "x-ms-client-request-id": [ "fa346eff-b93b-4c82-a23d-8a05317f02a5" ], + "x-ms-unique-id": [ "2045" ], + "x-ms-client-request-id": [ "488c36de-b5a4-4b95-a000-b56626527351" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -2961,35 +2961,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5f5ed32e-ad2a-4515-8546-eccf58ba9bd2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13920" ], - "x-ms-request-id": [ "5f5ed32e-ad2a-4515-8546-eccf58ba9bd2" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:5f5ed32e-ad2a-4515-8546-eccf58ba9bd2" ], + "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": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvf0uVzaG/sywI3NS8QS/vAxPORyO3E2rF64h3w88u4Qkp3/2g2H8Bvz6uHihLZ/Q2nJmH6P29+mRtaTzAEit6skRjLA9cUTO1j73eBch2ORWVNqAar2vPplbbcHWwLI+joATNDsbqOSk869LFBzHJ" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968?api-version=2021-01-01+69": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968?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/TipCrpQuota_d3a481a6-f056-42ad-ac1c-9209de0b0968?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1399" ], - "x-ms-client-request-id": [ "1892713c-533f-49e0-9aa1-a2a120e6d74a" ], + "x-ms-unique-id": [ "2046" ], + "x-ms-client-request-id": [ "5be3327d-93b8-4eef-a4fe-597116a32296" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3003,35 +3003,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "42d63784-7e2b-41ff-9682-db9b8b4848ac" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13919" ], - "x-ms-request-id": [ "42d63784-7e2b-41ff-9682-db9b8b4848ac" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:42d63784-7e2b-41ff-9682-db9b8b4848ac" ], + "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": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:28 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCJ5tgYYkDo3B6FFJQidJB4N1pkSxJ2T7UGubNcd3BC1YnS5Ih7xSiFW/mOy2hMFdIAQl26FDr4A5kadIAhwB5pSahINr29cY0OCkD1RQeaqZ8ikzFxCnDo7VRJrjvfMeGsSoB+K5bvP6Ozg5prjt" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1DeViq3LJpUrLm3S7gb7zuWFSOfdpv5coxAgSOcSPpQhVYaN65A0kA/C7xfhM4LqznRruZfDLRPa0Sadxm6N7+3bMEuSpTq9LbmWnOUb6h9YUE/j3Jnif68ouZTeC1x9jY5fSbnRed8XUo2gzItH" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794?api-version=2021-01-01+70": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794?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/TipCrpQuota_db5cb93a-ebbf-4d8c-9b0a-660ebe3f6794?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1400" ], - "x-ms-client-request-id": [ "6254fe8d-142a-4664-88ce-8bd436d92f2a" ], + "x-ms-unique-id": [ "2047" ], + "x-ms-client-request-id": [ "3f4dec2c-b748-4eb3-90b4-a56fe38ee616" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3045,35 +3045,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e66cd4d3-7846-46aa-ab8d-8938511d079a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13918" ], - "x-ms-request-id": [ "e66cd4d3-7846-46aa-ab8d-8938511d079a" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213919Z:e66cd4d3-7846-46aa-ab8d-8938511d079a" ], + "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": [ "Mon, 21 Mar 2022 21:39:18 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvylp34LFZbqDSFOAz/hOUs18st3TqXQf/EqmLukNeMnn+Ak+u2Hbks4xg/pgxdkYO7Ya8990WUTe3iNX+3x8bf2GN0xy6M/ix5sg3NB5PcH1joJMSaTXtw9r70cv67oEX3YwIBMSpvsy5Y9OJO1x/" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTDDgCcnsZ95XICPXrZFNRDzrlMhTOHIGym4S2Q4qG7jsTANbgMBLG3gzm5eGbJMbt5kMyy5Ig1+tpr7zTSAYVJWKc4C4cMQyAoUqX9u01Q6gDzG4RULgdWo299872VGUcgqLX9B0BQUpPkPCFCU/" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d?api-version=2021-01-01+71": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d?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/TipCrpQuota_dba87e4a-dbf9-41ba-8d32-5c7492d2ee6d?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1401" ], - "x-ms-client-request-id": [ "f1b3011c-e7fd-49df-b6e8-3fc3b4a056f8" ], + "x-ms-unique-id": [ "2048" ], + "x-ms-client-request-id": [ "78e30bdb-aa01-47f0-925a-837405dfa7aa" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3087,35 +3087,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2cc4750c-88f3-4423-83ef-1d64bc101218" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13917" ], - "x-ms-request-id": [ "2cc4750c-88f3-4423-83ef-1d64bc101218" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:2cc4750c-88f3-4423-83ef-1d64bc101218" ], + "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": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvSQj58/5qNglrDhX0iQbNGMXBcQWVvJF6Ul8ZOFQefdwAszQsGSPd6ah+iauf0adeEGiNKDBzeZDDhjyfhTVpkuSsrTAcy0oq41LrfgzWRK9n+hJIbYmugfsdVH9DIIrTBUxSiy7x+X+3RD12hXCK" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvo/ih6Z4t5vIDMOraeaQVZZ8QZfn5ahwoqVIKxpxfynkEIDBFz6MdW9YEJZUkO+zhaea5H00xqZ5odBdto3QtWfOyOdBBIqLsJ1VoisPEgmmIAJNTfshTHcy3sleA+5IjLa2Oi6PTEMrHSkhy4PVo" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5?api-version=2021-01-01+72": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5?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/TipCrpQuota_dc1e991c-6baa-4178-a8b9-7cb390637ad5?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1402" ], - "x-ms-client-request-id": [ "a3fdc1a1-7b7e-46ea-938d-79ebd278c69b" ], + "x-ms-unique-id": [ "2049" ], + "x-ms-client-request-id": [ "8744980d-eb37-4b2b-9e3c-f5b3d8071aa6" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3129,35 +3129,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "237991cc-e8a9-43c3-902f-bb15e0dfdb1f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13916" ], - "x-ms-request-id": [ "237991cc-e8a9-43c3-902f-bb15e0dfdb1f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:237991cc-e8a9-43c3-902f-bb15e0dfdb1f" ], + "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": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE6GomKCPaepG9Xm5QfXlIdGwq8pmBoxjqevhWC6SeIJhm937f0lJEOAaE6tgNx6lHVsYFxgJNX1Nar0VnpIoUw4kCtXXco38URLVNvsUq2BhSt9MED3SRRIvdm+C+NHMfskIGgqY1U+p3tYT84hf" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f?api-version=2021-01-01+73": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f?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/TipCrpQuota_de579805-f291-4f1e-9a3d-87f4d64a5e0f?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1403" ], - "x-ms-client-request-id": [ "9b06d4c8-ae34-46c3-9577-57648e19c227" ], + "x-ms-unique-id": [ "2050" ], + "x-ms-client-request-id": [ "287a9b15-128a-4eba-b559-61adb983d372" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3171,35 +3171,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d500fa67-b45a-42e8-afa4-fde5a040c940" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13915" ], - "x-ms-request-id": [ "d500fa67-b45a-42e8-afa4-fde5a040c940" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:d500fa67-b45a-42e8-afa4-fde5a040c940" ], + "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": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDjxEno5NXsHajfRs9WjwT3rs0GrDQ2umJku/MoiGAIix7QHi07spdftQHKwvOjw6UBlS44RZPgBi+MTDAar7VIToPyTCpN8pIcGzSvCVWrj2Duz6ut6GtulO2quhH0e+lNz7rq1KH5nY5OjJSM1e" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8OH5+gIx3PPNhFGj4JECzBsHSiyt1YHtdxzg8pohjp5FieymDqe9MVcMbJY30c32XCPz8jLfgDiH6YmGtkY1WXOnsBdOhVRbhxcv5lHjPGTG8MlDWk891OgoaJMhW/P6B8hkcj+zrG4FL7zof1Gq" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41?api-version=2021-01-01+74": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41?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/TipCrpQuota_e0aa4e4e-dcdb-45a8-8c8f-852866208d41?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1404" ], - "x-ms-client-request-id": [ "17c0325b-0f80-4507-96eb-0f31d2de8c8e" ], + "x-ms-unique-id": [ "2051" ], + "x-ms-client-request-id": [ "dbc8dbd1-f430-4c2e-bd14-93bca558ab1f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3213,35 +3213,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cae46721-a4c9-444c-821d-9173613bca55" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13914" ], - "x-ms-request-id": [ "cae46721-a4c9-444c-821d-9173613bca55" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:cae46721-a4c9-444c-821d-9173613bca55" ], + "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": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0JUEV/hcXsWF/VcCodh87prJDP8Vsd7U5R5Z6czYZA4VttTl0TWJeQFaQIbi4tuY8SEyvq2ObLcjaeso2PX/JF9m7mBdk3byCSyIh7wnJO2qRmU/6NA8VPTGH8b3K+8wW+j5KnxznvpTScxLFOM7" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrmb5kA8cQ94MW8Su0O5mXD5qFBpju8pDMC87Ed7yh9WZ8hyBjfYRsGHdBmggTII3mUqunjwioQLC/FQUAkD5BvJrIs4gtXnymS7AQakG7aeInMy0jqTXHJY9ybSl15v9A2P8ocMwBpXtCiprMXJS" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f?api-version=2021-01-01+75": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f?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/TipCrpQuota_e3a4e1a9-b940-47a9-b7e5-761d1b4d312f?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1405" ], - "x-ms-client-request-id": [ "78f088d1-71b1-4f9b-9c8c-25f1d7cf4d3a" ], + "x-ms-unique-id": [ "2052" ], + "x-ms-client-request-id": [ "0e490545-58c8-4a2a-bfd8-f38e81c73001" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3255,35 +3255,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ff958011-dbd8-43a6-8433-7d248a9e8e76" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13913" ], - "x-ms-request-id": [ "ff958011-dbd8-43a6-8433-7d248a9e8e76" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:ff958011-dbd8-43a6-8433-7d248a9e8e76" ], + "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": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvX+qOryjSZJD+42MwwhE4D1ay+dnhYLZe0sZWZ9MNARazLSUlcGnz9Gu9bS5SfsYS1vQJY4Llry8PYWAuchen5QNp1w4nzgqdiONzKNVjyuYvfAZ8se6Vge8u+P+WtTL7DjAjCSyWt5sT2RnCKiSD" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f?api-version=2021-01-01+76": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f?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/TipCrpQuota_e4764fba-b02a-463f-a234-b3e20c22fb2f?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1406" ], - "x-ms-client-request-id": [ "8b6fadb3-3000-4d88-94a8-f46276d37457" ], + "x-ms-unique-id": [ "2053" ], + "x-ms-client-request-id": [ "330f06ff-2120-4bcb-aebc-8cdc7bf8ac17" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3297,35 +3297,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "577e8860-d8fb-4bc4-8caf-32f8f187a86e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13912" ], - "x-ms-request-id": [ "577e8860-d8fb-4bc4-8caf-32f8f187a86e" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:577e8860-d8fb-4bc4-8caf-32f8f187a86e" ], + "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": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBmqq3rpMdaAf/btTvjMwC4lpavqw8iV4HfA6O/ZfX1iUUCpxEEAbZZILlJbKCsaILEoCV+I6EbFT95MK6y0nahgcy9lF6Jx36KP++kNdfVfhaUa2zxHhbd3z8YmLtFcplyh4kCCb5h/6YJ2Hp5hb" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d?api-version=2021-01-01+77": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d?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/TipCrpQuota_e6bcd546-dc95-4682-b79f-6a9b24088f3d?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1407" ], - "x-ms-client-request-id": [ "cf797d70-c7a2-418c-8e79-bdedb48ff5fa" ], + "x-ms-unique-id": [ "2054" ], + "x-ms-client-request-id": [ "01c5e52f-7bbd-42ef-ad75-e01f66af2470" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3339,35 +3339,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0bec7044-7eac-48d9-939d-19e8615be608" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13911" ], - "x-ms-request-id": [ "0bec7044-7eac-48d9-939d-19e8615be608" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213920Z:0bec7044-7eac-48d9-939d-19e8615be608" ], + "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": [ "Mon, 21 Mar 2022 21:39:20 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:29 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEc2d0BvbQ53WzJLSgJDhQSFaSpMJtZ2aJtFym9NX/riJYDd7KyjQHvIAr3QmQOnTeQM0aUt2wLGvhr3CDaXlNwDFwQU/q17ZLmh57GNvUpXVr0CusbUWCPTi0kisoI8NmKNsQD6rnazdDR3vF0IX" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOZTzYmxUp/YDhvI6WBp4bhUOsHgF4YURkrRUWDL21ugrltQ1SVx2pKXROSRMM66R7hVttLEHxTqd9GARxarVRFGt424FcKMp9a38SUFYqvRkjqwM0L1bC+jvuOeJ6ylAoVcZZvGrJ1jO22B8P3m/" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4?api-version=2021-01-01+78": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4?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/TipCrpQuota_ec1c8341-c981-4558-aeb4-9dfd2f3df1e4?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1408" ], - "x-ms-client-request-id": [ "1469ab49-aab1-403a-82ea-55e4f4d95c33" ], + "x-ms-unique-id": [ "2055" ], + "x-ms-client-request-id": [ "43ffd318-7b74-4807-808e-5cc82563566e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3381,35 +3381,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a3606b2c-cf11-4f6c-acdb-8f28be5e6d31" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13910" ], - "x-ms-request-id": [ "a3606b2c-cf11-4f6c-acdb-8f28be5e6d31" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:a3606b2c-cf11-4f6c-acdb-8f28be5e6d31" ], + "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": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+JEvlQbQCC/Eu/rKI/Ik9GL4adwXYevY+p8gJC/1oENmt5XhmW3AgIowJYm0fVN4YwE+GTrpRqHJpnbucWzaVGbKeuu6rAYtoIGrGIrud6i6UJfQJ4R7MWEC77ad+aZYmO7godWiXUFKU2rjzGY2" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91?api-version=2021-01-01+79": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91?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/TipCrpQuota_f58ae7f5-4f36-4464-a197-4b113f4ffb91?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1409" ], - "x-ms-client-request-id": [ "130e9881-bb18-408f-b0aa-d26196cbe0f9" ], + "x-ms-unique-id": [ "2056" ], + "x-ms-client-request-id": [ "9c3fe3bf-d442-4e62-993e-0a801bdea7a2" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3423,35 +3423,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "4c75f068-9485-422d-95f8-94fd59f4227a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13909" ], - "x-ms-request-id": [ "4c75f068-9485-422d-95f8-94fd59f4227a" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:4c75f068-9485-422d-95f8-94fd59f4227a" ], + "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": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvv5LcrCxWBkCXwz2MTc1MJ7trkMooMPi8dBA3hCW0PH0eGcvUuC6T4F7g7Dsi6iOcxjPtWuHEzIBDLSMK43jZ+Iq4THdPqwC5iVsMcRkIykyzqM/PervQYtoxwoRGY15mN96NUAevGm9qC6cANoYe" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540?api-version=2021-01-01+80": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540?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/TipCrpQuota_fa1f8bc6-2ce4-4687-8e82-8ebff8f5c540?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1410" ], - "x-ms-client-request-id": [ "63d1e48e-14eb-45cc-80d7-8815f041a81f" ], + "x-ms-unique-id": [ "2057" ], + "x-ms-client-request-id": [ "645b552f-8a56-4df6-b2a6-e0dc13677fd5" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3465,35 +3465,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b7f0e1fa-972f-4f45-8d91-2c1896b00953" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13908" ], - "x-ms-request-id": [ "b7f0e1fa-972f-4f45-8d91-2c1896b00953" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:b7f0e1fa-972f-4f45-8d91-2c1896b00953" ], + "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": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveEUW0fzRfyMcVJ9jOmlYnHWUn/zTPos3HD5zrbX3fF4FQZRtF9vVt8Ros3ji8wSKdT2nO+KIzOP5FbjZUi3Gp1vWVfUwvoXSKIFcJg0U1ALOo5vllE8hZYiSN2NzIbw6P2/bmM7rtyD5ExVSfEir" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8NiGBUihr8q0SSWEcV/ZxjLUoqKDmf0GpTLTvzpi7lmycxhaYqU44q56GwzBNtqdJcfBRcKwHEuXDfeV4n7c0UqgBC7sWgRZ6bQMGJFCcf++VuQ5oEQa1k6xGJslUpf+InKytKQVT6AygTDODZem" ] }, "ContentHeaders": { "Content-Length": [ "536" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf?api-version=2021-01-01+81": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf?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/TipCrpQuota_fa213167-1f62-4170-bf94-85b740ddeacf?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1411" ], - "x-ms-client-request-id": [ "2b728a6a-6200-4ea9-b451-bb8fb2ebcbbb" ], + "x-ms-unique-id": [ "2058" ], + "x-ms-client-request-id": [ "2841752c-15aa-4abd-973f-3cd1e242a23e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3507,35 +3507,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c6e2d27e-4a23-4822-a461-a5da23eeb9e7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13907" ], - "x-ms-request-id": [ "c6e2d27e-4a23-4822-a461-a5da23eeb9e7" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:c6e2d27e-4a23-4822-a461-a5da23eeb9e7" ], + "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": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYHawjesPtrsS4n42olOkJYlVRipP6d1fS3nafsnWtlOEDpqaB+CvQYUCVYSdAsCMPVFHXh+sFlbnCQ8Kypr2Z0sq3QBdmN4yA+o59/fK04JKs50iWwPO4JASSk3VsOt6l/KKnS0zwMOGh1KZlySb" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6?api-version=2021-01-01+82": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6?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/TipCrpQuota_fa281a5c-8251-4fb0-99b8-39c14a4b2bf6?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1412" ], - "x-ms-client-request-id": [ "b340f8bd-6d6c-44d7-a5e1-59ec692ce48e" ], + "x-ms-unique-id": [ "2059" ], + "x-ms-client-request-id": [ "3d403871-57a6-4238-92ee-66caad3fe2ce" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3549,35 +3549,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "63d7cd69-ca37-41ef-bc6e-0cfaa532cdb1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13906" ], - "x-ms-request-id": [ "63d7cd69-ca37-41ef-bc6e-0cfaa532cdb1" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:63d7cd69-ca37-41ef-bc6e-0cfaa532cdb1" ], + "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": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvglq8WmmkAg7ULSw3RK1AWudvE32LUyVlx5wb7RNiU8MAhP3k62znJ39m7Tld5h3y34HfuHZemPzkAVJjcxcWjdiHFaB3qNCAM6GNHqMv+1BY7Qu/TrZX6HcIMMlIOgwIi51YgiTZ9KIx7uhytPn3" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d?api-version=2021-01-01+83": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d?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/TipCrpQuota_fd31a04b-7dba-4a91-9959-cff04fd6307d?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1413" ], - "x-ms-client-request-id": [ "ccc42201-8789-4b64-aacd-8730f97ac780" ], + "x-ms-unique-id": [ "2060" ], + "x-ms-client-request-id": [ "71264e9f-bec6-4bf3-9eae-8a0ab9a3aaa1" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3591,35 +3591,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "293716da-9211-4bec-951c-46505d06dbf0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13905" ], - "x-ms-request-id": [ "293716da-9211-4bec-951c-46505d06dbf0" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:293716da-9211-4bec-951c-46505d06dbf0" ], + "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": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv58t4dn892NIKHfjYLw8V1s350HOrNSu9aXjLN1bv2zbrBy8QyS55mangCftvLJr5w7JAWq9QmSQnpeVofeSvgjOO9zOhDyijQXGMWW79uAbXgRxW++xXNGrAyDhv00CCyAD5UnnLCoy3LI2IBp57" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04?api-version=2021-01-01+84": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04?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/TipCrpQuota_ff4b6d41-e53e-402c-b184-949c9acecc04?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1414" ], - "x-ms-client-request-id": [ "d8820025-87cc-4e35-bfd4-49629f5ee566" ], + "x-ms-unique-id": [ "2061" ], + "x-ms-client-request-id": [ "6c84782e-f644-4b68-812a-238e70dd4a3f" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -3633,30 +3633,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "794bdb91-6c46-41a8-b326-e7544e3564a9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13904" ], - "x-ms-request-id": [ "794bdb91-6c46-41a8-b326-e7544e3564a9" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213921Z:794bdb91-6c46-41a8-b326-e7544e3564a9" ], + "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": [ "Mon, 21 Mar 2022 21:39:21 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:30 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtPer976aU4CZ7EgSIgoT011fSqEQHLeiz7pMOI3gRvK8F50pZ6Mm3Uj8HunCjxrw966uFrsdrhRz8c3DT/Om3Bi5ttGqH6ZQUdH/LDLCPKhod7lttKCyfaJW+WdPX/q3xHyjZQ3tJQ09H7uKllNA" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01+1": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", + "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": { @@ -3670,30 +3670,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "ecc692c8-888e-4029-9b84-91dbcf46a48c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1060" ], - "x-ms-request-id": [ "ecc692c8-888e-4029-9b84-91dbcf46a48c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213922Z:ecc692c8-888e-4029-9b84-91dbcf46a48c" ], + "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": [ "Mon, 21 Mar 2022 21:39:22 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhINtOZVKKNo1So54KQzPKlyZDVR3cAKKV4LzdzTpZGQgTC2SN6KodmmZG8pVbt+wEp869e//Fewhtde/ndESAYDvByJhhZF30HRZAy8ReAht9ivejaOpN77Wsg6kU8A3UP65e4FDWaGeGx8qeQhL" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+2": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", + "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": { @@ -3707,30 +3707,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2def7042-23a6-4961-9674-161bec110989" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1059" ], - "x-ms-request-id": [ "2def7042-23a6-4961-9674-161bec110989" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213922Z:2def7042-23a6-4961-9674-161bec110989" ], + "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": [ "Mon, 21 Mar 2022 21:39:22 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvu7jKslgXiWSGXU+pWH6cvspz9M4aykLmtUXneNdv3mX5JQa/Fuhd5Dlv3rzWlPlOa7HcPYpwUSrKSG2+M23Imt3FHLjTU/ALcQ8gc3HI6yVjCObn+r7pkYFv2/x7ZMpDJ6q1T2KMkg09zXgqlQwW" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwxEsup6jLQXyQJ0EE/fGUQjFX97JR1Gu3zhs3LcQAt5HgJ5O5JVRmWAqZH7q8xCeGwtlWwyyYP8h4nC5bhfN79uR8VxELaGBIQ2L6zd9RllwehNvchkJcTWeBF14muSLCzwCXyS26Ryu3Ee7CYd9" ] }, "ContentHeaders": { "Content-Length": [ "449" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+3": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", + "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": { @@ -3744,30 +3744,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cbafc826-599b-45d3-bb77-c7def4065904" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1058" ], - "x-ms-request-id": [ "cbafc826-599b-45d3-bb77-c7def4065904" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213922Z:cbafc826-599b-45d3-bb77-c7def4065904" ], + "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": [ "Mon, 21 Mar 2022 21:39:22 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0buvOHJeltDmcmuMXzcRNdbRDnwEV6AVlu6RTItNQcEHqNTW9V0MIQk5Q28HMlJGLs1T5XSkbX6YnU19jXn+TbNlAksqH24LEdXmfY2CQ5JeJrqx6Nl+5bQVOE2+qYN0PtVCWDBXIvnTC/T1ePzI" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+4": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", + "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": { @@ -3781,30 +3781,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a27daff8-8e58-4473-b0c1-c20176fe7e29" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1057" ], - "x-ms-request-id": [ "a27daff8-8e58-4473-b0c1-c20176fe7e29" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213923Z:a27daff8-8e58-4473-b0c1-c20176fe7e29" ], + "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": [ "Mon, 21 Mar 2022 21:39:23 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:31 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/L4mGQVbBpRFKfMWue9rhfIMz61/5U7z94Sx5rzp5QrEfqQEvCqvQJaoOsVExUkC7FfXeuJYDMKzeA2Y1TYtzfyOCxsXDT5ZkKeBiugJYh1XWplJvFKr1g1r/z2ZqckuQuFYH6D5MYU6HUqeKVW7" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvovshcYw1U+1rlbESQfW4Lzft88xxKWL8Cr0iAZXedwAIYk9xZpDhnjqPX1i2JFtVKDVbhOKca2nDhHBFkNm4Xoxga5LqcBMP+woHvQfLbnewLIUAe1OqGbkZnJqLUFThiY5k0kknbzrnrDdMcfjL" ] }, "ContentHeaders": { "Content-Length": [ "449" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+5": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", + "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": { @@ -3818,30 +3818,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d858be02-f6b4-416d-ae26-0c603be5e9c8" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1056" ], - "x-ms-request-id": [ "d858be02-f6b4-416d-ae26-0c603be5e9c8" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213923Z:d858be02-f6b4-416d-ae26-0c603be5e9c8" ], + "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": [ "Mon, 21 Mar 2022 21:39:23 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZmc6sRRpJOG7v3VZhM05yCYPd+n3VKpn23IR1H1bPoZrFgkNFBw8a5lA0Okz6zBVYI+QuelQPbIh/F6rVSso2cG+SY3ke0z+44RgvY9otnIHz5sRfqt96MtkWIBnYKPa4zrChB+JwBnxxcPC9d4A" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+6": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", + "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": { @@ -3855,30 +3855,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "3b2fa1bb-7b04-4003-a228-bda8cd3066ce" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1055" ], - "x-ms-request-id": [ "3b2fa1bb-7b04-4003-a228-bda8cd3066ce" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213923Z:3b2fa1bb-7b04-4003-a228-bda8cd3066ce" ], + "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": [ "Mon, 21 Mar 2022 21:39:23 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvHAVuvLTe4XrzHMOPQzIvFj2yH4eGXdv57L7OKa4f2qNGSbzO45MMXfqi6zPCDTbX6YzfwfflOM/JAczuW5m4Gpw7W0jOLxBTizZw2vRkF2LwJaWgFb6JT5Q3KPOavjetp6m49IMUbC+wMMtK6aW" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+7": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", + "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": { @@ -3892,30 +3892,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1614b280-d428-48cc-b57b-94ac538c14d2" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1054" ], - "x-ms-request-id": [ "1614b280-d428-48cc-b57b-94ac538c14d2" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213924Z:1614b280-d428-48cc-b57b-94ac538c14d2" ], + "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": [ "Mon, 21 Mar 2022 21:39:23 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3o2KmKRbtjoVDAKGuZmlK1Vomi9I8TqojZ+8vjokii0tXhV0Lm22UATVMbODmy3jk5sRAlAcgzqF99ApRJFxjBI39uw46i71YADloozEvx2CrWpVXo2sXIC/EhP779tPHfioVVLtShuOQcbL8eX+" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+8": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", + "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": { @@ -3929,30 +3929,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0aa8b123-9346-4d53-b1f1-526f8566b204" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1053" ], - "x-ms-request-id": [ "0aa8b123-9346-4d53-b1f1-526f8566b204" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213924Z:0aa8b123-9346-4d53-b1f1-526f8566b204" ], + "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": [ "Mon, 21 Mar 2022 21:39:24 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:32 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdw12WfwGPxDWH5uLeaQfHwzzGb00oTSXOhGi7RwJ1CyJM3fkk8hXt7PCC5N4tf0zfpBu9BqkXSEGZaODGwu1pmnseJF41E8jk0TWRUvyO2mfxdyAlGSsTdm2qWVBi56ALX6GvajA6CnsuZAQTfRo" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIBwYsex05hJVqMpQ4nUy4TdyPNbloIB9bqr3I3GmKkTTPTfk7Wg/bSy6OpgAfXYa3LVa01opcgjIA/7lN2R0yFmN4vAfwNsT2nyDTrB+ColpGFEqmfJCcrwjK7G54S5e3cVOmRLQxwvvaBJ0DodM" ] }, "ContentHeaders": { "Content-Length": [ "461" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+9": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", + "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": { @@ -3966,35 +3966,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "53a3ada2-cfbd-4ad1-87d9-5db24494bd77" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1052" ], - "x-ms-request-id": [ "53a3ada2-cfbd-4ad1-87d9-5db24494bd77" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213924Z:53a3ada2-cfbd-4ad1-87d9-5db24494bd77" ], + "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": [ "Mon, 21 Mar 2022 21:39:24 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMeaPkushkCR8J4kqfo/pHArJTuTTrsDD/bdmbIkyp4v4sj8IwodIkozOZN6CMjZ/eyNvmlR+/SlSRMe3pDLuh3I12xdg4sitUqNrZS5c0SaDevtssI5TuwVzR/G/ebl4qRb/5oU9cv2+Qt1RRqwa" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01+10": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?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/testQuota0?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1433" ], - "x-ms-client-request-id": [ "2ff54c82-7e70-40da-8b61-7875161cd644" ], + "x-ms-unique-id": [ "2080" ], + "x-ms-client-request-id": [ "e41021a3-07bb-44c6-b901-7b5f3a720272" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4008,16 +4008,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9940d561-15de-49f7-9cb0-34e4d23cc3b1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14887" ], - "x-ms-request-id": [ "9940d561-15de-49f7-9cb0-34e4d23cc3b1" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213924Z:9940d561-15de-49f7-9cb0-34e4d23cc3b1" ], + "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": [ "Mon, 21 Mar 2022 21:39:24 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQFKMe+F6s5uRxrPQHVQYkayUUI/sPciersFM71fgF/F8UySncJ4FV7s+RZl+TKBYUN5Atw9VYUnC2Bx2CuGfMsv5/acfCVNw/KwGxZsF+YqOhhE9rxbU6ciaeCtB0/3mInloQ6V2hWreclAo6omP" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgz4WBGpC8mELJ4DN1RGHd4Lhf0zgOQ+wbRc6X+dJo3AgGkKt5Cd7onyUIsyKQBnzyiAluaTq0dr06y0cL/RCIla/IvbpNByB0W0NNKTepctsi/SkeTt6WM67v6U0lY3eGfDvjUyShBaR8UNqLUCX" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4027,15 +4027,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+11": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?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/testQuota1?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1434" ], - "x-ms-client-request-id": [ "8a02ea83-0190-4bc1-a91e-02150a98e4f9" ], + "x-ms-unique-id": [ "2081" ], + "x-ms-client-request-id": [ "8f6d4753-3afe-4076-ad14-8e1b3adb433a" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4049,16 +4049,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c979b917-065f-43cd-8b93-e1a883605630" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14886" ], - "x-ms-request-id": [ "c979b917-065f-43cd-8b93-e1a883605630" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:c979b917-065f-43cd-8b93-e1a883605630" ], + "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": [ "Mon, 21 Mar 2022 21:39:24 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDkuFjdpTgvmkQ6eQolQNGScK+kgaVe8Hc8JOs+Lmis/QGPkX8kH47m2sSaL0gltOy5QsgHUvHQrdDQ9tmc1jruwLhTLWRhZV0Nz0VLpdaY+w59fd+Akw54gEpVP23/CfncnB7Z1VRzeeKTAZMj6k" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5x+sF2m6cDKwDEE4oamtgWWM3r9h6NzVqEE0Kf7t50x0rCViLCU4aBL9keEMdZ6B4k3lUZ0g2qWyuYE6y//p6iQzsjwIG4zZneVocaUQamajUki2xmzgMrqwsTPWmELU/Km1pkKXsNU4TD5rT3Y4" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4068,15 +4068,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+12": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?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/testQuota2?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1435" ], - "x-ms-client-request-id": [ "149b2144-02b1-414b-9db5-a30308498e4d" ], + "x-ms-unique-id": [ "2082" ], + "x-ms-client-request-id": [ "c119ddbb-5f3d-4ae6-919f-08476b6d1084" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4090,16 +4090,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b35c8dc7-f9ff-477f-8ee8-ce252d1cbccf" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14885" ], - "x-ms-request-id": [ "b35c8dc7-f9ff-477f-8ee8-ce252d1cbccf" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:b35c8dc7-f9ff-477f-8ee8-ce252d1cbccf" ], + "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": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7yOd/Zdf46uxley4t/eNbFgJS9ppnhlTaxhMQYdZsdeC1BmC4ELL7TA2nIF2Ck1qa6T2YacEdAHjpchpUMskG3qEmR+na31Pc0EO7xSykNC/N1pgMB4C/eox945CmwIaJCa7hyjsjS6sIwf/PDMN" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAV6Ng1Xp4ZvbBR7CXhGiIcBsnSbv80avZ8XXEZjvKC83q/+IGXaoRSN3nqvGNnnKfr6IOBI+m65qS2Rh0Zp+lETuoBxoKzLQ1fmPjCL85spHfFCqe0jKJbUPpUq1h1qbuuDv9W/6CP2dyH7TBdH8" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4109,15 +4109,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+13": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?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/testQuota3?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1436" ], - "x-ms-client-request-id": [ "832bbcad-e69f-4213-9394-c282baabd686" ], + "x-ms-unique-id": [ "2083" ], + "x-ms-client-request-id": [ "03777778-bac3-4f8a-b5d4-bd8d1a585ddd" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4131,16 +4131,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "32d48258-3e0c-4c92-9703-7a233819a22c" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14884" ], - "x-ms-request-id": [ "32d48258-3e0c-4c92-9703-7a233819a22c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:32d48258-3e0c-4c92-9703-7a233819a22c" ], + "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": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:33 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvX4AveD9/82N5yXCL4wZIC6EfDGuHTcJ+HkjSRDZBXS0QPkXKNsTpbvzkm8ZCuoUe0pzRRuFX8oA0hrJGGZlzcZ5BmGgJra3k7wQq4rrtnpItl7Ecj4YtTO048FOvq0D5zbE3Lozdy5blv7K0Rw3x" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvel7/E3uvEpLXdiNQU9pkbR+d0CjhWXbMC2YNQShEdWxYx88FL3tEalz6qxHmBIR9TRLKc+vF2Kst/XAVBFCqERlqNPG1dqeyTADAM4vSy3pIyCak9OTsmXwuj0VoVNg0jTqLenaoNXPb0Vwvc6YN" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4150,15 +4150,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+14": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?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/testQuota4?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1437" ], - "x-ms-client-request-id": [ "d71d4a32-41a4-4ea3-8d17-271abc78240c" ], + "x-ms-unique-id": [ "2084" ], + "x-ms-client-request-id": [ "d6ed12ba-c516-447b-b793-c5b569a3d55b" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4172,16 +4172,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "14bbbf6f-44f8-417a-855a-c96acdd3ea28" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14883" ], - "x-ms-request-id": [ "14bbbf6f-44f8-417a-855a-c96acdd3ea28" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:14bbbf6f-44f8-417a-855a-c96acdd3ea28" ], + "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": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9FzbupfN/McaWbhQe3uoZIVCn1A8rmpft0dirtFeJc65Q1CLsWAgI0uM3WgI0T8lgZ9Vtvh4E1FX3dj8FNUk/zPQrCiWBMzIaAJE5cQKDLHKC1dDC7kVZlumIZLNjCOLsjm0dSP3LkI1ef6hWw0U" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi1YU4rpRVRA1rWzLXxwXBr6EECpt1tMnNRs/d722laqf3Cx5H7iiwUgpaIX+7BFG9RyTBl9UDpQI0cRXDuoc03k+/c6/+KZUzYm4xe00z8l4mQgLftpM+ZiRYRo0by5QGhO/9p4v46DdZPgOMV8F" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4191,15 +4191,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+15": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?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/testQuota5?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1438" ], - "x-ms-client-request-id": [ "2649cd71-ee8e-4f53-8338-a047dc0c4d59" ], + "x-ms-unique-id": [ "2085" ], + "x-ms-client-request-id": [ "235a2561-9df0-4dad-b8e5-3bd15b07ffe1" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4213,16 +4213,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "a7d781e0-082a-4e4c-ae52-9815fe0e1845" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14882" ], - "x-ms-request-id": [ "a7d781e0-082a-4e4c-ae52-9815fe0e1845" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213925Z:a7d781e0-082a-4e4c-ae52-9815fe0e1845" ], + "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": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEpexmC4DUsubEstl1I1FFMPE2KCwb3Dg00gBI+X2zxdEz05wL/T5hLmH+Gc8T9D9p/7gJ52A2uDLabhtl8VXvW4gb8bFe90LMe4ymKlsbhJv+1WyQAFzpTXbXCOmhdPzPZn3vVq88VkDRJKV6/0x" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEMSEdHLpbxmw3gC1DhW5S8mK70rXeyo+or8/edBk38FSR7N+CqWrdoJri87LQ/RrMp8d6dHkizhmMOwaKyQ/pII4cZtS9zijbNyFvaIxP4pdUWJSZs0swB+jkkOY7LXg3DNJlcxDbiak7Zu/qS8C" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4232,15 +4232,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+16": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?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": [ "1439" ], - "x-ms-client-request-id": [ "0e019404-8a0f-4205-a5cd-ed0932b1677b" ], + "x-ms-unique-id": [ "2086" ], + "x-ms-client-request-id": [ "bb69e0a0-f55c-4664-b629-f71d476e6b6e" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4254,16 +4254,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "41e936aa-b288-4b4c-bc5b-d63dce6b9ea8" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14881" ], - "x-ms-request-id": [ "41e936aa-b288-4b4c-bc5b-d63dce6b9ea8" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213926Z:41e936aa-b288-4b4c-bc5b-d63dce6b9ea8" ], + "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": [ "Mon, 21 Mar 2022 21:39:25 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2Psmpz70fyNCgR6dBNH47Zhs2V9+UK878KqT2dl7JLatWWbH8cNtM+XaFPfKmCMkXKPBqAellofpJ5BCYamLqb32Ag7qMcl+2W7qAbYKx17GqqRnXvzRYurGbDFSz5vixMzIutj9lVdaoIKFH042" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWtCtBOO7tGXnl1FIydiO4kghfavgjoW1F0NnxM4O3wM2M9cuzoArwq/KBGxGu6vLD3ZEaQiwOJDIEElkyxBVhijxKCvk8QUbcOZlKSZEcuZUb1oIK2aDCMmm7APKBo8D3mBqQt/22f2YQncHhNAo" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4273,15 +4273,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+17": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?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": [ "1440" ], - "x-ms-client-request-id": [ "f6026c6e-928d-4e27-a19f-d190e26b1d7a" ], + "x-ms-unique-id": [ "2087" ], + "x-ms-client-request-id": [ "77756f4d-b6dc-4c05-8f80-bf8fd13b9721" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4295,16 +4295,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "16fcc466-522e-43d8-a85c-98ad23a7a595" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14880" ], - "x-ms-request-id": [ "16fcc466-522e-43d8-a85c-98ad23a7a595" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213926Z:16fcc466-522e-43d8-a85c-98ad23a7a595" ], + "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": [ "Mon, 21 Mar 2022 21:39:26 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE/L/gU3M6TqmZ/C04cWWEWgHxRogWTZnkI9lBTdmi71mZQg4TGTwjBGrf89H6sGvltpl8RJidURTBFHNLMMCEbCREJHDOW72uKPcijGzmEGLaI9HSCT0L/nB8qc1oim5fKItD+jKqU13+nPD1uBj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFkr0Fw01Z7qmclyftWfhaOdsW6A1Yg8bSrqEJgYXtWEYqBP0vpqVzyFbdq4uqnKf3i3VlEC94xY9e6Gx01IkFOlacv5PV5evifGVHblaWS3Y/6McEMM+x6tSMJ0qdIihhcaW6ajgIEbRcX5U7UZD" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4314,15 +4314,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuota+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+18": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?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": [ "1441" ], - "x-ms-client-request-id": [ "d752a894-7652-445e-9c6e-138129afa4fc" ], + "x-ms-unique-id": [ "2088" ], + "x-ms-client-request-id": [ "5d2821fc-60d5-4eed-9ca4-63aeeaa9eb6a" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4336,16 +4336,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d4b5bf85-5eab-479a-af6f-2e27c3e73a79" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14879" ], - "x-ms-request-id": [ "d4b5bf85-5eab-479a-af6f-2e27c3e73a79" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213926Z:d4b5bf85-5eab-479a-af6f-2e27c3e73a79" ], + "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": [ "Mon, 21 Mar 2022 21:39:26 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuv0Hryb2E7p5Rx07ZhPJ5CGPQccy9I5P7OG8nM1KjvJRkOLs0u1uxvzGiqhlu0CxuIrdtqmbUml7TizrecZMW8c30Dj9AxHoe/OVRY/qt8FxQDmYposO+UrOaTIQoq6QZC8xaU3dDsLzuBlXtnsv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+BifqEhyR7a58845rjIm8NtGqp1fC8Cb0OOsbSkPb5lCgfHkXDbqUUodQgs5zTTrKE9BH+x+5F45D4qkBMfxqkXsGvqyyO2+K4DjajtRfeDFhfVK1dEtqUQbSnOfFlh9wshSYE7wojKZ3v55ta6g" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4355,10 +4355,10 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?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/testQuota0?api-version=2021-01-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?api-version=2021-01-01", + "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": { @@ -4372,30 +4372,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7e3e9079-c832-4aa0-be98-74e711912d1a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1051" ], - "x-ms-request-id": [ "7e3e9079-c832-4aa0-be98-74e711912d1a" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213926Z:7e3e9079-c832-4aa0-be98-74e711912d1a" ], + "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": [ "Mon, 21 Mar 2022 21:39:26 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:34 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZgw8y/eVH2h2jeAuX1eorLpq5GfqruOtgB0b43vGAEg4OadxqOxjASxzAiMH3KrqJC3PRF3XYLN7CJnJBLwUhE2TuzqFff1l49Jkudwpq4oh4HBRqrGGArPN8wXQP4agcDrpn07ZZdEUOV4/C8WI" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuUFmygqbbryB2RslY7zrGGe23H265wPDCmqqCHd8BMJU7OunNk1wKEl9TJqHozrjVtPp/YqiMjxHyeX5A7VxSf+5XCUiUE9aSb3bTaXiLEcqIyrX8zzkiTEX7xwyf+MXf4deO3aH79nt6XhpkfBQ" ] }, "ContentHeaders": { "Content-Length": [ "449" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?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/testQuota1?api-version=2021-01-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01", + "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": { @@ -4409,30 +4409,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d950560c-44a6-4b26-a4af-ee58f610bf87" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1050" ], - "x-ms-request-id": [ "d950560c-44a6-4b26-a4af-ee58f610bf87" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213927Z:d950560c-44a6-4b26-a4af-ee58f610bf87" ], + "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": [ "Mon, 21 Mar 2022 21:39:26 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7Jzro3X4sMVZWdFkomCXDasGlsNgtkWAywfy3uS+BQC8IpQAE4b+hSQF6euafR/lWsYz+0KScWwcNjVnsAH8et2X17ezF+u/9zfQ/EidpnGHxPXZN8vvjiq6v+zXoSLyoysIkrmcD0smlU0HJtzh" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?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/testQuota2?api-version=2021-01-01+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01", + "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": { @@ -4446,30 +4446,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2f01af2f-10e6-4d75-8117-b1e286df7a25" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1049" ], - "x-ms-request-id": [ "2f01af2f-10e6-4d75-8117-b1e286df7a25" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213927Z:2f01af2f-10e6-4d75-8117-b1e286df7a25" ], + "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": [ "Mon, 21 Mar 2022 21:39:27 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF6zs37FvnanY89ea63Ni0Vl2VbYhypkurZwDJHbp9PPdFB+y8N4+uBmlrgXLwMCbnl9ZqgfHQskh8jOzURZx2ic4CDApnWQPpc1WlkVOBI8P5n8icvHeYfhGl1HH7DF5uBmT4TkJJMebFfO6Q8OK" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+4": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01", + "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": { @@ -4483,30 +4483,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "1e5795ec-5856-4a04-8b84-e0c8ed61f1c2" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1048" ], - "x-ms-request-id": [ "1e5795ec-5856-4a04-8b84-e0c8ed61f1c2" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213927Z:1e5795ec-5856-4a04-8b84-e0c8ed61f1c2" ], + "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": [ "Mon, 21 Mar 2022 21:39:27 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXhcGHlKTKGMxbI6f5hbFEnTRitz+imVDQGZe8ikjt9WVfhP4EQo1FSr3ni5+8HPYvIgI/5NyAaZM6Hug2kbQXz6u8ZYHZ7S+RpROPgO2XOq1CywrUy2gp0WC4pdkDlhFOUqjXQxdcF0vWM0CK71q" ] + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+5": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01", + "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": { @@ -4520,30 +4520,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "eef9e703-a7e8-44b0-a973-c057fea21101" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1047" ], - "x-ms-request-id": [ "eef9e703-a7e8-44b0-a973-c057fea21101" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213928Z:eef9e703-a7e8-44b0-a973-c057fea21101" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:27 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:36 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGu6iqjFEdXM9oNXOgHgCZYymIMeubWqpEyLCmHY7cOapJwAa5t5OUvduaLXHr5O9qi05JdViKw3FMtU8uBz1cRGgy/OUoRcYqHKC0bEVfILZD2gKpk/Kc+c7LSdTxz7DSL1LpfoeYY3cks83HC2r" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHS4NEBq/PbUTB5OX7lIdmWdzZL9qE9q5M7yFgEKbVub90VtEnU2bUKjlPGb9cLkLvdYlQA6RrBrqR0BgZKKHAA4uutGh1acGrlour2byGeTuVT2bJjj57VOSpFa0NNhxExSA9NFvv6tV4Uh1eUqt" ] }, "ContentHeaders": { "Content-Length": [ "449" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+6": { + "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": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01", + "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": { @@ -4557,30 +4557,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "c2516a91-9e1d-455f-9841-d50cc409090c" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1046" ], - "x-ms-request-id": [ "c2516a91-9e1d-455f-9841-d50cc409090c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213928Z:c2516a91-9e1d-455f-9841-d50cc409090c" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:28 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaQp6bLV9raahnFbyE3rjVehlDxZpChPGJdNLiQRN+QQ5ZsPSqpwDQWGp+WPrLFb8V3EUBaU3D7CadpZ9f7578FTQEPrJmUYvKz9TFYYRBCPkzVGC1dUQ9iSgToGa7rKbxC197sMJkLt5ordm0UgW" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/8W8XfvMQIySJ6VtV/hWqFxm2Gu28JhLdNg6rCVesOPiZgsgE66nb9zJ/vSF8jwaLVr6+ZHe6yZ0kRL0pCeK4IzDVW73g4tFFj/DkGZlM/dhudhRw6Py/D1lRveixenPMh0+f3F/Dzu4RF/oNp0u" ] }, "ContentHeaders": { "Content-Length": [ "449" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+7": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01", + "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": { @@ -4594,30 +4594,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "02939d32-d949-40c4-8903-b4d8a78e9485" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1045" ], - "x-ms-request-id": [ "02939d32-d949-40c4-8903-b4d8a78e9485" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213929Z:02939d32-d949-40c4-8903-b4d8a78e9485" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:28 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmO+pwZz34QmNCtmDOhX02gG1kf4CqMFVn38a8N60K8mKNknFzo2UkmiHQakJiFbh8OpS7bKeBSbjw5NQxKwaaIDgCcgaG5CT+vZrSmTG9ZNIAyTsXVbfg7ywtZrlrv07FL7JzWdBcnsdXcL2gTzl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvL3L3lD8tr3rKIYAS/Dkq7h2+xIsnLewhMFcDtdhvxVh/wdJfXZwvSTxhgZhzZKU4FhgWgA/adv/9vodX2il5zkdbo0beb9G7OrtRC+ADs7X3bmtoa8NwKWuCbFqrwWmfltDUHLhU8HeTsdM1FzaA" ] }, "ContentHeaders": { "Content-Length": [ "449" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+8": { + "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": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01", + "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": { @@ -4631,30 +4631,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f8432b6e-599c-4ce8-a01e-4d19b8494e61" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1044" ], - "x-ms-request-id": [ "f8432b6e-599c-4ce8-a01e-4d19b8494e61" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213929Z:f8432b6e-599c-4ce8-a01e-4d19b8494e61" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:28 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPyRooDfTsg1MoOhJdnjYfZSA9I+GlPNta4fTG09eoi1WQSLP1VLwknJBLQLCZ3+Yn4RUZVGr9tJoFZXzrEhV0nIF+t2zQMzQl9x4LGh+/gBnexCRMU0shrefs2lkf+dMJY40k3pmVbMhb4pUHci9" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvomosVzuOX6o9T37EBpWc4Pc1BoFQiB0pmrGjQu1yHsK92n0J+JO/M5D1lO0DWAGjLrPka826hKCfQNtTizzv2VsIXHznOIL8ow2pP9a7vPYgE29GHo7RHc1/8+HR+UWrIpFHsBQspE/E3ULa8hIE" ] }, "ContentHeaders": { "Content-Length": [ "461" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestCreateQuotaWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+9": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01", + "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": { @@ -4668,35 +4668,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "9e063ec1-9b41-45fd-96cd-7b6a18c9ffd1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1043" ], - "x-ms-request-id": [ "9e063ec1-9b41-45fd-96cd-7b6a18c9ffd1" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213929Z:9e063ec1-9b41-45fd-96cd-7b6a18c9ffd1" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:29 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:37 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKgeYwHvnZb9ZRUFmSonOVbHvAQ8reTnUFh2hJm2UjheYl6Z2MTAuR1RBlDIWM9h60+0cvu2gbgTopCEOBTYoOpW4rdicwxya5+EuFWlSeSZr8IhPFixS9TVVdt7dZpw7P62YJV7R51meNxYf4D6H" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCJ9WDL/65b+SqVziFSE3O+flBjIDmctnu2gGBF3Eee9OwtEP1XjbPJKmBd0aQmKsHv49y2L96i/GApx32IJWi8tInS7YP0ndhiapTKt5xkggJlUFYBBq9EsWroN3WVrecSrjB4i0kNEM44l3jEP1" ] }, "ContentHeaders": { "Content-Length": [ "467" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?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/testQuota0?api-version=2021-01-01+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota0?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/testQuota0?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1460" ], - "x-ms-client-request-id": [ "683de420-35bc-4bce-b077-ecf858c5a53d" ], + "x-ms-unique-id": [ "2107" ], + "x-ms-client-request-id": [ "2efe9571-df26-4d0f-b32f-47eadadc2009" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4710,16 +4710,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "e85b76d5-8c15-48ae-a1fd-b1e3855c3dfd" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14878" ], - "x-ms-request-id": [ "e85b76d5-8c15-48ae-a1fd-b1e3855c3dfd" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:e85b76d5-8c15-48ae-a1fd-b1e3855c3dfd" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:29 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTItrsNkEpcV9NXGcFTiE519slLV6zRn9MUQ7pMLDG8sTV8Q7KtY2T7Ogy+ikM0nT8aH3aJmEgFpkOBYTVC5ctsAM7muJGzq/u3ispzLIAxtiXf3URZcygmI9MMVLR7UMJWKGkoDW2RvX/Y7aFlwi" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjrAzcrI12bBVv2bd5s76n0SefsywlBIS2yTbQ6tkju36uj8ZHciDoqbtnIfJqWMWYNW49virwOSGcVzQRB+WroGQ2X9jmznjhAJ/Gq1ZjSgRR4BU5xaTXDLSKHj+HZzRQGLFyfO3AtWUymkjbN1J" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4729,15 +4729,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?api-version=2021-01-01+11": { + "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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota1?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/testQuota1?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1461" ], - "x-ms-client-request-id": [ "3d4821ea-326b-4868-8be9-81f757b81624" ], + "x-ms-unique-id": [ "2108" ], + "x-ms-client-request-id": [ "f3eec0c3-0006-4a90-8d3d-849e4786cb04" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4751,16 +4751,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "6612238b-ac25-40cf-8639-0ac919458c55" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14877" ], - "x-ms-request-id": [ "6612238b-ac25-40cf-8639-0ac919458c55" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:6612238b-ac25-40cf-8639-0ac919458c55" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:29 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdc/EtPQHquaqf9W76dELhdQ/i7Nsc1+uuUZALff+BifH4/RhiCr+Jpl6BFil0PLa5SjToMEVKjWAYMN+cLrrubh/bgjKVWG2ktzYStm3LNhA0upOSbQ3K2gjTIQIMNZKCMRS3kkuRf66PpLRO7LG" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjVXSjzpUPLqpZVnmHxMCe9aWXtQYNJfhx1bT/HKRrvblbK21kLBeT4cl06w5WVZ60nuRNbS5JEFRRQNm0z8jH/petvArv4cuaLm+WypSaRZIe1RBpGccxovpkU0xq0CwdROn+iyWDdavM0uWCNgj" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4770,15 +4770,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?api-version=2021-01-01+12": { + "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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota2?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/testQuota2?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1462" ], - "x-ms-client-request-id": [ "30b97a1d-78c9-4111-a5a3-2300cefc7a81" ], + "x-ms-unique-id": [ "2109" ], + "x-ms-client-request-id": [ "07e4bc6a-42a6-44a1-bbaa-7c290282578f" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4792,16 +4792,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "2a273b13-f1c0-449f-8edd-c27857d5e5f1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14876" ], - "x-ms-request-id": [ "2a273b13-f1c0-449f-8edd-c27857d5e5f1" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:2a273b13-f1c0-449f-8edd-c27857d5e5f1" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:29 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2yhKp9+zcgvJnnsjyvbV6/+vF0Bg8jFO2aPRdOF3PVVbah+jYLJ/kQtJslXvBjZOLELCWGKeAy2C8R6mxd3EGDAtsVUYF0UJhFE3f6shR9HnN3kErtgtnBRj2B2LQSG4juztUOslEFbd+xto5ViH" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIPhfEfJNDIcqxphlnNMEqmIVXhQdydiE8SJgvjKBERo0UolqFP9stIwT7jlTaCl6cvFsGEMrealolq0MIvzH9HIgHZ5bG43y8umxPE0bX7/yvlPbDwH1t2RxgVfTh262zX1BdaWhZEJzAkrR7hHy" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4811,15 +4811,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?api-version=2021-01-01+13": { + "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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota3?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/testQuota3?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1463" ], - "x-ms-client-request-id": [ "bebc3650-2f74-45d8-807e-0e098fd3bc3d" ], + "x-ms-unique-id": [ "2110" ], + "x-ms-client-request-id": [ "1716def8-1238-4cbd-9d1b-90ac28b6e4ce" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4833,16 +4833,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "5d9c811a-3941-4b5b-93f9-5ef84971266f" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14875" ], - "x-ms-request-id": [ "5d9c811a-3941-4b5b-93f9-5ef84971266f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:5d9c811a-3941-4b5b-93f9-5ef84971266f" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyGtmAQRiv0QUmH2Jd9M691mAPwakkdUAE19iE3HwXfq/+AkE9OBAnpMYyabt+tGynPAQVjG9X6jnC22mv1QcgtJYxfP25mx4E1MJYQxqEgmR8h6ibjmUmrHmd3XXyYXrLcgpJXsGP4ANEi3tT7LB" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvadUoEIy/RXgcKRimOr0xher+73IfLKh9UFT3CySiRqiN7KN+ePIRDaf9TkNJq/iafA4XTEZMK+gF2E5NDWJIjkDEoBXybEkJPCAS57tQLnkwi+yFFqWnLKdfhdNRVDg+A2ghxpHUZXy0RR2MbH8W" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4852,15 +4852,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?api-version=2021-01-01+14": { + "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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota4?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/testQuota4?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1464" ], - "x-ms-client-request-id": [ "b9ee740f-574e-419c-9eab-cc7e02355312" ], + "x-ms-unique-id": [ "2111" ], + "x-ms-client-request-id": [ "da2cd718-3750-496c-82ad-3564b137965c" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4874,16 +4874,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "d5a970e9-6e29-4076-8f15-229383b36bb3" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14874" ], - "x-ms-request-id": [ "d5a970e9-6e29-4076-8f15-229383b36bb3" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213930Z:d5a970e9-6e29-4076-8f15-229383b36bb3" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQfnyUCIfbJvCTCswvSF3fykT+qjwoCl0PGXRsbj9pXMgFpPY8vZ35l6eEhTF1dy52Nc6J0epYTCsiSa+NRAKVZnCvmyj/YKQ9+WNpVMwwvq603MIeIRDMof5omNUtlVkqwzA8V+QIKQ0D5oSgwNl" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdUyFCUmUNby1Rh/fWHAG6AUWgovdZVxxt9G1nK3raIXheldkbKhcDvoKSc9d6IbjofVmjGpxfbiAMIY/7W9e3QLtGAyohsjARdJkM6DLikK2Hu51o6NZXbjveAKZBdH29Wt77M/IHbymgOBbGbia" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4893,15 +4893,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?api-version=2021-01-01+15": { + "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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota5?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/testQuota5?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1465" ], - "x-ms-client-request-id": [ "f18031ea-04fe-4f89-8dcd-5305aefadfa9" ], + "x-ms-unique-id": [ "2112" ], + "x-ms-client-request-id": [ "7a54c232-91cf-44a9-a96f-cd1a3ea9bb15" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4915,16 +4915,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "de2cb15e-7f44-44c5-9a65-59275728c86c" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14873" ], - "x-ms-request-id": [ "de2cb15e-7f44-44c5-9a65-59275728c86c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213931Z:de2cb15e-7f44-44c5-9a65-59275728c86c" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:38 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYKaTLwfwzCzLPjBpgSW0bTgQp3UBVd/HU7XkhT6Q6sgZHkpHwVPLf9LGQrNM8R5W3MgbFMJD92uPqpVQQTD6qmLd6Xk0+E6jZEKswmVk+kzOf0T6CDllHr0c3Qc1JqYYcNmPkeYrhY7tSg4VZ/g/" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHzRouz+0VFJwLW1d38SxIzsz1RWpZ+k/WWHHR+vxRMaLGFixy+xmBrDc+uaV1DWrm9AWACFE/B25/0mQsWEPhtC5obUbvgY8E6KVcHt28s+i18toFigjrhG3nl+tMAxO+EZtNX5Q7X03pmM0ODQY" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4934,15 +4934,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?api-version=2021-01-01+16": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota6?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": [ "1466" ], - "x-ms-client-request-id": [ "7457684f-502d-45e3-b36e-b24b629e3f56" ], + "x-ms-unique-id": [ "2113" ], + "x-ms-client-request-id": [ "352f07ae-f99e-4d32-9fed-16a7932a0961" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4956,16 +4956,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "18df04ea-6839-4d5d-9b6e-8b5433b32ec2" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14872" ], - "x-ms-request-id": [ "18df04ea-6839-4d5d-9b6e-8b5433b32ec2" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213931Z:18df04ea-6839-4d5d-9b6e-8b5433b32ec2" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBhXCNqYq49V2jglAUwuSjbuKXb+b7Vm8yjtC43YU4LhUXNZCzMKtQf1hQewpaBVrH51GsdbO8oHflY4ycpV59VU4AGKzJ6qKGiiKeWuSrYYrTvJjcKNPsj3R+BU1rff16efJ9WLOvIO3tv10SbHf" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdudXtW4Yvim72zkYzaUAAcmQULburkUU6V3yPR39m+hKF2gFVYM5TCWcSO3Gd4dSo6e3O3wy8CQRToEWZFIQJAKUceymAEjCqPWSjD+TxUdz4HkL/Y5rwUf3VGNSWG09uAfrPa0r2m1cpRdS5Vq3" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -4975,15 +4975,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?api-version=2021-01-01+17": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota7?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": [ "1467" ], - "x-ms-client-request-id": [ "626fdbba-c0da-4576-931b-ee62d16f76e2" ], + "x-ms-unique-id": [ "2114" ], + "x-ms-client-request-id": [ "c3e288d7-1f82-4766-bb50-380ae1f6bfdf" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -4997,16 +4997,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "87519dfd-dc58-44ce-93cd-b0f3ab591ecb" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14871" ], - "x-ms-request-id": [ "87519dfd-dc58-44ce-93cd-b0f3ab591ecb" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213931Z:87519dfd-dc58-44ce-93cd-b0f3ab591ecb" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFWhPoY5f1xb3mfLOEeLosfLU+lUqa8rFTnYH9tOp+RR4sLH0XFuG/zeNZSGMBM7s/lQ2akTTmHGLw5vQ2/dcJC4coELfJgcZOq8sRJ0p7PcRmcS8G+5afn/6nPpn2Hyf2pUE0XRUaohC4sb2zGy8" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmVRcquePfXchhkVmjBrJBWSCl8wtHkxVeM/dKWFXPh01FLRowWGDnqTrH4Jafge+Jw8L1I1DC1LYnkzA96Mm0g2inloz+xEaAH30nKd5A2L2WbxtrQu9LjcSodCje/kt4wbYAM0AFWqggkrWwchd" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -5016,15 +5016,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaWithAlias+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?api-version=2021-01-01+18": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuota8?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": [ "1468" ], - "x-ms-client-request-id": [ "5dd0736a-c5cb-42e1-8e20-00c610457607" ], + "x-ms-unique-id": [ "2115" ], + "x-ms-client-request-id": [ "20f415f9-a473-44bf-bcbe-cb4c9d5c26c9" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5038,16 +5038,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0e489022-587b-477b-aeb4-5a416d48ef3c" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14870" ], - "x-ms-request-id": [ "0e489022-587b-477b-aeb4-5a416d48ef3c" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213931Z:0e489022-587b-477b-aeb4-5a416d48ef3c" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:30 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:39 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHcxBMRJFj8QB0W7ZhwU6oG+zp5eRtZ6BvA5nmTpOZweLwjj6WaGsIvIKmtt/crzgIIrBF1qfoA/Lmhkqt7cv/DNchShMoi2Q6DzxExvNFmHIBlaRpsD2J/0w1cLNqd2ecClqsvuxclaDhUFkwQmf" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvYkAJ5BWH6vYmWwaeQJ2Bl9X07LKmrab+rFahqmFimK6CZbbD2bDr2GKg2spsbGpAE92yzLarTuMABcdDZi5RqASLtUDVq8yvEP9LLKYtUkpKC9S//FCT+/g7uWGX9lI5lqvitE/6mI30ilQlZTCV" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -5057,15 +5057,15 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestListInvalidLocation+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/quotas?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": "GET", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/thisisnotarealplace/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/thisisnotarealplace/quotas?api-version=2021-01-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1482" ], - "x-ms-client-request-id": [ "2366fb82-5bb5-45c0-b33e-67d01b9cf381" ], + "x-ms-unique-id": [ "2129" ], + "x-ms-client-request-id": [ "caf819af-573c-424c-a554-87f893a6cc34" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_List" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5079,16 +5079,16 @@ "StatusCode": 400, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "36528645-916f-4792-95ca-1dc22bc3b9d6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13872" ], - "x-ms-request-id": [ "36528645-916f-4792-95ca-1dc22bc3b9d6" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213933Z:36528645-916f-4792-95ca-1dc22bc3b9d6" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:32 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:40 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv81fGnSh4UTX7w2PCvGLy8nlSaQ8S3Ad17zPjk2QBQlZ4my7DgTRpBsEFonfYShy8MfRQFeCTRfyDxIx/MV/gHyUlNhDtfd84LZL+hOa/ZsQP5Jz3aOTeIKtnGs1IPlU2Ck9T2G/H/ZhAgmscUTI3" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQQltxYGe46iOScjCPrebcQ7kthPwX3kFPNnCc07qWyWmiPWbWzzZMz4KGQuVt1LpsuMUOS4zmHaS0gOwdssDgv6Ps8hTgWGZSoEmFwYYhvycqKsDWruEZr9e7P0Khlm/9KrfwOJW+OxDzp7FSSOV" ] }, "ContentHeaders": { "Content-Length": [ "61" ], @@ -5099,10 +5099,10 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestCreateQuotaOnInvalidLocation+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/thislocationdoesnotexist/quotas/testQuota?api-version=2021-01-01+1": { + "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": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/thislocationdoesnotexist/quotas/testQuota?api-version=2021-01-01", + "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": { @@ -5116,16 +5116,16 @@ "StatusCode": 400, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "0c47ad3d-0b8c-40df-85ea-73f29d28b363" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1042" ], - "x-ms-request-id": [ "0c47ad3d-0b8c-40df-85ea-73f29d28b363" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213934Z:0c47ad3d-0b8c-40df-85ea-73f29d28b363" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:33 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:42 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKAr0ylY37qExJ6on5s6h+FBiFnsGnSb2ZibKNFhnw/Wb/YKV3NS4b3ABBZvGsLkTT9DOfQNbUx6xbDnt8uxqGOQFDKGftabRG4oJxF8TKYeN3lskS/8OxZjfSRIyWu8VkjEJxmV759uh3VlLF9jS" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWgVLzmhcmZIH9SGEueyMfo3SEbC3tAg6NnGXWF+3ln0+jtn3beQp2KoUAbWzrS6gMecEDrtQhaU0tyS8slUFAqRiMllPi+av3K9lq1uUziJUvlXNiPPE7i7G/ZocwV8WvplLE/VmbSxAtBZoM579" ] }, "ContentHeaders": { "Content-Length": [ "66" ], @@ -5136,10 +5136,10 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+1": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "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": { @@ -5153,35 +5153,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "023fba3a-ce0a-413b-a3e2-2a724c98a486" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1041" ], - "x-ms-request-id": [ "023fba3a-ce0a-413b-a3e2-2a724c98a486" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213935Z:023fba3a-ce0a-413b-a3e2-2a724c98a486" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:34 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY7F9ol6QEO3RcsOTUZ8D6eIC59nFG1cCZfK7SwlJXXcFpN+/M2N0qheqTeDGoTnP9HluUAYj4lzqpnX6neQ8559omm6Lvv/Qx/AWsoT0uJgdIBpeLYv2EfO45Yf1lmhqv3cWIwAfrRxBTxzAORXv" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNkEaEoJFm9Q55d9VXrFcq2+gBiJmTihvofcoJLhLUi8jrf3rTTiSM6LeJP8QQvN586WWtTEWU29uQQVhzDfzZYuzURG/8hwVRzlv2fcF8f3cyu25S0lW0QRaWZLlOZQnSMaerlf42tanR4x3+Bj5" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestQuotaCreateUpdateDelete+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": [ "1487" ], - "x-ms-client-request-id": [ "6ee265e7-441a-4bdd-8e46-918d0547bdd2" ], + "x-ms-unique-id": [ "2134" ], + "x-ms-client-request-id": [ "8f48f6d3-6a29-4089-aa4e-ccdfaafeec3e" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5195,30 +5195,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "7ee2aaf1-894b-4e7b-8942-4fdd98e7e29f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13869" ], - "x-ms-request-id": [ "7ee2aaf1-894b-4e7b-8942-4fdd98e7e29f" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213935Z:7ee2aaf1-894b-4e7b-8942-4fdd98e7e29f" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:34 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAAu5IcWu2PSpqiFzzcoLh2LzOuOCv8RnZ7RLSRgiPEevqmukV6p0PGjGAso5VrwCVUK05DQXY8axlQr9Qky/rLEXbO6wv5hag76MFj0ZBw0ctS6YhyWS0Uos9jG5VwNdy/fkeLMdChouAF73v1w+" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVDu7zsqbn280SHPMEEd1yU1gO82e4+Hjq6qh87xutu+vTOdgCZnC/kOF8a8bgjX/YE0dzupngHmWoctcW1HhfBmjheMX+K4+kJ4K0mCvxY211A35mrBDZOd2l6VNdrQZyK5CMd7X6JhyAMxO7kQ1" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestQuotaCreateUpdateDelete+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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+3": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "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": { @@ -5232,35 +5232,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "972767a2-2e90-4b2e-a03b-d665da6e1954" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1040" ], - "x-ms-request-id": [ "972767a2-2e90-4b2e-a03b-d665da6e1954" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213935Z:972767a2-2e90-4b2e-a03b-d665da6e1954" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:34 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlzDXHwd4QukYbpKq8pKZUiZsyTnaSKV9mBPPKyrE06cGJk02I9OsfBgUJLDwFBSqdTMMrCoDazF7L7OMZV9HkEU4A24uxMi05RYjCYr6BLh2yNveVn/RB14yT2R46cbzk7m6LatthlbGYDEK2li1" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3cmL27uZsbaZc0lVEyDgKRCxOOjS39l31Xl7fFgfzE4br1MFCenYdxhxOJaZZIswkJOuXoHpb3Qb3jfG9u1J8iCiJ++cTEHB/vlenW6BGAAvkyYwp6Mx48WvS8txp53x6pr3dajzpljmRsDf8j8y" ] }, "ContentHeaders": { "Content-Length": [ "483" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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]+TestQuotaCreateUpdateDelete+$DELETE+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { + "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": "DELETE", - "RequestUri": "https://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": [ "1489" ], - "x-ms-client-request-id": [ "31cc7408-f557-4166-82f4-582d963a3dfa" ], + "x-ms-unique-id": [ "2136" ], + "x-ms-client-request-id": [ "82c94605-2d0b-4e15-9b86-dbc62729c3cc" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5274,16 +5274,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "b6092d92-94bc-4b4b-b707-b4ce1a6c7793" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14869" ], - "x-ms-request-id": [ "b6092d92-94bc-4b4b-b707-b4ce1a6c7793" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213935Z:b6092d92-94bc-4b4b-b707-b4ce1a6c7793" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:35 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1PpWmZdstGm87ART4hq0gL/0kBZ5eoxJskAqoiEMLuGlgO8Qq3zvHDUpEscRCJ+3b4ikzySxnP6+urLz3Kg9OVaTOrN/XcFM5SKMbBZwc+9aDtKE1XeATl4H31rJ2CfT0/qQeQ0J+Wr4N15Z3+IX" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvidAEz1BxVnVMHsl/5YEXJTgejCL0olAmLwraWRGCCScz9HE90vyZ2EsqbPXBaHtdal0/JAaCtyoyhwLrUrMu7t5Wjd3oy61tbIijpfxkZWhsKamuSyN6T/jflGG3HYiSBB686bosNQMkpxsEFDIZ" ] }, "ContentHeaders": { "Content-Length": [ "0" ], @@ -5293,10 +5293,10 @@ "isContentBase64": false } }, - "Quota+[NoContext]+TestQuotaCreateUpdateDeleteWithAlias+$PUT+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+1": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "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": { @@ -5310,35 +5310,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "05e63dd0-f5b9-462b-a4ab-f96306b33051" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1039" ], - "x-ms-request-id": [ "05e63dd0-f5b9-462b-a4ab-f96306b33051" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213936Z:05e63dd0-f5b9-462b-a4ab-f96306b33051" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:35 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:43 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv94+rnpqArnqtgMKW88wg1IpAycw8VhYNyS7hNxsu2ZlYo8vMTWk9ehigMrDz7jMLPLMwBG240rX3dsEDLHXuUhI8hEkrAgpbrGGr6IPgAE+Ca8WwrXjUKAGB4Eklgja4HCHk/ZJbQ5pz30M28VWB" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGXaM+ryfoegAgSXkuQ1Mzo25NCh42qR00Jl9oeE9ekzt62puSLrugFQHc5vpBueDdC+qcP4sCzOJC+cCKi5aKkJDAywoosxAQlZtFGNFe1QB4RiUBnYwzyT8ot+w4dpCiw9rYHFCZpIGi0HS2lA4" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+2": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": [ "1492" ], - "x-ms-client-request-id": [ "ca2beddd-d833-4ddd-b687-aa114d22a88b" ], + "x-ms-unique-id": [ "2139" ], + "x-ms-client-request-id": [ "fb822d62-71e3-4066-861f-b08c658f6e92" ], "CommandName": [ "Get-AzsComputeQuota" ], "FullCommandName": [ "Get-AzsComputeQuota_Get" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5352,30 +5352,30 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "bd4ef4a5-7a10-4b5c-a6ed-cc383a29a15d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "13867" ], - "x-ms-request-id": [ "bd4ef4a5-7a10-4b5c-a6ed-cc383a29a15d" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213936Z:bd4ef4a5-7a10-4b5c-a6ed-cc383a29a15d" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:35 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmQLHP6ntbmJ1cYhYfTrbTQb4UY6kUZBire5Ewy/jo1OHYH7Vd4I53XB0f7hz0QSV9UceSGber6h/8awSjpHFPz+zPJ57lQIrPwMeJJ1BPU6t5WII2yRZLK2x/LPSeYFrBOwLdgjIww3GBd012rW6" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPsTqsnLbokXNeVEgExk4x0jBU3n6iMak2DVQXjuqfS9+f4BPl8eXUdp4b6LKegxTal0BNHd+cR0pThG+bhFg6gq5/fyO2/K+zBHSUj42LmW5PlUX9MZBT6faVWO4q5fomUDUAcav2yQhNm+obagK" ] }, "ContentHeaders": { "Content-Length": [ "494" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+3": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01", + "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": { @@ -5389,35 +5389,35 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "cbe560c9-7bd3-41a2-a800-ec9cac950f72" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1038" ], - "x-ms-request-id": [ "cbe560c9-7bd3-41a2-a800-ec9cac950f72" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213936Z:cbe560c9-7bd3-41a2-a800-ec9cac950f72" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:35 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9K8CQ1tFj117y2b4kohA28v2L+ciXfBZE4ykE94UxekCxWADY2WMz03FCduzHbLajG+Fas7JhDw7FnvUrU93RJXjUdj6getrEgJHzguT/RYS9oXK8KZ+lcHFwDMBomqcdYpUs0FFp+wM3tKWThUd" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvom2bOvjMVTYo3W7NbO7p7jh44Lc0DpFWNNRJKChHJRorS+XgXAv2xY0+WfsPAU40lC5w9PuXOrhRJqgq+G4oknIAwtUcKHlaN0ZiHdp15FgMhNyeVbQlOGPNs9TlUK5mvajaVx+SIb5QFw1fD+m/" ] }, "ContentHeaders": { "Content-Length": [ "483" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/quotas/testQuotaCreateUpdateDelete?api-version=2021-01-01+4": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/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": [ "1494" ], - "x-ms-client-request-id": [ "e58cc236-397a-4155-b64b-9f816111b23e" ], + "x-ms-unique-id": [ "2141" ], + "x-ms-client-request-id": [ "022a26d0-69fb-4bb3-abc8-2231a979dd39" ], "CommandName": [ "Remove-AzsComputeQuota" ], "FullCommandName": [ "Remove-AzsComputeQuota_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], @@ -5431,16 +5431,16 @@ "StatusCode": 200, "Headers": { "Pragma": [ "no-cache" ], - "x-ms-correlation-request-id": [ "f21ad86d-61e9-411b-b414-6f2e8a5ebc20" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14868" ], - "x-ms-request-id": [ "f21ad86d-61e9-411b-b414-6f2e8a5ebc20" ], - "x-ms-routing-request-id": [ "REDMOND:20220321T213936Z:f21ad86d-61e9-411b-b414-6f2e8a5ebc20" ], + "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" ], "Cache-Control": [ "no-cache" ], - "Date": [ "Mon, 21 Mar 2022 21:39:36 GMT" ], + "Date": [ "Wed, 23 Mar 2022 22:22:44 GMT" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgcVpT25QoY1pl05Sq6Qs4mT/luM8cF6LnnXd6eRH7QgMKXQWPYmBW4vdNj+pjnEuqojLYWPwGn+g9+cxbR0jXrED8gqIEsQ6Xa+4TtQ+SVZOFL7W6yQWZzTxzRxdvIbnUofJEjPYiweKx1pR4nJj" ] + "WWW-Authenticate": [ "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRva2mvtLxa5Z0wjaRbDkCQgIlFSqW+t6q7HnFBVydY6eypj7cKO3YkJjvauBOilPOJs5eyIKzzXG1K98FCMpYgRS+RSwVLWnmTih6Ei2JymOZ0cK74gi84z9PdV2rsUpVZBQrcIcNUaWtaxc7fsRk4" ] }, "ContentHeaders": { "Content-Length": [ "0" ], diff --git a/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json index 76ac03aa..c7d4b680 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsComputeScaleUnit.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzsComputeScaleUnit+[NoContext]+GetComputeScaleUnitTest+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/computeScaleUnits/s-cluster?api-version=2021-03-30+1": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/computeScaleUnits/s-cluster?api-version=2021-03-30", + "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": { diff --git a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json index 904b5f5b..ce13f605 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDisk.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-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": { @@ -38,14 +38,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\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 } }, - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?userSubscriptionId=67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c\u0026api-version=2021-09-01+2": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?userSubscriptionId=67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c\u0026api-version=2021-09-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": { @@ -81,14 +81,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\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 } }, - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=Unattached\u0026api-version=2021-09-01+3": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?status=Unattached\u0026api-version=2021-09-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": { @@ -124,14 +124,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\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 } }, - "Get-AzsDisk+[NoContext]+TestListDisks+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?sharePath=\\\\SU1FileServer.n22r1006.masd.stbtest.microsoft.com\\SU1_ObjStore_1\u0026api-version=2021-09-01+4": { + "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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?sharePath=%5C%5CSU1FileServer.n22r1006.masd.stbtest.microsoft.com%5CSU1_ObjStore_1\u0026api-version=2021-09-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": { @@ -167,14 +167,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\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 } }, - "Get-AzsDisk+[NoContext]+TestGetDisk+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-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": { @@ -210,14 +210,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\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 } }, - "Get-AzsDisk+[NoContext]+TestGetDisk+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks/307e6436-f964-4a99-8a5b-c2f0e039f298?api-version=2021-09-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": { @@ -253,14 +253,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks/454E5E28-8D5E-41F9-929E-BFF6A7E1A253?api-version=2021-09-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": { diff --git a/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json index 907e2431..05fe2a9a 100644 --- a/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/Get-AzsDiskMigrationJob.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzsDiskMigrationJob+[NoContext]+TestListDiskMigrationJobs+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-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": { @@ -38,14 +38,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs?api-version=2021-09-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": { @@ -81,14 +81,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-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": { @@ -124,14 +124,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration?api-version=2021-09-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": { @@ -167,7 +167,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "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 } } diff --git a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json index 47e4f80e..9b4fa421 100644 --- a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json @@ -1,8 +1,8 @@ { - "New-AzsDiskMigrationJob+[NoContext]+TestNewDiskMigrationJob+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-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": { @@ -38,14 +38,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-09-01+2": { + "New-AzsDiskMigrationJob+[NoContext]+TestNewDiskMigrationJob+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-09-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-09-01", + "RequestUri": "https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1?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": { @@ -76,7 +76,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "Content": "{\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}", "isContentBase64": false } } diff --git a/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json index 84b8a4d8..d783609f 100644 --- a/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/Stop-AzsDiskMigrationJob.Recording.json @@ -1,8 +1,8 @@ { - "Stop-AzsDiskMigrationJob+[NoContext]+TestStopDiskMigrationJob+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/disks?api-version=2021-09-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": { @@ -38,14 +38,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/resourceGroups/TESTRG/providers/Microsoft.Compute/Disks/testdisk2\",\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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_2\u0026api-version=2021-09-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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestStopDiskMigration?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_2\u0026api-version=2021-09-01", + "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": { @@ -76,14 +76,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskMigrationJobs/TestStopDiskMigration/cancel?api-version=2021-09-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://adminmanagement.redmond.ext-n22r1006.masd.stbtest.microsoft.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/diskMigrationJobs/TestStopDiskMigration/cancel?api-version=2021-09-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": { @@ -119,7 +119,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"id\": \"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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}", + "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 } } diff --git a/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json index 1721f3db..7ad549a7 100644 --- a/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json +++ b/src/Azs.Compute.Admin/test/Update-AzsComputeGlobalFeatureSetting.Recording.json @@ -1,8 +1,8 @@ { - "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+1": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": { @@ -37,14 +37,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01+2": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01", + "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": { @@ -77,10 +77,10 @@ "isContentBase64": false } }, - "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+3": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": { @@ -115,14 +115,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01+4": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01", + "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": { @@ -155,10 +155,10 @@ "isContentBase64": false } }, - "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+5": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": { @@ -193,14 +193,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01+6": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01", + "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": { @@ -233,10 +233,10 @@ "isContentBase64": false } }, - "Update-AzsComputeGlobalFeatureSetting+[NoContext]+TestUpdateComputeGlobalFeatureSetting+$GET+https://management.azure.com/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01+7": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess?api-version=2020-11-01", + "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": { @@ -271,14 +271,14 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/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\"]}}", + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01+8": { + "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/67ddffc1-1bfa-4dd9-80a6-62ba2e348b6c/providers/Microsoft.Compute.Admin/locations/redmond/features/Microsoft.Compute.EmergencyVMAccess/updateGlobalFeatureSettings?api-version=2020-11-01", + "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": { From a3cae5b5e9b5e563fa69d1f1f017beca8547d2b0 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Mon, 28 Mar 2022 13:45:19 -0700 Subject: [PATCH 30/34] Updating platformimage and diskmigrationjob recordings. --- .../test/Add-AzsPlatformImage.Recording.json | 24 +++++++++---------- .../New-AzsDiskMigrationJob.Recording.json | 6 ++--- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json index 961bc3ba..392198d5 100644 --- a/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json +++ b/src/Azs.Compute.Admin/test/Add-AzsPlatformImage.Recording.json @@ -37,7 +37,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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\"}}]", + "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 } }, @@ -79,7 +79,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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\"}}]", + "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 } }, @@ -163,7 +163,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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\"}}]", + "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 } }, @@ -415,7 +415,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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 } }, @@ -717,7 +717,7 @@ "Request": { "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"\r\n }\r\n }\r\n}", + "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": { }, @@ -746,7 +746,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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 } }, @@ -788,7 +788,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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 } }, @@ -830,7 +830,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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 } }, @@ -838,7 +838,7 @@ "Request": { "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"\r\n }\r\n }\r\n}", + "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": { }, @@ -867,7 +867,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.vhd\"},\"dataDisks\":null,\"details\":null,\"replicate\":false,\"provisioningState\":\"Creating\"}}", + "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 } }, @@ -909,7 +909,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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 } }, @@ -951,7 +951,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "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-n22r1006.masd.stbtest.microsoft.com/vhds/NewVirtualHardDisk.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/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 } }, diff --git a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json index 9b4fa421..649fb9e8 100644 --- a/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json +++ b/src/Azs.Compute.Admin/test/New-AzsDiskMigrationJob.Recording.json @@ -42,10 +42,10 @@ "isContentBase64": false } }, - "New-AzsDiskMigrationJob+[NoContext]+TestNewDiskMigrationJob+$PUT+https://management.azure.com/subscriptions/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-09-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/47b53730-e95d-4594-b843-d378bdff793a/providers/Microsoft.Compute.Admin/locations/redmond/diskmigrationjobs/TestNewDiskMigration1?targetScaleUnit=s-cluster\u0026targetVolumeLabel=ObjStore_1\u0026api-version=2021-09-01", + "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": { @@ -76,7 +76,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\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}", + "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 } } From cdeb49c77922ec03e7ca1168d43ae22bc562df6c Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Mon, 28 Mar 2022 14:13:19 -0700 Subject: [PATCH 31/34] Updating Enable compute user subscription feature recording. --- .../Enable-AzsComputeUserSubscriptionFeature.Recording.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json index 2ed2b948..21160faf 100644 --- a/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json +++ b/src/Azs.Compute.Admin/test/Enable-AzsComputeUserSubscriptionFeature.Recording.json @@ -45,7 +45,7 @@ "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}", + "Content": "{\r\n \"tenantSubscriptionId\": \"95990F40-5F11-490D-B323-9317191D347A\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -115,7 +115,7 @@ "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\",\"4e1684d1-fc6f-42f4-8eb5-e7f3ae1c81aa\"]}}", + "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 } }, @@ -123,7 +123,7 @@ "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}", + "Content": "{\r\n \"tenantSubscriptionId\": \"95990F40-5F11-490D-B323-9317191D347A\"\r\n}", "isContentBase64": false, "Headers": { }, From 8eb992786c8b96b297ded92cee93a98cb3085f3a Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Mon, 28 Mar 2022 16:19:08 -0700 Subject: [PATCH 32/34] Updating compute admin version string in readme.md --- src/Azs.Compute.Admin/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Azs.Compute.Admin/readme.md b/src/Azs.Compute.Admin/readme.md index a8951395..930d1123 100644 --- a/src/Azs.Compute.Admin/readme.md +++ b/src/Azs.Compute.Admin/readme.md @@ -55,7 +55,7 @@ metadata: ### PSD1 metadata changes subject-prefix: '' -module-version: 1.1.1 +module-version: 1.2.0 service-name: ComputeAdmin ### File Renames From 44724befcb12394954260eba1c0a63f3c82703e6 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Mon, 28 Mar 2022 16:24:08 -0700 Subject: [PATCH 33/34] Updated changelog --- src/changelog.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/changelog.md b/src/changelog.md index 950fd36a..7cf5c27a 100644 --- a/src/changelog.md +++ b/src/changelog.md @@ -33,7 +33,8 @@ ``` $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 From 626144043b6cc31dbde762c9da0fcb01ed5b7e66 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Mon, 28 Mar 2022 16:37:21 -0700 Subject: [PATCH 34/34] Updating admin compute version for psd1 and nuspec --- src/AzureStack/AzureStack.nuspec | 2 +- src/AzureStack/AzureStack.psd1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AzureStack/AzureStack.nuspec b/src/AzureStack/AzureStack.nuspec index 0da3302d..2f44a76b 100644 --- a/src/AzureStack/AzureStack.nuspec +++ b/src/AzureStack/AzureStack.nuspec @@ -18,7 +18,7 @@ - + diff --git a/src/AzureStack/AzureStack.psd1 b/src/AzureStack/AzureStack.psd1 index 03107758..3a32c5fd 100644 --- a/src/AzureStack/AzureStack.psd1 +++ b/src/AzureStack/AzureStack.psd1 @@ -60,7 +60,7 @@ @{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.1.0'; }, + @{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'; },